﻿        .nv00-gnb-v4__l0-menu-text,
        .nv00-gnb-v4__l1-menu-text,
        .nv00-gnb-v4__l1-featured-link,
        .nv00-gnb-v4__l1-featured-title {
            font-size: 14.5px;
            line-height: 1.4;
        }

        /* Biar di HP tetap kebaca, naikin dikit */
        @media (max-width: 768px) {
            .nv00-gnb-v4__l0-menu-text,
            .nv00-gnb-v4__l1-menu-text,
            .nv00-gnb-v4__l1-featured-link,
            .nv00-gnb-v4__l1-featured-title {
                font-size: 13px;
            }
        }

        /* —— Tombol LOGIN & DAFTAR bawah (panjang & premium) —— */
        @keyframes rg-cta-glow {
            0%,
            100% {
                box-shadow:
                    0 0 20px rgba(255, 215, 0, 0.35),
                    0 8px 28px rgba(212, 175, 55, 0.45),
                    inset 0 1px 0 rgba(255, 255, 255, 0.35);
            }
            50% {
                box-shadow:
                    0 0 32px rgba(255, 215, 0, 0.55),
                    0 12px 36px rgba(212, 175, 55, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.45);
            }
        }

        @keyframes rg-cta-shine {
            0% {
                transform: translateX(-120%) skewX(-18deg);
            }
            100% {
                transform: translateX(220%) skewX(-18deg);
            }
        }

        .rg-bottom-cta {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 9998;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            width: 100%;
            padding: 16px 18px calc(18px + env(safe-area-inset-bottom, 0px));
            background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.88) 22%,
                rgba(10, 8, 4, 0.98) 100%
            );
            border-top: 1px solid rgba(212, 175, 55, 0.45);
            box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.65);
            pointer-events: none;
            box-sizing: border-box;
        }

        .rg-bottom-cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: 8%;
            right: 8%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ffd700, #d4af37, #ffd700, transparent);
            opacity: 0.85;
        }

        .rg-bottom-cta__btn {
            pointer-events: auto;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            width: 100%;
            min-height: 62px;
            padding: 14px 20px 16px;
            border-radius: 16px;
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
            text-decoration: none;
            transition:
                transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
        }

        .rg-bottom-cta__btn::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                105deg,
                transparent 40%,
                rgba(255, 255, 255, 0.28) 50%,
                transparent 60%
            );
            transform: translateX(-120%) skewX(-18deg);
            pointer-events: none;
        }

        .rg-bottom-cta__btn:hover::after {
            animation: rg-cta-shine 0.75s ease;
        }

        .rg-bottom-cta__label {
            font-size: 17px;
            font-weight: 800;
            letter-spacing: 2.5px;
            line-height: 1.1;
        }

        .rg-bottom-cta__sub {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            opacity: 0.85;
        }

        .rg-bottom-cta__btn--login {
            color: #ffd700;
            background: linear-gradient(145deg, rgba(26, 22, 12, 0.95), rgba(0, 0, 0, 0.9));
            border: 2px solid #d4af37;
            box-shadow:
                0 6px 0 #5c4a14,
                0 10px 24px rgba(0, 0, 0, 0.5);
        }

        .rg-bottom-cta__btn--login .rg-bottom-cta__sub {
            color: #d4af37;
        }

        .rg-bottom-cta__btn--login:hover {
            transform: translateY(-4px);
            border-color: #ffd700;
        }

        .rg-bottom-cta__btn--daftar {
            color: #1a1200;
            background: linear-gradient(180deg, #ffe566 0%, #ffd700 35%, #d4af37 100%);
            border: 2px solid #ffec8b;
            box-shadow:
                0 6px 0 #8a7018,
                0 10px 28px rgba(212, 175, 55, 0.5);
            animation: rg-cta-glow 2.8s ease-in-out infinite;
        }

        .rg-bottom-cta__btn--daftar .rg-bottom-cta__sub {
            color: #3d2e00;
        }

        .rg-bottom-cta__btn--daftar:hover {
            transform: translateY(-4px) scale(1.02);
        }

        .rg-bottom-cta__btn:active {
            transform: translateY(2px) !important;
        }

        body.rg-has-bottom-cta {
            padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
        }

        @media (min-width: 480px) {
            .rg-bottom-cta {
                padding-left: 24px;
                padding-right: 24px;
                gap: 18px;
            }

            .rg-bottom-cta__btn {
                min-height: 68px;
                padding: 16px 28px 18px;
            }

            .rg-bottom-cta__label {
                font-size: 18px;
                letter-spacing: 3px;
            }
        }

        @media (min-width: 769px) {
            .rg-bottom-cta {
                max-width: 920px;
                left: 50%;
                transform: translateX(-50%);
                padding: 18px 28px calc(22px + env(safe-area-inset-bottom, 0px));
                border-radius: 24px 24px 0 0;
            }

            .rg-bottom-cta__btn {
                min-height: 72px;
                padding: 18px 36px 20px;
            }

            .rg-bottom-cta__label {
                font-size: 20px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .rg-bottom-cta__btn--daftar {
                animation: none;
            }

            .rg-bottom-cta__btn:hover::after {
                animation: none;
            }
        }

        /* —— Efek petir (overlay, tidak ganggu klik) —— */
        .rg-lightning {
            position: fixed;
            inset: 0;
            z-index: 9996;
            pointer-events: none;
            overflow: hidden;
        }

        .rg-lightning__flash {
            position: absolute;
            inset: 0;
            opacity: 0;
            background: radial-gradient(
                ellipse 90% 75% at 50% 25%,
                rgba(220, 245, 255, 0.95) 0%,
                rgba(100, 200, 255, 0.55) 30%,
                rgba(0, 120, 255, 0.25) 50%,
                transparent 72%
            );
            mix-blend-mode: screen;
        }

        .rg-lightning__flash.is-active {
            animation: rg-lightning-flash 0.55s ease-out forwards;
        }

        .rg-lightning__flash.is-double {
            animation: rg-lightning-flash-double 0.75s ease-out forwards;
        }

        @keyframes rg-lightning-flash {
            0%,
            100% {
                opacity: 0;
            }
            8% {
                opacity: 1;
            }
            16% {
                opacity: 0.35;
            }
            24% {
                opacity: 0.8;
            }
            38% {
                opacity: 0;
            }
        }

        @keyframes rg-lightning-flash-double {
            0%,
            100% {
                opacity: 0;
            }
            6% {
                opacity: 0.85;
            }
            14% {
                opacity: 0.15;
            }
            22% {
                opacity: 0.75;
            }
            32% {
                opacity: 0.1;
            }
            42% {
                opacity: 0.5;
            }
            55% {
                opacity: 0;
            }
        }

        .rg-lightning__bolt {
            position: absolute;
            width: var(--bolt-w, 55px);
            height: var(--bolt-h, 120vh);
            max-height: 1500px;
            left: var(--bolt-x, 50%);
            top: var(--bolt-y, -8%);
            transform: translateX(-50%) rotate(var(--bolt-rot, 0deg));
            transform-origin: top center;
            opacity: 0;
            filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.95))
                drop-shadow(0 0 16px rgba(0, 220, 255, 0.9))
                drop-shadow(0 0 36px rgba(0, 140, 255, 0.65));
        }

        .rg-lightning__bolt.is-active {
            animation: rg-bolt-crawl 0.7s cubic-bezier(0.15, 0.85, 0.25, 1) forwards;
        }

        .rg-lightning__bolt svg {
            width: 100%;
            height: 100%;
            display: block;
            overflow: visible;
            transform: scaleY(1.15);
            transform-origin: top center;
        }

        .rg-lightning__bolt svg path {
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            vector-effect: non-scaling-stroke;
        }

        .rg-lightning__bolt.is-active svg path {
            animation: rg-bolt-draw 0.75s ease-out forwards;
            animation-delay: calc(var(--path-i, 0) * 0.028s);
        }

        @keyframes rg-bolt-crawl {
            0% {
                opacity: 0;
                transform: translateX(-50%) rotate(var(--bolt-rot, 0deg)) scaleY(0.15);
            }
            15% {
                opacity: 1;
            }
            55% {
                opacity: 1;
                transform: translateX(-50%) rotate(var(--bolt-rot, 0deg)) scaleY(1);
            }
            100% {
                opacity: 0;
                transform: translateX(-50%) rotate(var(--bolt-rot, 0deg)) scaleY(1.12) translateY(12px);
            }
        }

        @keyframes rg-bolt-draw {
            0% {
                stroke-dashoffset: var(--path-len, 800);
                opacity: 0.3;
            }
            100% {
                stroke-dashoffset: 0;
                opacity: 1;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .rg-lightning {
                display: none !important;
            }
        }