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

        :root {
            --neon-cyan: #00f3ff;
            --neon-magenta: #ff00ea;
            --neon-green: #39ff14;
            --neon-yellow: #ffea00;
            --neon-orange: #ff6b00;
            --neon-purple: #9d00ff;
            --dark-bg: #0a0a0f;
            --dark-purple: #1a0f2e;
            --game-table: #0f1419;
            --gold-accent: #ffd700;
            --silver: #c0c0c0;
            --text-primary: #ffffff;
            --text-secondary: #b8b8b8;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-purple) 100%);
            color: var(--text-primary);
            min-height: 100vh;
            max-height: 100vh;
            overflow-y: auto;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 243, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 0, 234, 0.05) 0%, transparent 50%);
            animation: bgPulse 10s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes bgPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        @keyframes neonPulseGreen {
            0%, 100% { box-shadow: 0 0 12px rgba(57,255,20,0.5), inset 0 0 12px rgba(57,255,20,0.08); }
            50%       { box-shadow: 0 0 22px rgba(57,255,20,0.9), 0 0 40px rgba(57,255,20,0.3), inset 0 0 16px rgba(57,255,20,0.12); }
        }
        @keyframes neonPulseMagenta {
            0%, 100% { box-shadow: 0 0 12px rgba(255,0,234,0.5), inset 0 0 12px rgba(255,0,234,0.08); }
            50%       { box-shadow: 0 0 22px rgba(255,0,234,0.9), 0 0 40px rgba(255,0,234,0.3), inset 0 0 16px rgba(255,0,234,0.12); }
        }
        #btnRaise { animation: neonPulseGreen 2.5s ease-in-out infinite; }
        #btnFold  { animation: neonPulseMagenta 2.5s ease-in-out infinite; }


        /* ====== MUSIC PLAYER WIDGET ====== */
        .music-widget {
            position: fixed;
            top: 18px;
            left: 18px;
            z-index: 2000;
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(10,10,20,0.85);
            border: 1.5px solid var(--neon-cyan);
            border-radius: 30px;
            padding: 7px 16px 7px 10px;
            box-shadow: 0 0 18px rgba(0,243,255,0.3);
            backdrop-filter: blur(8px);
        }
        .music-play-btn {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
            border: none; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px;
            transition: all 0.2s;
            flex-shrink: 0;
        }
        .music-play-btn:hover { transform: scale(1.12); box-shadow: 0 0 14px var(--neon-cyan); }
        .music-info {
            display: flex; flex-direction: column; gap: 2px;
        }
        .music-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 10px; color: var(--neon-cyan);
            letter-spacing: 1px; white-space: nowrap;
        }
        .music-vol {
            display: flex; align-items: center; gap: 6px;
        }
        .music-vol span { font-size: 10px; color: var(--text-secondary); }
        .vol-slider {
            -webkit-appearance: none; appearance: none;
            width: 70px; height: 4px;
            background: rgba(0,243,255,0.25);
            border-radius: 2px; outline: none; cursor: pointer;
        }
        .vol-slider::-webkit-slider-thumb {
            -webkit-appearance: none; width: 13px; height: 13px;
            border-radius: 50%; background: var(--neon-cyan);
            box-shadow: 0 0 6px var(--neon-cyan); cursor: pointer;
        }
        .music-eq {
            display: flex; align-items: flex-end; gap: 2px; height: 18px;
        }
        .music-eq span {
            display: block; width: 3px; background: var(--neon-cyan);
            border-radius: 1px; opacity: 0.8;
        }
        .music-eq.playing span:nth-child(1) { animation: eq 0.8s 0.0s ease-in-out infinite alternate; }
        .music-eq.playing span:nth-child(2) { animation: eq 0.8s 0.15s ease-in-out infinite alternate; }
        .music-eq.playing span:nth-child(3) { animation: eq 0.8s 0.3s ease-in-out infinite alternate; }
        .music-eq.playing span:nth-child(4) { animation: eq 0.8s 0.45s ease-in-out infinite alternate; }
        @keyframes eq {
            from { height: 4px; }
            to   { height: 16px; }
        }

        /* Settings Button */
        .settings-button {
            position: fixed;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.2) 0%, rgba(255, 0, 234, 0.2) 100%);
            border: 2px solid var(--neon-cyan);
            border-radius: 50%;
            cursor: pointer;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .settings-button:hover {
            box-shadow: 0 0 20px var(--neon-cyan);
            transform: rotate(90deg);
        }


        /* Settings Modal */
        .settings-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1001;
            align-items: center;
            justify-content: center;
        }

        .settings-modal.active {
            display: flex;
        }

        .settings-content {
            background: linear-gradient(135deg, var(--game-table) 0%, rgba(26, 15, 46, 0.95) 100%);
            border: 3px solid var(--neon-cyan);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
        }

        .volume-control {
            margin: 20px 0;
        }

        .volume-slider {
            width: 100%;
            height: 8px;
            background: rgba(0, 243, 255, 0.2);
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
        }

        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: var(--neon-cyan);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 10px var(--neon-cyan);
        }

        .language-selector {
            width: 100%;
            padding: 15px 20px;
            margin: 10px 0;
            background: rgba(0, 243, 255, 0.1);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 15px;
            color: var(--text-primary);
            font-family: 'Exo 2', sans-serif;
            font-size: 16px;
            cursor: pointer;
        }

        .language-selector option {
            background: var(--dark-bg);
            color: var(--text-primary);
        }

        .game-header {
            text-align: center;
            padding: 15px 20px 5px;
            position: relative;
            z-index: 10;
        }

        .game-logo {
            font-family: 'Russo One', sans-serif;
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 900;
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 50%, var(--neon-yellow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 8px;
            text-transform: uppercase;
            text-shadow: 0 0 40px rgba(0, 243, 255, 0.5);
            animation: logoGlow 3s ease-in-out infinite;
            margin-bottom: 5px;
        }

        @keyframes logoGlow {
            0%, 100% { filter: brightness(1) drop-shadow(0 0 20px rgba(0, 243, 255, 0.6)); }
            50% { filter: brightness(1.3) drop-shadow(0 0 40px rgba(255, 0, 234, 0.8)); }
        }

        .game-subtitle {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(10px, 2vw, 14px);
            letter-spacing: 4px;
            color: var(--text-secondary);
            text-transform: uppercase;
            margin-bottom: 10px;
        }


        .game-tagline {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(12px, 2.5vw, 18px);
            letter-spacing: 2px;
            color: var(--neon-cyan);
            margin-top: 10px;
            text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
        }

        .footer-copyright {
            text-align: center;
            padding: 15px 20px;
            font-size: 11px;
            color: var(--text-secondary);
            border-top: 1px solid rgba(0, 243, 255, 0.2);
            margin-top: 20px;
        }

        .footer-copyright p {
            margin: 5px 0;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 10;
        }

        .nav-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 10px 0 15px 0;
            flex-wrap: wrap;
        }

        .nav-tab {
            font-family: 'Orbitron', sans-serif;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, rgba(255, 0, 234, 0.1) 100%);
            border: 2px solid transparent;
            border-radius: 25px;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .nav-tab:hover {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
            transform: translateY(-2px);
        }

        .nav-tab.active {
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
            border-color: var(--neon-cyan);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
        }

        .section {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .section.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Game Rooms */
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin: 15px 0;
        }

        .room-card {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.1) 0%, rgba(255, 0, 234, 0.1) 100%);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 20px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .room-card:hover {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.5);
            transform: translateY(-5px);
        }

        .room-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--neon-cyan);
        }

        .room-bet {
            font-size: 18px;
            color: var(--neon-yellow);
            margin-bottom: 10px;
        }

        .room-players {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 15px;
        }

        .player-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .online-indicator {
            width: 10px;
            height: 10px;
            background: var(--neon-green);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        /* ====== ТУРНИР БОГОВ ====== */
        .god-tournament-card {
            background: linear-gradient(135deg, rgba(255,215,0,0.15) 0%, rgba(255,100,0,0.15) 50%, rgba(157,0,255,0.15) 100%);
            border: 2px solid var(--gold-accent);
            border-radius: 20px;
            padding: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 0 30px rgba(255,215,0,0.3), inset 0 0 30px rgba(255,215,0,0.05);
            animation: godCardPulse 3s ease-in-out infinite;
        }
        @keyframes godCardPulse {
            0%,100% { box-shadow: 0 0 20px rgba(255,215,0,0.3), inset 0 0 20px rgba(255,215,0,0.05); }
            50% { box-shadow: 0 0 50px rgba(255,215,0,0.7), 0 0 80px rgba(255,100,0,0.3), inset 0 0 30px rgba(255,215,0,0.1); }
        }
        @keyframes godBtnPulse {
            0%,100% { box-shadow:0 0 20px rgba(255,215,0,0.4); transform:scale(1); }
            50% { box-shadow:0 0 40px rgba(255,215,0,0.8),0 0 70px rgba(255,107,0,0.4); transform:scale(1.02); }
        }
        .god-tournament-card:hover {
            border-color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 0 60px rgba(255,215,0,0.8);
        }
        .god-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 22px;
            font-weight: 900;
            margin-bottom: 6px;
            background: linear-gradient(135deg, #ffd700, #ff6b00, #ff00ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .god-prize {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            font-weight: 900;
            color: var(--gold-accent);
            text-shadow: 0 0 20px rgba(255,215,0,0.8);
            margin: 8px 0;
        }
        .god-timer {
            background: rgba(0,0,0,0.6);
            border: 1px solid var(--gold-accent);
            border-radius: 12px;
            padding: 10px 14px;
            margin: 12px 0;
            text-align: center;
        }
        .god-timer-label {
            font-size: 11px;
            color: var(--text-secondary);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 4px;
        }
        .god-timer-display {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--gold-accent);
            letter-spacing: 3px;
        }
        .god-reg-closed {
            font-family: 'Orbitron', sans-serif;
            font-size: 13px;
            color: var(--neon-magenta);
            text-align: center;
            padding: 6px;
            border: 1px solid var(--neon-magenta);
            border-radius: 8px;
            margin: 8px 0;
            animation: blink 1.2s ease-in-out infinite;
        }
        @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

        /* ====== МОДАЛ ТУРНИРА БОГОВ ====== */
        .god-modal-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.85);
            z-index: 9000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .god-modal-overlay.active { display: flex; }
        .god-modal {
            background: linear-gradient(135deg, #0a0a0f 0%, #1a0f2e 100%);
            border: 2px solid var(--gold-accent);
            border-radius: 24px;
            padding: 30px;
            max-width: 480px;
            width: 100%;
            box-shadow: 0 0 60px rgba(255,215,0,0.4);
            position: relative;
            max-height: 90vh;
            overflow-y: auto;
        }
        .god-modal-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 22px;
            font-weight: 900;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffd700, #ff6b00, #ff00ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .god-modal-close {
            position: absolute;
            top: 14px; right: 18px;
            font-size: 22px;
            cursor: pointer;
            color: var(--gold-accent);
            background: none; border: none;
        }
        .god-balance-box {
            background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,100,0,0.1));
            border: 1px solid var(--gold-accent);
            border-radius: 14px;
            padding: 16px;
            text-align: center;
            margin: 16px 0;
        }
        .god-balance-label { font-size: 12px; color: var(--text-secondary); letter-spacing: 2px; text-transform: uppercase; }
        .god-balance-amount { font-family: 'Orbitron', sans-serif; font-size: 26px; font-weight: 900; color: var(--gold-accent); margin-top: 4px; }
        .god-reg-btn {
            width: 100%;
            padding: 16px;
            font-family: 'Orbitron', sans-serif;
            font-size: 15px;
            font-weight: 700;
            background: linear-gradient(135deg, #ffd700, #ff6b00);
            color: #000;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            margin-top: 16px;
            letter-spacing: 1px;
            transition: all 0.3s;
        }
        .god-reg-btn:hover { transform: scale(1.03); box-shadow: 0 0 30px rgba(255,215,0,0.6); }
        .god-reg-btn:disabled { background: #444; color: #888; cursor: not-allowed; transform: none; box-shadow: none; }
        .god-registered-badge {
            background: linear-gradient(135deg, rgba(57,255,20,0.2), rgba(0,243,255,0.2));
            border: 2px solid var(--neon-green);
            border-radius: 14px;
            padding: 14px;
            text-align: center;
            margin-top: 16px;
        }
        .god-info-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,215,0,0.15);
            font-size: 14px;
        }
        .god-info-row:last-child { border-bottom: none; }
        .god-info-key { color: var(--text-secondary); }
        .god-info-val { color: var(--gold-accent); font-weight: 700; font-family: 'Orbitron', sans-serif; font-size: 13px; }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* Game Table */
        .game-table {
            background: linear-gradient(135deg, var(--game-table) 0%, rgba(26, 15, 46, 0.8) 100%);
            border-radius: 40px;
            padding: 40px;
            margin: 30px 0;
            border: 3px solid rgba(0, 243, 255, 0.3);
            box-shadow: 0 10px 50px rgba(0, 243, 255, 0.2);
        }

        .players-table {
            display: flex;
            justify-content: space-around;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            border: 2px solid rgba(0, 243, 255, 0.2);
        }

        .player-slot {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .player-slot-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            border: 3px solid var(--neon-cyan);
            position: relative;
        }

        @keyframes fadeInMsg {
            from { opacity:0; transform:translateY(4px); }
            to   { opacity:1; transform:translateY(0); }
        }
                .player-slot.you .player-slot-avatar {
            border-color: var(--neon-green);
            box-shadow: 0 0 20px var(--neon-green);
        }

        .player-slot-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .player-slot.you .player-slot-name {
            color: var(--neon-green);
            font-weight: 700;
        }

        .game-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 20px;
        }

        @media (max-width: 1024px) {
            .game-layout {
                grid-template-columns: 1fr;
            }
        }

        /* Game Controls */
        .game-controls {
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .game-balance-box {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(255, 0, 234, 0.15));
            border: 3px solid var(--neon-yellow);
            border-radius: 20px;
            padding: 15px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            box-shadow: 0 0 25px rgba(255, 234, 0, 0.4);
        }

        .game-balance-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 12px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .game-balance-value {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--neon-yellow);
            text-shadow: 0 0 15px rgba(255, 234, 0, 0.6);
        }

        .game-button {
            font-family: 'Orbitron', sans-serif;
            padding: 15px 40px;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.2) 0%, rgba(255, 0, 234, 0.2) 100%);
            border: 2px solid var(--neon-cyan);
            border-radius: 25px;
            color: var(--text-primary);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            font-weight: 600;
        }

        .game-button:hover {
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
            transform: translateY(-3px);
        }

        .game-button.raise {
            border-color: var(--neon-green);
        }

        .game-button.fold {
            border-color: var(--neon-orange);
        }

        /* Card Selection with Neon Images */
        .card-selection {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }

        .game-card {
            aspect-ratio: 0.7;
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 15, 46, 0.9) 100%);
            border: 3px solid;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            padding: 20px;
        }

        .game-card.rock {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
        }

        .game-card.scissors {
            border-color: var(--neon-magenta);
            box-shadow: 0 0 20px rgba(255, 0, 234, 0.3);
        }

        .game-card.paper {
            border-color: var(--neon-green);
            box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
        }

        .game-card:hover {
            transform: translateY(-15px) scale(1.05);
        }

        .game-card.rock:hover {
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.8);
        }

        .game-card.scissors:hover {
            box-shadow: 0 0 40px rgba(255, 0, 234, 0.8);
        }

        .game-card.paper:hover {
            box-shadow: 0 0 40px rgba(57, 255, 20, 0.8);
        }

        .game-card.selected {
            transform: translateY(-20px) scale(1.1);
        }

        .game-card.rock.selected {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.2) 0%, rgba(0, 243, 255, 0.1) 100%);
            box-shadow: 0 0 50px rgba(0, 243, 255, 1);
        }

        .game-card.scissors.selected {
            background: linear-gradient(135deg, rgba(255, 0, 234, 0.2) 0%, rgba(255, 0, 234, 0.1) 100%);
            box-shadow: 0 0 50px rgba(255, 0, 234, 1);
        }

        .game-card.paper.selected {
            background: linear-gradient(135deg, rgba(57, 255, 20, 0.2) 0%, rgba(57, 255, 20, 0.1) 100%);
            box-shadow: 0 0 50px rgba(57, 255, 20, 1);
        }

        .card-image-container {
            width: 100%;
            height: 70%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }

        .card-image {
            max-width: 100%;
            max-height: 100%;
            filter: drop-shadow(0 0 15px currentColor);
            transition: all 0.3s ease;
        }

        .game-card.rock .card-image {
            color: var(--neon-cyan);
        }

        .game-card.scissors .card-image {
            color: var(--neon-magenta);
        }

        .game-card.paper .card-image {
            color: var(--neon-green);
        }

        .card-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .game-card.rock .card-name {
            color: var(--neon-cyan);
            text-shadow: 0 0 10px var(--neon-cyan);
        }

        .game-card.scissors .card-name {
            color: var(--neon-magenta);
            text-shadow: 0 0 10px var(--neon-magenta);
        }

        .game-card.paper .card-name {
            color: var(--neon-green);
            text-shadow: 0 0 10px var(--neon-green);
        }


        .support-typing-dots::after {
            content: '';
            animation: typingDots 1.2s infinite;
        }
        @keyframes typingDots {
            0%   { content: ''; }
            25%  { content: '.'; }
            50%  { content: '..'; }
            75%  { content: '...'; }
            100% { content: ''; }
        }

        /* ====== IMPROVED GAME RESULT ANIMATIONS ====== */
        @keyframes resultBounceIn {
            0% { opacity: 0; transform: scale(0.5); }
            60% { transform: scale(1.15); }
            100% { opacity: 1; transform: scale(1); }
        }
        @keyframes resultGlow {
            0%, 100% { text-shadow: 0 0 10px currentColor; }
            50% { text-shadow: 0 0 30px currentColor, 0 0 50px currentColor; }
        }
        @keyframes cardRevealFlip {
            0% { transform: rotateY(0deg) scale(1); }
            50% { transform: rotateY(90deg) scale(0.9); }
            100% { transform: rotateY(0deg) scale(1); }
        }
        .game-result-anim {
            animation: resultBounceIn 0.5s ease, resultGlow 2s ease-in-out infinite;
        }
        .card-reveal-anim {
            animation: cardRevealFlip 0.6s ease;
        }
        /* Улучшенная анимация при выборе карты */
        .pick-card {
            transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .pick-card:active {
            transform: scale(0.92) !important;
        }
        /* Индикатор жизни игрока в таблице */
        .player-eliminated {
            filter: grayscale(0.8);
            transition: all 0.5s ease;
        }
        .sup-q-btn {
            background: rgba(0,243,255,0.08);
            border: 1px solid rgba(0,243,255,0.25);
            border-radius: 8px;
            padding: 5px 9px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.15s;
            line-height: 1;
        }
        .sup-q-btn:hover {
            background: rgba(0,243,255,0.2);
            border-color: rgba(0,243,255,0.5);
            transform: scale(1.1);
        }
        /* Chat System */
        .chat-container {
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 15, 46, 0.9) 100%);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 20px;
            padding: 20px;
            margin: 20px 0;
            height: 400px;
            display: flex;
            flex-direction: column;
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            margin-bottom: 15px;
            padding: 15px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
        }

        .chat-message {
            margin-bottom: 10px;
            padding: 10px;
            background: rgba(0, 243, 255, 0.1);
            border-radius: 10px;
            border-left: 3px solid var(--neon-cyan);
        }

        .chat-message span:not(.username) {
            color: var(--text-primary);
            word-break: break-word;
            white-space: pre-wrap;
        }

        .chat-message .username {
            color: var(--neon-cyan);
            font-weight: 600;
            margin-right: 10px;
        }

        .chat-input-container {
            display: flex;
            gap: 10px;
        }

        .chat-input {
            flex: 1;
            padding: 12px 20px;
            background: rgba(0, 243, 255, 0.1);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 25px;
            color: var(--text-primary);
            font-family: 'Exo 2', sans-serif;
            font-size: 14px;
        }

        .chat-send {
            padding: 12px 30px;
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
            border: none;
            border-radius: 25px;
            color: var(--text-primary);
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
        }

        /* Support Chat */
        .support-chat {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-cyan) 100%);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
            z-index: 999;
            transition: all 0.3s ease;
        }

        .support-chat:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
        }

        .support-window {
            display: none;
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 350px;
            max-height: 500px;
            background: linear-gradient(135deg, var(--game-table) 0%, rgba(26, 15, 46, 0.98) 100%);
            border: 3px solid var(--neon-cyan);
            border-radius: 20px;
            z-index: 998;
            flex-direction: column;
        }

        .support-window.active {
            display: flex;
        }

        .support-header {
            padding: 20px;
            border-bottom: 2px solid rgba(0, 243, 255, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .support-close {
            cursor: pointer;
            font-size: 24px;
            color: var(--neon-magenta);
        }

        /* Shop */
        .shop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .shop-item {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.05) 0%, rgba(255, 0, 234, 0.05) 100%);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .shop-item:hover {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
            transform: translateY(-5px);
        }

        .shop-amount {
            font-size: 48px;
            color: var(--neon-yellow);
            margin: 20px 0;
            font-weight: 700;
        }

        .shop-price {
            font-size: 24px;
            color: var(--neon-green);
            margin-bottom: 20px;
        }

        /* Roulette */
        .roulette-container {
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 15, 46, 0.9) 100%);
            border: 3px solid rgba(0, 243, 255, 0.3);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
            text-align: center;
        }

        .roulette-wheel {
            width: 300px;
            height: 300px;
            margin: 30px auto;
            border-radius: 50%;
            border: 5px solid var(--neon-cyan);
            position: relative;
            background: conic-gradient(
                var(--neon-yellow) 0deg 36deg,
                var(--neon-green) 36deg 72deg,
                var(--neon-cyan) 72deg 108deg,
                var(--neon-magenta) 108deg 144deg,
                var(--neon-green) 144deg 180deg,
                var(--neon-cyan) 180deg 216deg,
                var(--neon-green) 216deg 252deg,
                var(--neon-magenta) 252deg 288deg,
                var(--neon-green) 288deg 324deg,
                var(--neon-cyan) 324deg 360deg
            );
            transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .roulette-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--dark-bg);
            border-radius: 50%;
            border: 3px solid var(--neon-yellow);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
        }

        .roulette-prizes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .prize-item {
            padding: 20px;
            background: rgba(0, 243, 255, 0.1);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 15px;
            text-align: center;
        }

        .prize-item.grand {
            border-color: var(--neon-yellow);
            background: rgba(255, 234, 0, 0.1);
        }

        .prize-item.second {
            border-color: var(--neon-magenta);
            background: rgba(255, 0, 234, 0.1);
        }

        /* Profile */
        .profile-section {
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 15, 46, 0.9) 100%);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
        }

        .profile-avatar-section {
            text-align: center;
            margin-bottom: 30px;
        }

        .profile-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            border: 4px solid var(--neon-cyan);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .profile-avatar:hover {
            box-shadow: 0 0 30px var(--neon-cyan);
            transform: scale(1.05);
        }

        .avatar-upload-container {
            margin-top: 15px;
        }

        .avatar-upload {
            display: none;
        }

        .avatar-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-top: 15px;
        }

        .avatar-option {
            width: 50px;
            height: 50px;
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .avatar-option:hover {
            border-color: var(--neon-cyan);
            box-shadow: 0 0 15px var(--neon-cyan);
            transform: scale(1.1);
        }

        .payment-selector {
            width: 100%;
            padding: 15px 20px;
            margin: 10px 0;
            background: rgba(0, 243, 255, 0.1);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 15px;
            color: var(--text-primary);
            font-family: 'Exo 2', sans-serif;
            font-size: 16px;
            cursor: pointer;
        }

        .payment-selector option {
            background: var(--dark-bg);
            color: var(--text-primary);
        }

        .bet-amount-display {
            margin-top: 15px;
            padding: 20px;
            background: rgba(0, 243, 255, 0.1);
            border: 2px solid var(--neon-yellow);
            border-radius: 15px;
            text-align: center;
        }

        .bet-amount-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            color: var(--neon-yellow);
            font-weight: 700;
        }

        .profile-input {
            width: 100%;
            padding: 15px 20px;
            margin: 10px 0;
            background: rgba(0, 243, 255, 0.1);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 15px;
            color: var(--text-primary);
            font-family: 'Exo 2', sans-serif;
            font-size: 16px;
        }

        .profile-button {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
            border: none;
            border-radius: 15px;
            color: var(--text-primary);
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .profile-button:hover {
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
            transform: translateY(-3px);
        }

        /* Rules Section */
        .rules-content {
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 15, 46, 0.9) 100%);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 20px;
            padding: 40px;
            margin: 30px 0;
        }

        .rule-section {
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(0, 243, 255, 0.05);
            border-left: 4px solid var(--neon-cyan);
            border-radius: 10px;
        }

        .rule-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            color: var(--neon-cyan);
            margin-bottom: 15px;
        }

        .rule-text {
            line-height: 1.8;
            color: var(--text-secondary);
        }

        /* Login/Register */
        .auth-container {
            max-width: 500px;
            margin: 50px auto;
            background: linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 15, 46, 0.95) 100%);
            border: 3px solid var(--neon-cyan);
            border-radius: 20px;
            padding: 40px;
        }

        .auth-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 32px;
            text-align: center;
            margin-bottom: 30px;
            color: var(--neon-cyan);
        }

        .auth-input {
            width: 100%;
            padding: 15px 20px;
            margin: 15px 0;
            background: rgba(0, 243, 255, 0.1);
            border: 2px solid rgba(0, 243, 255, 0.3);
            border-radius: 15px;
            color: var(--text-primary);
            font-size: 16px;
        }

        .auth-button {
            width: 100%;
            padding: 15px;
            margin: 20px 0;
            background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-magenta) 100%);
            border: none;
            border-radius: 15px;
            color: var(--text-primary);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .auth-button:hover {
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
            transform: translateY(-3px);
        }

        .auth-switch {
            text-align: center;
            margin-top: 20px;
            color: var(--text-secondary);
        }

        .auth-link {
            color: var(--neon-cyan);
            cursor: pointer;
            text-decoration: underline;
        }

        /* Email Confirmation Modal */
        .email-confirm-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .email-confirm-modal.active {
            display: flex;
        }

        .email-confirm-content {
            background: linear-gradient(135deg, var(--game-table) 0%, rgba(26, 15, 46, 0.98) 100%);
            border: 3px solid var(--neon-green);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }

        .email-confirm-icon {
            font-size: 80px;
            margin-bottom: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .game-logo {
                font-size: 48px;
            }
            
            .nav-tabs {
                gap: 10px;
            }
            
            .nav-tab {
                padding: 10px 20px;
                font-size: 12px;
            }

            .card-selection {
                grid-template-columns: 1fr;
            }

            .support-window {
                width: 90%;
                right: 5%;
            }
        }

        /* Hide game content initially */
        .game-content {
            display: none;
        }

        .game-content.active {
            display: block;
        }
        /* Poker Table Styles */
        .poker-room-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.98);
            z-index: 10000;
            flex-direction: column;
        }

        .poker-room-overlay.active {
            display: flex;
        }

        .poker-header {
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 243, 255, 0.05);
            border-bottom: 2px solid var(--neon-cyan);
        }

        .back-btn-poker {
            padding: 10px 25px;
            background: linear-gradient(135deg, var(--neon-magenta), var(--neon-cyan));
            border: none;
            border-radius: 20px;
            color: white;
            font-family: 'Orbitron', sans-serif;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
        }

        .poker-balance-display {
            font-family: 'Orbitron', sans-serif;
            font-size: 18px;
            color: var(--neon-yellow);
            font-weight: 700;
        }

        .poker-table-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow: hidden;
            position: relative;
        }

        .poker-table-wrapper {
            position: relative;
            width: 800px;
            height: 600px;
        }

        .table-oval {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 450px;
            background: radial-gradient(ellipse at center, rgba(26, 15, 46, 0.9), rgba(10, 10, 15, 0.95));
            border-radius: 50%;
            border: 5px solid var(--neon-cyan);
            box-shadow: 0 0 50px rgba(0, 243, 255, 0.3), inset 0 0 50px rgba(0, 243, 255, 0.1);
        }

        .poker-player-seat {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .poker-player-seat.seat-1 { bottom: 30px; left: 50%; transform: translateX(-50%); }
        .poker-player-seat.seat-2 { bottom: 80px; left: 50px; }
        .poker-player-seat.seat-3 { top: 80px; left: 50px; }
        .poker-player-seat.seat-4 { top: 30px; left: 50%; transform: translateX(-50%); }
        .poker-player-seat.seat-5 { top: 80px; right: 50px; }
        .poker-player-seat.seat-6 { bottom: 80px; right: 50px; }

        .poker-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            border: 3px solid var(--neon-cyan);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
        }

        .poker-player-seat.you .poker-avatar {
            border-color: var(--neon-green);
            box-shadow: 0 0 25px rgba(57, 255, 20, 0.6);
        }

        .poker-player-info {
            text-align: center;
            background: rgba(0, 0, 0, 0.8);
            padding: 8px 15px;
            border-radius: 15px;
            border: 2px solid var(--neon-cyan);
            min-width: 120px;
        }

        .poker-player-seat.you .poker-player-info {
            border-color: var(--neon-green);
        }

        .poker-player-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 13px;
            color: var(--neon-cyan);
            margin-bottom: 4px;
        }

        .poker-player-seat.you .poker-player-name {
            color: var(--neon-green);
            font-weight: 700;
        }

        .poker-player-balance {
            font-family: 'Orbitron', sans-serif;
            font-size: 16px;
            color: var(--neon-yellow);
            font-weight: 700;
        }

        .poker-player-cards {
            display: flex;
            gap: 5px;
            margin-top: 5px;
        }

        .poker-card {
            width: 45px;
            height: 65px;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border: 2px solid var(--neon-magenta);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 0 15px rgba(255, 0, 234, 0.4);
        }

        .poker-card.hidden {
            background: linear-gradient(135deg, #0a0a0f, #1a0f2e);
            border-color: rgba(0, 243, 255, 0.3);
        }

        .poker-card.hidden::before {
            content: '🂠';
            font-size: 28px;
            color: var(--neon-cyan);
            opacity: 0.5;
        }

        .poker-pot-display {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.9);
            padding: 15px 30px;
            border-radius: 20px;
            border: 3px solid var(--neon-yellow);
            text-align: center;
            box-shadow: 0 0 30px rgba(255, 234, 0, 0.4);
        }

        .poker-pot-label {
            font-family: 'Orbitron', sans-serif;
            font-size: 12px;
            color: var(--neon-yellow);
            margin-bottom: 5px;
        }

        .poker-pot-amount {
            font-family: 'Orbitron', sans-serif;
            font-size: 28px;
            color: var(--neon-yellow);
            font-weight: 700;
        }

        .poker-controls {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            padding: 20px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid var(--neon-cyan);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .poker-btn {
            padding: 15px 35px;
            font-family: 'Orbitron', sans-serif;
            font-size: 16px;
            font-weight: 700;
            border: 2px solid;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            min-width: 150px;
            text-align: center;
        }

        .poker-btn:hover {
            transform: translateX(-5px);
            box-shadow: 0 5px 20px currentColor;
        }

        .poker-btn-check {
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(0, 243, 255, 0.1));
            border-color: var(--neon-cyan);
            color: var(--neon-cyan);
        }

        .poker-btn-call {
            background: linear-gradient(135deg, rgba(255, 234, 0, 0.2), rgba(255, 234, 0, 0.1));
            border-color: var(--neon-yellow);
            color: var(--neon-yellow);
        }

        .poker-btn-raise {
            background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.1));
            border-color: var(--neon-green);
            color: var(--neon-green);
        }

        .poker-btn-fold {
            background: linear-gradient(135deg, rgba(255, 0, 234, 0.2), rgba(255, 0, 234, 0.1));
            border-color: var(--neon-magenta);
            color: var(--neon-magenta);
        }

        .poker-btn-start {
            background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
            border-color: var(--neon-cyan);
            color: white;
            font-size: 18px;
            padding: 15px 50px;
        }

        @media (max-width: 900px) {
            .poker-table-wrapper { transform: scale(0.8); }
            .poker-controls {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                margin-top: 20px;
            }
            .poker-btn { 
                padding: 12px 20px; 
                font-size: 14px;
                min-width: auto;
            }
        }

        @media (max-width: 600px) {
            .poker-table-wrapper { transform: scale(0.6); }
            .poker-btn { padding: 12px 20px; font-size: 14px; }
        }
    
        /* TZ 2.4: Node indicator styles */
        #nodeIndicator.status-online {
            background: var(--neon-green) !important;
            box-shadow: 0 0 8px var(--neon-green) !important;
        }
        #nodeIndicator.status-offline {
            background: #ff3366 !important;
            box-shadow: 0 0 6px #ff3366 !important;
        }

        @keyframes splashFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
    

        @keyframes splashLogo {
            0%,100%{background-position:0% 50%;filter:drop-shadow(0 0 30px rgba(0,243,255,0.4))}
            33%{background-position:50% 50%;filter:drop-shadow(0 0 35px rgba(255,0,234,0.5))}
            66%{background-position:100% 50%;filter:drop-shadow(0 0 35px rgba(255,215,0,0.4))}
        }
        @keyframes splashBarShimmer {
            0%{background-position:0% 0%} 100%{background-position:300% 0%}
        }
    
#referralCode {
    font-size: 26px !important;
}
.display-none{
    display: none;
}