/* Existing Styles... */

/* ... (Previous Styles for Tilt and Shiny Button) ... */
.gas-box {
    width: 100px;
    height: 100px;
    background-color: #ff0055;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px;
    border-radius: 8px;
    font-family: sans-serif;
    font-weight: bold;
}

.gas-scroll-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ddd;
}

.gas-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px dashed #ccc;
    position: relative;
    background-color: #f9f9f9;
}

.gas-section.spacer {
    background-color: #f0f0f0;
}

.gas-box-scroll {
    width: 150px;
    height: 150px;
    background-color: #0073aa;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#card_icon {
    perspective: 1000px;
}

#card_icon>.e-con,
#card_icon>.elementor-element {
    transform-style: preserve-3d;
    transform: perspective(1000px);
    will-change: transform;
}

a.elementor-button.elementor-button-link {
    position: relative;
    overflow: hidden !important;
    background-color: #ff0055;
    color: white;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.2s;
}

a.elementor-button.elementor-button-link:hover {
    transform: scale(1.05);
}

.gas-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg) translateX(-150%);
    z-index: 10;
    pointer-events: none;
}