 * {
        margin: 0;
        padding: 0;
        border: none;
        box-sizing: border-box;
    }

    #hero-container {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        background: radial-gradient(circle at center, #3a1cbd, #090418);
        position: fixed;
        top: 0;
        left: 0;
        will-change: transform;
    }

    canvas {
        display: block;
        width: 100vw;
        height: 100vh;
        transition: opacity 0.5s ease;
        opacity: 0;
        animation: canvasFadeIn 2s ease-out forwards;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        color: #ffffff;
        font-family: 'Arial', sans-serif;
        pointer-events: none;
        opacity: 0;
        animation: fadeIn 1.5s ease-out 0.5s forwards;
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        backdrop-filter: blur(10px);
        padding: 0.75rem 1.5rem;
        border-radius: 30px;
        background: rgba(30, 20, 60, 0.2);
        border: 1px solid rgba(0, 255, 213, 0.3);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        position: absolute;
        top: 2rem;
        left: 2rem;
        right: 2rem;
        z-index: 10;
    }

    .header:hover {
        background: rgba(58, 28, 189, 0.2);
        box-shadow: 0 8px 25px rgba(0, 255, 213, 0.2);
    }

    .header h1 {
        font-size: 2.5rem;
        font-weight: 900;
        background: linear-gradient(90deg, #00ffd5, #ff2cc4, #00ffd5);
        background-size: 200% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 30px rgba(0, 234, 255, 0.9);
        animation: titleGlow 2.5s infinite alternate, gradientFlow 5s infinite linear;
        letter-spacing: -0.05em;
    }

    .stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        background: rgba(25, 15, 60, 0.85);
        padding: 1.5rem;
        border-radius: 30px;
        backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 255, 213, 0.4);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .stat-item {
        text-align: center;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        animation: statFade 0.6s ease-out forwards;
        position: relative;
        overflow: hidden;
    }

    .stat-item::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 255, 213, 0.2) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .stat-item:hover::after {
        opacity: 1;
    }

    .stat-item:nth-child(1) { animation-delay: 0.3s; }
    .stat-item:nth-child(2) { animation-delay: 0.5s; }
    .stat-item:nth-child(3) { animation-delay: 0.7s; }

    .stat-item:hover {
        transform: scale(1.1) translateY(-5px);
    }

    .stat-item span {
        display: block;
        font-size: 2.2rem;
        color: #00ffd5;
        font-weight: 800;
        text-shadow: 0 0 20px rgba(0, 234, 255, 0.8);
        transition: all 0.3s ease;
    }

    .stat-item:hover span {
        color: #ff2cc4;
        text-shadow: 0 0 25px rgba(255, 51, 204, 0.8);
    }

    .stat-item small {
        font-size: 1rem;
        opacity: 0.9;
        color: #f0f0ff;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .main-content {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 2rem;
        margin-top: 2rem;
    }

    .main-content-inner {
        max-width: 1200px;
        width: 100%;
        opacity: 0;
        animation: fadeInUp 1.2s ease-out 0.7s forwards;
    }

    .main-content h2 {
        font-size: 6rem;
        font-weight: 900;
        background: linear-gradient(45deg, #00ffd5, #ff2cc4, #00ffd5);
        background-size: 200% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 60px rgba(0, 234, 255, 0.8);
        animation: textPulse 3.5s infinite, gradientFlow 7s infinite linear;
        position: relative;
        letter-spacing: -0.05em;
    }

    .main-content h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #00ffd5, #ff2cc4);
        transform: translateX(-50%);
        animation: underlineExpand 4s infinite;
    }

    .main-content p {
        font-size: 1.8rem;
        color: #f0f0ff;
        margin: 2rem auto;
        opacity: 0.95;
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
        line-height: 1.5;
        max-width: 800px;
    }

    .cta-container {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        padding-bottom: 3rem;
        z-index: 5;
    }

    .cta {
        pointer-events: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2.5rem;
        font-size: 1.6rem;
        font-weight: 700;
        color: #ffffff;
        background: linear-gradient(45deg, #00ffd5, #ff2cc4);
        background-size: 200% 100%;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 8px 25px rgba(0, 234, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        position: relative;
        overflow: hidden;
        animation: gradientFlow 6s infinite linear;
    }

    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: all 0.6s ease;
    }

    .cta:hover {
        transform: translateY(-6px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 234, 255, 0.8);
        background-position: 100% 0;
    }

    .cta:hover::before {
        left: 100%;
    }

    .cta:active {
        transform: translateY(-2px) scale(0.98);
        box-shadow: 0 5px 20px rgba(0, 234, 255, 0.5);
    }

    .secondary-cta {
        pointer-events: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2.5rem;
        font-size: 1.6rem;
        font-weight: 700;
        color: #ffffff;
        background: transparent;
        border: 2px solid rgba(0, 255, 213, 0.6);
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.4s ease;
        box-shadow: 0 4px 15px rgba(0, 255, 213, 0.3);
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .secondary-cta:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0, 255, 213, 0.4);
        border-color: rgba(0, 255, 213, 0.9);
        background: rgba(0, 255, 213, 0.1);
    }

    .secondary-cta:active {
        transform: translateY(-2px) scale(0.98);
    }

    @keyframes canvasFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes statFade {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes titleGlow {
        from { text-shadow: 0 0 20px rgba(0, 234, 255, 0.7); }
        to { text-shadow: 0 0 40px rgba(0, 234, 255, 1); }
    }

    @keyframes textPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.04); }
        100% { transform: scale(1); }
    }

    @keyframes gradientFlow {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    @keyframes underlineExpand {
        0% { width: 0; }
        50% { width: 60%; }
        100% { width: 0; }
    }

    @media (max-width: 1024px) {
        .header h1 { font-size: 2.2rem; }
        .main-content h2 { font-size: 4.5rem; }
        .main-content p { font-size: 1.5rem; }
        .cta, .secondary-cta { font-size: 1.4rem; padding: 0.9rem 2.2rem; }
        .cta-container { padding-bottom: 4rem; }
    }

    @media (max-width: 768px) {
        .header { 
            flex-direction: column; 
            padding: 0.8rem 1rem; 
            gap: 0.8rem; 
            top: 1.5rem;
            left: 1.5rem;
            right: 1.5rem;
        }
        .header h1 { font-size: 1.8rem; }
        .stats { padding: 1rem; gap: 0.8rem; }
        .main-content { transform: translateY(-50%); margin-top: 2.5rem; }
        .main-content h2 { font-size: 3.2rem; }
        .main-content p { font-size: 1.2rem; margin: 1.5rem auto; }
        .cta-container { 
            flex-direction: column; 
            gap: 1rem; 
            align-items: center; 
            padding-bottom: 5rem;
        }
        .cta, .secondary-cta { 
            padding: 0.8rem 2rem; 
            font-size: 1.3rem; 
            width: 90%; 
            max-width: 280px; 
        }
        .stat-item span { font-size: 1.8rem; }
    }

    @media (max-width: 480px) {
        .header { 
            top: 1rem;
            left: 1rem;
            right: 1rem;
        }
        .header h1 { font-size: 1.6rem; }
        .main-content { transform: translateY(-50%); margin-top: 3rem; }
        .main-content h2 { font-size: 2.5rem; }
        .main-content p { font-size: 1.1rem; }
        .cta, .secondary-cta { 
            padding: 0.7rem 1.5rem; 
            font-size: 1.1rem; 
        }
        .cta-container { 
            padding-bottom: 6rem;
        }
        .stat-item small { font-size: 0.9rem; }
    }