        /* --- 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: 75px;
            width: 100%;
            flex-shrink: 0;
            display: block !important;
        }

        /* --- 3. CENTRAL CONTAINER & TRIPTICH 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);
        }

        /* BRAND LOGO & HEADER */
        .brand-logo-wrap {
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

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

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

        .brand-title {
            display: block;
            font-size: 25px;
            color: var(--gold);
            font-weight: 500;
            letter-spacing: 7px;
            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: 12px;
            color: #ffffff;
            letter-spacing: 0.5px;
            opacity: 0.4;
            margin-top: 8px;
            margin-bottom: 50px;
            font-weight: 400;
        }

        /* Triptih horizontalni sistem sa premium geometrijom prostora */
        .split-container {
            display: flex;
            gap: 20px;
            width: 100%;
            max-width: 1200px;
            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: 400px;
            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 bez gubitka sidra na dnu */
        .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: 11px;
            color: var(--gold);
            font-weight: 400;
            letter-spacing: 1.5px;
            margin-bottom: 18px;
            opacity: 0.5;
            text-transform: uppercase;
            transition: opacity 0.3s ease, color 0.3s ease;
        }

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

        /* Celestialni hover efekat na podnaslov */
        .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;
        }

        /* Diskretna svetleća bordura za Studio dugme */
        .gateway-card-studio {
            border: 1px solid rgba(214, 180, 131, 0.2);
        }

        .gateway-card-studio::before {
            content: "";
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            padding: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent, var(--gold), transparent);
            background-size: 200% auto;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .gateway-card-studio:hover::before {
            opacity: 1;
            animation: snakeBorder 2.5s linear infinite;
        }

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

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

        /* Proširen line-height za maksimalno disanje teksta */
        .gateway-card p {
            font-size: 13.5px;
            line-height: 1.7;
            margin: 0;
            color: var(--text-muted);
            max-width: 100%;
        }

        /* --- 5. FOOTER --- */
        .gateway-footer {
            position: relative !important;
            width: 100% !important;
            min-height: 75px;
            margin-top: 50px !important;
            padding: 20px 0 30px 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 8px !important;
            font-size: 11px !important;
            letter-spacing: 1px !important;
            opacity: 0.3;
            transition: opacity 0.3s ease;
            z-index: 10;
            text-decoration: none !important;
            white-space: nowrap;
            color: var(--text-muted) !important;
        }

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

        .gateway-footer img {
            width: 14px !important;
            height: 14px !important;
            object-fit: contain;
            margin: 0 2px;
        }

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

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

        /* 🛡️ NUCLEAR ANTI-AUTOFILL SHIELD — Zakucavanje tamne pozadine */
        input:-webkit-autofill,
        input:-webkit-autofill:hover,
        input:-webkit-autofill:focus,
        input:-webkit-autofill:active,
        .gateway-input:-webkit-autofill,
        .gateway-input:-webkit-autofill:hover,
        .gateway-input:-webkit-autofill:focus,
        .gateway-input:-webkit-autofill:active {
            -webkit-text-fill-color: #ffffff !important;
            color: #ffffff !important;
            -webkit-box-shadow: 0 0 0px 1000px #0b1116 inset !important;
            box-shadow: 0 0 0px 1000px #0b1116 inset !important;
            transition: background-color 5000000s ease-in-out 0s !important;
            -webkit-transition: background-color 5000000s ease-in-out 0s !important;
        }

        /* --- 6. RESPONSIVE LAYER --- */
        @media (max-width: 992px) {
            body {
                padding: 30px 15px;
                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;
            }

            .gateway-footer {
                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; }
