/* Super Enhanced Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle, #738a00 0%, #000000 70%);
    color: #fff;
    overflow-x: hidden;
    animation: gradientShift 10s infinite alternate;
    perspective: 1000px;
}

.futuristic-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    perspective: 1500px;
    z-index: 2;
    isolation: isolate;
    overflow: hidden;
}

.futuristic-content {
    text-align: center;
    animation: zoomIn 2s cubic-bezier(0.42, 0, 0.58, 1);
    position: relative;
    z-index: 2;
}

.futuristic-title {
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(to right, #F6F2EF, #fff, #A3C1AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonGlow 3s infinite alternate;
    text-transform: uppercase;
    transform: scale(1.1);
}

.futuristic-description {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 3px 15px rgba(0, 255, 204, 0.3), 0 0 5px rgba(255, 255, 255, 0.2);
}

.futuristic-section .how-it-works ul li .emphasized {
    color: #00ffcc;  
    font-size: 1.2em; 
    font-weight: bold; 
    padding: 2px 5px; 
    border-radius: 3px; 
}


.cta-button {
    margin-top: 2.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(145deg, #fff, #000);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 255, 204, 0.6);
    transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
}

.cta-button:hover {
    transform: scale(1.2) rotate(-0deg);
    box-shadow: 0 10px 30px #00ffcc;
    background: linear-gradient(145deg, #000, #fff);
}

.how-it-works {
    margin-top: 4rem;
    text-align: center;
    z-index: 2;
}

.how-it-works h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    background: linear-gradient(to left, #A3C1AD, #fff, #A3C1AD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wave 3s ease-in-out infinite;
    font-weight: 700;
}

.how-it-works ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-it-works ul li {
    font-size: 1.2rem;
    margin: 1rem 0;
    line-height: 1.8;
    position: relative;
    padding-left: 2.8rem;
    animation: slideInLeft 1.2s ease-in-out;
    color: rgba(255, 255, 255, 0.95);
}

.how-it-works ul li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #00ffcc;
    font-size: 1.5rem;
    animation: sparkle 1.5s infinite;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    border-radius: 50%;
    animation: float 8s infinite ease-in-out, flicker 3s infinite;
    filter: blur(3px);
    transform: rotateX(0deg);
}

.floating-element:nth-child(even) {
    animation-duration: 10s;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.6), rgba(0, 255, 204, 0));
}

@keyframes gradientShift {
    0%, 100% {
        background-position: left top;
    }
    50% {
        background-position: right bottom;
    }
}

@keyframes neonGlow {
    0% {
        text-shadow: 
            0 0 2px #000, 
            0 0 4px #fff;
    }
    50% {
        text-shadow: 
            0 0 4px #fff, 
            0 0 6px #000;
    }
    100% {
        text-shadow: 
            0 0 4px #000, 
            0 0 8px #fff;
    }
}


@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translatey(5px);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .futuristic-title {
        font-size: 3rem;
    }

    .futuristic-description {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1.1rem;
    }

    .how-it-works h2 {
        font-size: 2.5rem;
    }

    .how-it-works ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .futuristic-title {
        font-size: 2.5rem;
    }

    .futuristic-description {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
    }

    .how-it-works ul li {
        font-size: 0.9rem;
    }
}