        /* --- 1. GLOBAL VARIABLES & RESET --- */
        :root {
            --bg-dark: #121a21;
            --gold: #d4b483;
            --gold-hover: #e5c594;
            --text-muted: #a0acb8;
            --btn-glass: rgba(255, 255, 255, 0.08);
        }

        html {
            background-color: #0b1116 !important;
            scrollbar-gutter: stable;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 0 !important;
            color: #eee;
            min-height: 100vh;
            overflow-x: hidden;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* --- 2. SILENT LOADING STATE --- */
        .shell-loading {
            position: fixed;
            inset: 0;
            background-color: #0b1116;
            transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            opacity: 1;
            z-index: 999;
            pointer-events: none;
        }

        .shell-loading.fade-out {
            opacity: 0;
        }

        .gateway-hidden {
            display: none !important;
        }

        .top-balance-spacer {
            height: 60px;
            width: 100%;
            flex-shrink: 0;
            display: block !important;
        }

        /* --- 3. CENTRAL CONTAINER & DUO SYSTEM --- */
        .central-container {
            text-align: center;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1;
            opacity: 0;
            transform: scale(0.98);
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .central-container.fade-in {
            opacity: 1;
            transform: scale(1);
        }

        /* HERO HEADER SEKCIJA */
        .brand-logo-wrap {
            margin-bottom: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .brand-logo-wrap img {
            width: 30px !important;
            height: 30px !important;
            object-fit: contain !important;
            display: block;
            opacity: 0.95;
        }

        .brand-header {
            margin-bottom: 15px;
            text-transform: uppercase;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .brand-main {
            display: block;
            font-size: 36px;
            color: var(--gold);
            font-weight: 500;
            letter-spacing: 10px;
            text-indent: 10px;
            margin: 0;
            text-transform: uppercase;
            background: linear-gradient(to right, #d4b483 20%, #fff 50%, #d4b483 80%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 4s linear infinite;
        }

        @keyframes shine {
            0% {
                background-position: 0% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        .brand-subtitle {
            font-size: 13.5px;
            color: #ffffff;
            letter-spacing: 0.8px;
            opacity: 0.35;
            margin-top: 10px;
            margin-bottom: 60px;
            font-weight: 300;
            max-width: 540px;
            line-height: 1.6;
        }

        /* Duo Sistem struktura */
        .split-container {
            display: flex;
            gap: 24px;
            width: 100%;
            max-width: 960px;
            align-items: stretch;
        }

        .gateway-card {
            flex: 1;
            background-color: rgba(18, 26, 33, 0.97);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 50px 30px 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 380px;
            align-items: center;
            text-align: center;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            position: relative;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
        }

        /* Formula za optički centar gornjeg dela */
        .gateway-card>div:first-child {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 100%;
        }

        .gateway-card h2 {
            font-size: 20px;
            color: #ffffff;
            margin: 0 0 4px 0;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        /* 👑 UTIŠAN SUBTITLE ZA MAKSIMALAN FOKUS NA NASLOV */
        .gateway-card .card-sub-title {
            font-size: 12px;
            color: var(--gold);
            font-weight: 400;
            letter-spacing: 1.5px;
            margin-bottom: 18px;
            opacity: 0.5;
            /* 👑 Smanjen opacity na 0.5 radi ekstremne elegancije */
            text-transform: uppercase;
            transition: opacity 0.3s ease, color 0.3s ease;
        }

        .gateway-card:hover h2 {
            color: var(--gold);
        }

        /* CELESTIALNI HOVER EFFECT */
        .gateway-card:hover .card-sub-title {
            opacity: 1 !important;
            color: #ffffff !important;
        }

        .gateway-card:hover {
            transform: translateY(-4px);
            border-color: var(--gold);
            box-shadow: 0 30px 60px rgba(212, 180, 131, 0.12);
        }

        /* TEKSTUALNI POTPIS AKCIJE USIDREN NA DNU */
        .card-action {
            margin-top: 24px;
            color: var(--gold);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            opacity: 0.8;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }

        .gateway-card:hover .card-action {
            color: #ffffff;
            opacity: 1;
        }

        .gateway-card:hover .card-action span {
            transform: translateX(4px);
        }

        .card-action span {
            transition: transform 0.2s ease;
            display: inline-block;
        }

        /* 👑 PROŠIREN LINE-HEIGHT ZA MAKSIMALNO DISANJE TEKSTA */
        .gateway-card p {
            font-size: 13.5px;
            line-height: 1.7;
            /* 👑 Podignuto na 1.7 za opušteniji, luksuzniji ritam */
            margin: 0;
            color: var(--text-muted);
            max-width: 100%;
        }

        /* --- 4. FOOTER --- */
        .gateway-footer {
            position: absolute;
            bottom: 0;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 11px;
            letter-spacing: 1px;
            color: var(--text-muted);
            opacity: 0.3;
            transition: opacity 0.3s ease;
            z-index: 10;
            text-decoration: none;
            white-space: nowrap;
        }

        .gateway-footer:hover {
            opacity: 0.7;
        }

        .gateway-footer img {
            width: 14px;
            height: 14px;
            object-fit: contain;
            vertical-align: middle;
        }

        .gateway-footer span.footer-shimmer {
            font-weight: 700;
            background: linear-gradient(to right, #ffffff 20%, #d4b483 50%, #ffffff 80%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 5s linear infinite;
        }

        a.gateway-reset,
        a.gateway-reset span:not(.footer-shimmer) {
            color: var(--text-muted) !important;
            font-size: 11px;
            font-weight: 400;
        }

        /* --- 5. RESPONSIVE LAYER --- */
        @media (max-width: 768px) {
            body {
                padding: 40px 20px;
                justify-content: flex-start;
            }

            .top-balance-spacer {
                display: none;
            }

            .central-container {
                flex: none;
                margin-bottom: 40px;
            }

            .split-container {
                flex-direction: column;
                gap: 20px;
            }

            .gateway-card {
                min-height: auto;
                padding: 40px 25px;
            }

            .brand-main {
                font-size: 30px;
                letter-spacing: 7px;
                text-indent: 7px;
            }

            .brand-subtitle {
                margin-bottom: 35px;
            }

            .gateway-footer {
                position: relative;
                height: auto;
                margin-top: auto;
                padding-top: 20px;
            }
        }


        /* --- LANGUAGE PROJECTION --- */
        .gateway-language-switch { display: flex; justify-content: center; align-items: center; gap: 7px; margin: -22px 0 20px; color: var(--text-muted); font-size: 11px; letter-spacing: .1em; }
        .gateway-language-switch a { color: var(--text-muted); text-decoration: none; }
        .gateway-language-switch a[aria-current="page"] { color: var(--gold); }
        .gateway-language-switch a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
