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

        /* Casino-style fonts using system font stacks */
        body {
            min-height: 100vh;
            background: #0d4f0d;
            background-image: 
                radial-gradient(ellipse at center, #1a5c1a 0%, #0d4f0d 100%),
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,.08) 20px, rgba(0,0,0,.08) 40px);
            font-family: Impact, 'Arial Black', 'Franklin Gothic Heavy', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .casino-table {
            background: #155115;
            border: 15px solid #2c1810;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 
                inset 0 0 50px rgba(0,0,0,0.5),
                0 10px 40px rgba(0,0,0,0.8);
            max-width: 800px;
            width: 100%;
            position: relative;
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        }

        .casino-table::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 2px solid #ffd700;
            border-radius: 10px;
            pointer-events: none;
            opacity: 0.3;
        }

        .game-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }

        .casino-lights {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .light {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ffd700;
            box-shadow: 0 0 10px #ffd700;
        }

        .game-title {
            font-family: Impact, 'Arial Black', sans-serif;
            font-size: 3em;
            color: #ffd700;
            text-shadow: 
                3px 3px 0 #b8860b,
                6px 6px 10px rgba(0,0,0,0.8),
                0 0 30px rgba(255, 215, 0, 0.5);
            letter-spacing: 8px;
            margin-bottom: 10px;
            font-weight: 900;
            text-transform: uppercase;
        }

        .subtitle {
            color: #fff;
            font-size: 1.2em;
            letter-spacing: 4px;
            text-transform: uppercase;
            opacity: 0.9;
            font-family: 'Arial Narrow', Arial, sans-serif;
            font-weight: bold;
        }

        .chips-decoration {
            position: absolute;
            top: 20px;
            right: 30px;
            display: flex;
            gap: 5px;
        }

        .chip {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 3px dashed #fff;
        }

        .chip.red { background: #d32f2f; }
        .chip.blue { background: #1976d2; }
        .chip.black { background: #212121; }

        .controls {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            background: rgba(0,0,0,0.3);
            padding: 15px;
            border-radius: 10px;
            border: 1px solid rgba(255,215,0,0.2);
        }

        .btn {
            padding: 12px 30px;
            font-size: 1.1em;
            font-family: Impact, 'Arial Black', sans-serif;
            font-weight: 600;
            border: 3px solid #ffd700;
            border-radius: 5px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.2s ease;
            position: relative;
        }

        .btn-gold {
            background: linear-gradient(145deg, #ffd700, #ffed4e);
            color: #2c1810;
            box-shadow: 
                inset 0 2px 4px rgba(255,255,255,0.3),
                0 4px 8px rgba(0,0,0,0.5);
        }

        .btn-gold:hover:not(:disabled) {
            background: linear-gradient(145deg, #ffed4e, #ffd700);
            transform: translateY(-2px);
            box-shadow: 
                inset 0 2px 4px rgba(255,255,255,0.3),
                0 6px 12px rgba(0,0,0,0.6);
        }

        .btn-red {
            background: linear-gradient(145deg, #d32f2f, #f44336);
            color: white;
            box-shadow: 
                inset 0 2px 4px rgba(255,255,255,0.2),
                0 4px 8px rgba(0,0,0,0.5);
        }

        .btn-red:hover:not(:disabled) {
            background: linear-gradient(145deg, #f44336, #d32f2f);
            transform: translateY(-2px);
        }

        .btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .deck-counter {
            background: #000;
            color: #ffd700;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: bold;
            letter-spacing: 2px;
            border: 2px solid #ffd700;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
            font-family: 'Courier New', monospace;
        }

        .scoreboard {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            gap: 20px;
        }

        .score-panel {
            flex: 1;
            background: linear-gradient(145deg, #2c1810, #1a0e08);
            border: 3px solid #ffd700;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: 
                inset 0 2px 10px rgba(0,0,0,0.5),
                0 5px 15px rgba(0,0,0,0.5);
        }

        .player-name {
            color: #ffd700;
            font-size: 1.2em;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 10px;
            font-weight: bold;
            font-family: Impact, sans-serif;
        }

        .score-display {
            font-family: 'Courier New', monospace;
            font-size: 3.5em;
            color: #fff;
            text-shadow: 0 0 20px rgba(255,215,0,0.5);
            line-height: 1;
            font-weight: bold;
        }

        .play-area {
            background: radial-gradient(ellipse at center, #1a5c1a 0%, #155115 100%);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 30px;
            border: 2px solid rgba(255,215,0,0.2);
            box-shadow: 
                inset 0 0 30px rgba(0,0,0,0.5),
                0 5px 20px rgba(0,0,0,0.4);
            position: relative;
        }

        /* .play-area::before {
            content: '♠ ♥ ♣ ♦';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255,215,0,0.1);
            font-size: 1.5em;
            letter-spacing: 20px;
        } */

        .cards-display {
            display: flex;
            justify-content: center;
            gap: 100px;
            margin-bottom: 30px;
        }

        .card-space {
            position: relative;
        }

        .card-slot {
            width: 140px;
            height: 196px;
            border: 3px solid rgba(255,215,0,0.3);
            border-radius: 10px;
            background: rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.4);
        }

        .card-slot img {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.6);
        }

        .card-label {
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            color: #ffd700;
            font-size: 1.1em;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            font-family: Impact, sans-serif;
        }

        .empty-slot {
            color: rgba(255,215,0,0.3);
            font-size: 1.2em;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
        }

        .vs-divider {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ffd700;
            font-size: 2.5em;
            font-weight: 900;
            text-shadow: 0 0 20px rgba(255,215,0,0.8);
            font-family: Impact, sans-serif;
            letter-spacing: 3px;
        }

        .result-display {
            text-align: center;
            font-size: 2em;
            font-weight: 900;
            min-height: 50px;
            color: #ffd700;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            font-family: Impact, 'Arial Black', sans-serif;
        }

        .result-display.win {
            color: #4caf50;
        }

        .result-display.lose {
            color: #f44336;
        }

        .result-display.war {
            color: #ff9800;
            font-size: 3em;
        }

        .game-stats {
            display: flex;
            justify-content: space-around;
            padding: 20px;
            background: rgba(0,0,0,0.3);
            border-radius: 10px;
            border: 1px solid rgba(255,215,0,0.2);
            margin-top: 20px;
        }

        .stat {
            text-align: center;
        }

        .stat-label {
            color: #ffd700;
            font-size: 0.9em;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
            opacity: 0.8;
            font-weight: bold;
        }

        .stat-value {
            color: #fff;
            font-size: 1.8em;
            font-weight: bold;
            font-family: 'Courier New', monospace;
            text-shadow: 0 0 10px rgba(255,215,0,0.3);
        }

        .draw-button-container {
            text-align: center;
        }

        .final-result {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(145deg, #2c1810, #1a0e08);
            border: 5px solid #ffd700;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 0 100px rgba(0,0,0,0.9);
            z-index: 1000;
            display: none;
        }

        .final-result.show {
            display: block;
        }

        .final-result h2 {
            font-family: Impact, 'Arial Black', sans-serif;
            font-size: 3em;
            color: #ffd700;
            margin-bottom: 20px;
            letter-spacing: 3px;
        }

        .final-score {
            color: #fff;
            font-size: 1.5em;
            margin-bottom: 30px;
            font-family: 'Franklin Gothic Medium', Arial, sans-serif;
        }

        .play-again-btn {
            padding: 15px 40px;
            font-size: 1.3em;
        }

        /* Card suits decorations */
        .suit-decoration {
            position: absolute;
            color: rgba(255,215,0,0.05);
            font-size: 100px;
            z-index: 0;
        }

        .suit-top-left {
            top: 20px;
            left: 20px;
        }

        .suit-top-right {
            top: 20px;
            right: 20px;
        }

        .suit-bottom-left {
            bottom: 20px;
            left: 20px;
        }

        .suit-bottom-right {
            bottom: 20px;
            right: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .casino-table {
                padding: 20px;
            }

            .game-title {
                font-size: 2.5em;
                letter-spacing: 3px;
            }
           
            .controls {
                gap: 20px;
            }

            .card-slot {
                width: 100px;
                height: 140px;
            }

            .scoreboard {
                flex-direction: column;
            }

            .chips-decoration {
                display: none;
            }

            .suit-decoration {
                display: none;
            }
        }