        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 40%, rgba(10, 22, 40, 0.4) 0%, rgba(10, 22, 40, 0.85) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            text-align: center;
            padding: 0 1.5rem;
        }

        .hero-badge {
            background: rgba(212, 175, 55, 0.15);
            backdrop-filter: blur(10px);
            padding: 0.4rem 1.2rem;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #F5C842;
            border: 1px solid rgba(212, 175, 55, 0.3);
            margin-bottom: 1.5rem;
        }

        .hero-sub {
            font-size: clamp(0.95rem, 2vw, 1.25rem);
            color: rgba(232, 213, 163, 0.85);
            max-width: 550px;
            margin-top: 1.2rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .scroll-mouse {
            width: 26px;
            height: 40px;
            border: 1.5px solid rgba(232, 213, 163, 0.4);
            border-radius: 20px;
            position: relative;
        }

        .scroll-mouse::after {
            content: '';
            width: 4px;
            height: 8px;
            background: #F5C842;
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollAnim 2s infinite;
        }

        @keyframes scrollAnim {
            0% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }

            70% {
                opacity: 0;
                transform: translateX(-50%) translateY(12px);
            }

            100% {
                opacity: 0;
                transform: translateX(-50%) translateY(0);
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                justify-content: flex-end;
                padding-bottom: 5rem;
            }
        }