/* Landing page */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --blue: #0c3483;
            --green: #1a472a;
            --gold: #c9a84c;
            --gold-light: #f0d080;
        }

        html, body {
            width: 100%; min-height: 100%;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            overflow-x: hidden;
            background: #050f2b;
        }

        body {
            padding-top: 0;
        }

        /* ── BACKGROUND ── */
        .bg-slideshow {
            position: fixed; inset: 0; z-index: 0;
        }
        .bg-slide {
            position: absolute; inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.8s ease;
            animation: kenBurns 18s ease-in-out infinite alternate;
        }
        .bg-slide.active { opacity: 1; }
        .bg-slide:nth-child(1) { background-image: url('../background/bv.jpg'); }
        .bg-slide:nth-child(2) { background-image: url('../background/reh.jpg'); animation-delay: -6s; }
        .bg-slide:nth-child(3) { background-image: url('../background/weh.jpg'); animation-delay: -12s; }

        @keyframes kenBurns {
            from { transform: scale(1); }
            to   { transform: scale(1.12); }
        }

        /* deep overlay */
        .bg-overlay {
            position: fixed; inset: 0; z-index: 1;
            background: rgba(5,15,43,0.7);
        }

        /* ── PARTICLES ── */
        .particles { position: fixed; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(201,168,76,0.15);
            animation: floatParticle linear infinite;
        }
        @keyframes floatParticle {
            0%   { transform: translateY(110vh) rotate(0deg); opacity: 0; }
            10%  { opacity: 1; }
            90%  { opacity: 0.6; }
            100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
        }

        /* ── MAIN WRAPPER ── */
        .wrapper {
            position: relative; z-index: 3;
            width: 100%;
            min-height: 100vh;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            /* top: navbar (~64px) + breathing room; bottom: strip (~52px) + breathing room */
            padding: calc(64px + 32px) 20px calc(52px + 40px);
        }

        /* ── LOGO AREA ── */
        .logo-ring {
            position: relative;
            width: 130px; height: 130px;
            margin-bottom: 28px;
            animation: popIn 0.9s cubic-bezier(0.34,1.56,0.64,1) both;
        }
        .logo-ring svg.ring {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            animation: spinRing 12s linear infinite;
        }
        .logo-img-wrap {
            position: absolute;
            inset: 12px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid rgba(201,168,76,0.4);
            box-shadow: 0 0 30px rgba(201,168,76,0.25), inset 0 0 20px rgba(0,0,0,0.3);
        }
        .logo-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover;
        }
        @keyframes spinRing {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }
        @keyframes popIn {
            from { opacity: 0; transform: scale(0.4) rotate(-20deg); }
            to   { opacity: 1; transform: scale(1) rotate(0deg); }
        }

        /* ── BRAND NAME ── */
        .brand-tagline {
            font-size: clamp(0.8rem, 2vw, 1rem);
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #fff;
            margin: 0 auto 10px;
            animation: fadeUp 0.8s 0.3s ease both;
            display: inline-flex; align-items: center; gap: 10px;
            justify-content: center;
            text-align: center;
            max-width: min(90vw, 320px);
            font-weight: 700;
            text-shadow: 0 0 20px rgba(201,168,76,0.4), 0 0 40px rgba(201,168,76,0.2);
            background: var(--gold);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeUp 0.8s 0.3s ease both, shimmerText 4s linear infinite;
        }
        .brand-tagline i {
            -webkit-text-fill-color: initial;
            color: var(--gold);
            font-size: 0.7rem;
        }
        .brand-tagline::before, .brand-tagline::after {
            content: '';
            display: block; width: 40px; height: 1.5px;
            background: rgba(201,168,76,0.4);
            border-radius: 2px;
        }
        .brand-tagline::after {
            background: rgba(201,168,76,0.4);
        }

        .brand-name {
            font-size: clamp(1.8rem, 5vw, 3.2rem);
            font-weight: 900;
            line-height: 1.05;
            text-align: center;
            color: #fff;
            letter-spacing: 1.5px;
            animation: fadeUp 0.8s 0.45s ease both;
            text-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }
        .brand-name span {
            display: block;
            background: var(--gold);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmerText 3s linear infinite;
        }
        @keyframes shimmerText {
            from { background-position: 0% center; }
            to   { background-position: 200% center; }
        }

        .brand-sub {
            font-size: clamp(0.85rem, 2vw, 1.05rem);
            color: rgba(255,255,255,0.65);
            letter-spacing: 1px;
            margin-top: 8px;
            text-align: center;
            animation: fadeUp 0.8s 0.6s ease both;
        }

        /* ── DIVIDER ── */
        .divider {
            display: flex; align-items: center; gap: 14px;
            margin: 28px 0 24px;
            animation: fadeUp 0.8s 0.75s ease both;
        }
        .divider-line {
            flex: 1; max-width: 80px; height: 1px;
            background: rgba(201,168,76,0.4);
        }
        .divider i { color: var(--gold); font-size: 1rem; animation: pulse 2s ease-in-out infinite; }
        @keyframes pulse {
            0%,100% { transform: scale(1); opacity: 1; }
            50%      { transform: scale(1.3); opacity: 0.7; }
        }

        /* ── FEATURE PILLS ── */
        .features {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
            margin-bottom: 36px;
            animation: fadeUp 0.8s 0.9s ease both;
        }
        .feature-pill {
            display: flex; align-items: center; gap: 7px;
            padding: 7px 16px;
            border-radius: 50px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.8);
            font-size: 0.82rem;
            font-weight: 500;
            backdrop-filter: blur(6px);
            transition: all 0.3s ease;
        }
        .feature-pill i { color: var(--gold); font-size: 0.8rem; }
        .feature-pill:hover {
            background: rgba(201,168,76,0.15);
            border-color: rgba(201,168,76,0.4);
            color: #fff;
            transform: translateY(-2px);
        }

        /* ── CTA BUTTONS ── */
        .cta-group {
            display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
            animation: fadeUp 0.8s 1.05s ease both;
        }
        .btn-cta {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 14px 34px;
            border-radius: 14px;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
            position: relative; overflow: hidden;
            cursor: pointer; border: none;
        }
        .btn-cta::before {
            content: '';
            position: absolute; inset: 0;
            background: rgba(255,255,255,0.12);
            transform: translateX(-100%) skewX(-15deg);
            transition: transform 0.5s ease;
        }
        .btn-cta:hover::before { transform: translateX(120%) skewX(-15deg); }

        .btn-login {
            background: var(--blue);
            color: #fff;
            box-shadow: 0 8px 25px rgba(12,52,131,0.45);
        }
        .btn-login:hover {
            transform: translateY(-4px) scale(1.04);
            box-shadow: 0 16px 35px rgba(12,52,131,0.55);
            color: #fff;
        }

        .btn-register {
            background: var(--green);
            color: #fff;
            box-shadow: 0 8px 25px rgba(26,71,42,0.45);
        }
        .btn-register:hover {
            transform: translateY(-4px) scale(1.04);
            box-shadow: 0 16px 35px rgba(26,71,42,0.55);
            color: #fff;
        }

        /* ── BOTTOM STRIP ── */
        .bottom-strip {
            position: fixed; bottom: 0; left: 0; right: 0; z-index: 4;
            display: flex; align-items: center; justify-content: center; gap: 30px;
            padding: 14px 30px;
            background: rgba(5,15,43,0.7);
            border-top: 1px solid rgba(201,168,76,0.15);
            backdrop-filter: blur(12px);
            animation: slideUp 0.8s 1.3s ease both;
            flex-wrap: wrap;
        }
        .strip-item {
            display: flex; align-items: center; gap: 8px;
            color: rgba(255,255,255,0.55);
            font-size: 0.8rem;
        }
        .strip-item i { color: var(--gold); font-size: 0.85rem; }
        .strip-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.12); }

        /* ── CORNER BADGE ── */
        .corner-badge {
            position: fixed; top: 24px; right: 24px; z-index: 5;
            display: flex; align-items: center; gap: 8px;
            padding: 8px 16px;
            background: rgba(201,168,76,0.12);
            border: 1px solid rgba(201,168,76,0.3);
            border-radius: 50px;
            color: var(--gold);
            font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
            backdrop-filter: blur(10px);
            animation: fadeDown 0.8s 1.4s ease both;
        }
        .corner-badge i { font-size: 0.75rem; }
        .live-dot {
            width: 7px; height: 7px;
            background: #4caf50;
            border-radius: 50%;
            animation: livePulse 1.5s ease-in-out infinite;
        }
        @keyframes livePulse {
            0%,100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.6); }
            50%      { box-shadow: 0 0 0 5px rgba(76,175,80,0); }
        }

        /* ── KEYFRAMES ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeDown {
            from { opacity: 0; transform: translateY(-16px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* Sit the badge just below the navbar */
        .corner-badge { top: calc(64px + 30px); }

        /* ── RESPONSIVE ── */
        @media (max-width: 600px) {
            .wrapper { padding: calc(64px + 20px) 16px calc(52px + 32px); }
            .logo-ring { width: 90px; height: 90px; margin-bottom: 20px; }
            .brand-name { font-size: 1.7rem; }
            .brand-tagline { font-size: 0.85rem; letter-spacing: 3px; gap: 8px; }
            .brand-sub { font-size: 0.95rem; margin-top: 6px; }
            .cta-group { flex-direction: column; align-items: center; }
            .btn-cta { width: 100%; max-width: 260px; justify-content: center; }
            .bottom-strip { gap: 14px; padding: 12px 16px; }
            .strip-sep { display: none; }
            .corner-badge { top: calc(64px + 26px); right: 14px; }

        }
