﻿        .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 salju warna api (overlay, tidak ganggu klik) —— */
        .rg-snow {
            position: fixed;
            inset: 0;
            z-index: 9996;
            pointer-events: none;
            overflow: hidden;
        }

        .rg-snow__flake {
            position: absolute;
            top: -12px;
            left: var(--flake-x, 50%);
            width: var(--flake-size, 4px);
            height: var(--flake-size, 4px);
            background: radial-gradient(
                circle,
                var(--flake-color, #ffd54f) 25%,
                rgba(255, 143, 0, 0.85) 70%,
                rgba(229, 57, 53, 0.45) 100%
            );
            border-radius: 50%;
            opacity: var(--flake-opacity, 0.9);
            box-shadow:
                0 0 5px rgba(255, 179, 0, 0.9),
                0 0 10px rgba(255, 87, 34, 0.6);
            animation: rg-snow-fall var(--flake-dur, 14s) linear infinite;
            animation-delay: var(--flake-delay, 0s);
            will-change: transform;
        }

        .rg-snow__flake.is-soft {
            filter: blur(1.5px);
            box-shadow:
                0 0 10px rgba(255, 179, 0, 0.8),
                0 0 18px rgba(255, 87, 34, 0.5);
        }

        @keyframes rg-snow-fall {
            0% {
                transform: translate3d(0, -12px, 0);
            }
            25% {
                transform: translate3d(calc(var(--flake-drift, 30px) * 0.5), 28vh, 0);
            }
            50% {
                transform: translate3d(var(--flake-drift, 30px), 55vh, 0);
            }
            75% {
                transform: translate3d(calc(var(--flake-drift, 30px) * 0.35), 82vh, 0);
            }
            100% {
                transform: translate3d(0, 110vh, 0);
            }
        }

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