        :root {
            --primary-color: #1a472a;
            --secondary-color: #2d6245;
            --accent-color: #d4af37;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --player-color: #2c7da0;
            --dealer-color: #dc3545;
            --card-red: #c41e3a;
            --card-black: #1c1c1c;
            --felt-color: #0d5c3e;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #121212;
            color: white;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
        }
        
        .navbar {
            background-color: #1a1a1a;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            border-bottom: 1px solid #333;
            padding: 0.75rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--accent-color);
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: #ddd;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 6px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--accent-color);
            background-color: rgba(212, 175, 55, 0.1);
        }
        
        .page-header {
            background: linear-gradient(135deg, rgba(26, 71, 42, 0.9) 0%, rgba(45, 98, 69, 0.9) 100%);
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0.5rem 0;
            margin-bottom: 0.5rem;
        }
        
        .breadcrumb-item a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .tool-card {
            background: #1a1a1a;
            border-radius: 8px;
            border: 1px solid #333;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        
        .tool-header {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
            border-bottom: 1px solid #333;
        }
        
        .tool-header h2 {
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }
        
        .game-area {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 2rem 0;
        }
        
        .blackjack-table {
            width: 100%;
            max-width: 900px;
            height: 500px;
            background-color: var(--felt-color);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            margin-bottom: 2rem;
            border: 8px solid #8b4513;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        
        .blackjack-table::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
                              radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.1) 0%, transparent 55%);
            pointer-events: none;
        }
        
        .dealer-area, .player-area {
            width: 100%;
            padding: 20px;
            position: relative;
        }
        
        .dealer-area {
            height: 45%;
            border-bottom: 2px dashed rgba(212, 175, 55, 0.5);
        }
        
        .player-area {
            height: 55%;
        }
        
        .area-label {
            position: absolute;
            font-weight: bold;
            font-size: 1.2rem;
            color: white;
            background-color: rgba(0,0,0,0.7);
            padding: 5px 15px;
            border-radius: 20px;
            border: 1px solid var(--accent-color);
        }
        
        .dealer-label {
            top: 10px;
            left: 20px;
        }
        
        .player-label {
            bottom: 10px;
            left: 20px;
        }
        
        .cards-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            padding-top: 40px;
            padding-bottom: 40px;
        }
        
        .card {
            width: 80px;
            height: 120px;
            background-color: white;
            border-radius: 8px;
            margin: 0 5px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card.red {
            color: var(--card-red);
        }
        
        .card.black {
            color: var(--card-black);
        }
        
        .card-back {
            background: linear-gradient(45deg, #8b0000, #ff0000);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .card-value {
            font-size: 1.8rem;
            font-weight: bold;
        }
        
        .card-suit {
            font-size: 1.5rem;
            text-align: center;
        }
        
        .card-corner {
            font-size: 1.2rem;
            font-weight: bold;
            line-height: 1;
        }
        
        .card-corner.top {
            align-self: flex-start;
        }
        
        .card-corner.bottom {
            align-self: flex-end;
            transform: rotate(180deg);
        }
        
        .score-display {
            position: absolute;
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            background-color: rgba(0,0,0,0.8);
            padding: 8px 15px;
            border-radius: 10px;
            border: 2px solid var(--accent-color);
        }
        
        .dealer-score {
            top: 10px;
            right: 20px;
        }
        
        .player-score {
            bottom: 10px;
            right: 20px;
        }
        
        .game-controls {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .game-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            min-width: 140px;
        }
        
        .game-btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .game-btn-primary:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .game-btn-secondary {
            background-color: #6c757d;
            color: white;
        }
        
        .game-btn-secondary:hover {
            background-color: #5a6268;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .game-btn-success {
            background-color: var(--success-color);
            color: white;
        }
        
        .game-btn-success:hover {
            background-color: #218838;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .game-btn-warning {
            background-color: var(--warning-color);
            color: #212529;
        }
        
        .game-btn-warning:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .game-btn-danger {
            background-color: var(--danger-color);
            color: white;
        }
        
        .game-btn-danger:hover {
            background-color: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        
        .game-stats {
            display: flex;
            justify-content: space-around;
            background-color: rgba(0,0,0,0.5);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border: 1px solid #333;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0.25rem;
        }
        
        .stat-label {
            color: #ccc;
            font-size: 0.9rem;
        }
        
        .game-info-box {
            background-color: rgba(26, 71, 42, 0.3);
            border-left: 3px solid var(--accent-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        
        .game-tip-box {
            background-color: rgba(255, 193, 7, 0.1);
            border-left: 3px solid var(--warning-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        
        .betting-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
            justify-content: center;
            align-items: center;
        }
        
        .bet-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            background-color: var(--accent-color);
            color: #1a1a1a;
            border: none;
            transition: all 0.3s;
        }
        
        .bet-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
        }
        
        .current-bet {
            background-color: rgba(212, 175, 55, 0.2);
            border: 2px solid var(--accent-color);
            border-radius: 10px;
            padding: 1rem;
            min-width: 200px;
            text-align: center;
        }
        
        .bet-amount {
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent-color);
        }
        
        .bet-label {
            color: #ccc;
            font-size: 0.9rem;
        }
        
        .result-message {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.4) 100%);
            border: 2px solid var(--success-color);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            margin: 2rem 0;
            display: none;
        }
        
        .result-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--success-color);
            margin-bottom: 1rem;
        }
        
        .related-tools {
            background-color: #1a1a1a;
            border-radius: 8px;
            border: 1px solid #333; 
            margin-bottom: 1.5rem;
        }
        
        .related-title {
            font-weight: 600;
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem; 
            color: var(--accent-color);
            border-bottom: 1px solid #333;
        }
        
        .related-tool {
            display: flex;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid #333;
            transition: background-color 0.3s;
        }
        
        .related-tool:hover {
            background-color: rgba(255,255,255,0.05);
        }
        
        .related-tool:last-child {
            border-bottom: none;
        }
        
        .related-icon {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            background-color: rgba(212, 175, 55, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--accent-color);
        }
        
        .related-name {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }
        
        .related-desc {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .ad-container {
            background-color: #222;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            border: 1px solid #333;
        }
        
        .ad-label {
            font-size: 0.75rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        
        .ad-placeholder {
            width: 100%;
            height: 250px;
            background-color: #2a2a2a;
            border: 1px dashed #444;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            font-weight: 500;
        }
        
        .footer {
            background-color: #1a1a1a; 
            margin-top: 3rem;
            border-top: 1px solid #333;
        }
        
        .difficulty-indicator {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-right: 0.5rem;
        }
        
        .difficulty-easy {
            background-color: rgba(40, 167, 69, 0.2);
            color: #28a745;
        }
        
        .difficulty-medium {
            background-color: rgba(255, 193, 7, 0.2);
            color: #ffc107;
        }
        
        .difficulty-hard {
            background-color: rgba(220, 53, 69, 0.2);
            color: #dc3545;
        }
        
        .section-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--accent-color);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #333;
        }
        
        .strategy-tips {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .tip-card {
            background: #222;
            border-radius: 8px;
            padding: 1.25rem;
            border: 1px solid #333;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        
        .tip-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background-color: rgba(212, 175, 55, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--accent-color);
            font-size: 1.25rem;
        }
        
        .tip-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .tip-desc {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .game-mode-toggle {
            display: flex;
            background-color: #222;
            border-radius: 6px;
            padding: 4px;
            margin-bottom: 1.5rem;
        }
        
        .mode-btn {
            flex: 1;
            text-align: center;
            padding: 0.75rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .mode-btn.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .game-history {
            background-color: #222;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            max-height: 300px;
            overflow-y: auto;
            border: 1px solid #333;
        }
        
        .game-history-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }
        
        .history-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .history-item {
            padding: 0.5rem;
            background-color: #2a2a2a;
            border-radius: 4px;
            border-left: 3px solid var(--accent-color);
            font-family: monospace;
        }
        
        .history-item.win {
            border-left-color: var(--success-color);
        }
        
        .history-item.loss {
            border-left-color: var(--danger-color);
        }
        
        .history-item.push {
            border-left-color: var(--warning-color);
        }
        
        .algorithm-info {
            background-color: rgba(108, 117, 125, 0.1);
            border-left: 3px solid #6c757d;
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
            font-family: monospace;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        .slider-container {
            margin: 1.5rem 0;
        }
        
        .slider-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }
        
        .chip-stack {
            display: flex;
            justify-content: center;
            margin: 1rem 0;
            gap: 10px;
        }
        
        .chip {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            box-shadow: 0 3px 5px rgba(0,0,0,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .chip:hover {
            transform: translateY(-5px);
        }
        
        .chip-1 {
            background: radial-gradient(circle at 30% 30%, #c0c0c0, #808080);
            border: 2px solid #ddd;
        }
        
        .chip-5 {
            background: radial-gradient(circle at 30% 30%, #ff6b6b, #c41e3a);
            border: 2px solid #ff9999;
        }
        
        .chip-10 {
            background: radial-gradient(circle at 30% 30%, #4ecdc4, #2d7a74);
            border: 2px solid #7fdfd9;
        }
        
        .chip-25 {
            background: radial-gradient(circle at 30% 30%, #ffeaa7, #d4b657);
            border: 2px solid #fff4d1;
        }
        
        .chip-100 {
            background: radial-gradient(circle at 30% 30%, #a29bfe, #6c5ce7);
            border: 2px solid #c8c4ff;
        }
        
        @media (max-width: 768px) {
            .tool-card {
                padding: 1.5rem;
            }
            
            .blackjack-table {
                height: 400px;
            }
            
            .game-controls {
                flex-direction: column;
                align-items: center;
            }
            
            .game-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .game-stats {
                flex-direction: column;
                gap: 1rem;
            }
            
            .card {
                width: 60px;
                height: 90px;
            }
            
            .card-value {
                font-size: 1.4rem;
            }
            
            .card-suit {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .blackjack-table {
                height: 350px;
            }
            
            .card {
                width: 50px;
                height: 75px;
                margin: 0 3px;
            }
            
            .card-value {
                font-size: 1.2rem;
            }
            
            .card-suit {
                font-size: 1rem;
            }
            
            .bet-btn {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }
        }
        
        .toast-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1050;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 0.5s ease;
        }
        
        .game-active {
            pointer-events: none;
            opacity: 0.9;
        }
        
        .form-control {
            background-color: #2a2a2a;
            border: 1px solid #444;
            border-radius: 6px;
            padding: 0.75rem;
            transition: all 0.3s;
            color: white;
        }
        
        .form-control:focus {
            background-color: #2a2a2a;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
            color: white;
        }
        
        .btn {
            border-radius: 6px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-1px);
        }
        
        .btn-outline-primary {
            color: var(--accent-color);
            border-color: var(--accent-color);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: #1a1a1a;
        }
        
        .alert {
            border-radius: 6px;
            border: 1px solid transparent;
            padding: 1rem;
            margin-bottom: 1rem;
        }
        
        .alert-success {
            background-color: rgba(40, 167, 69, 0.2);
            border-color: rgba(40, 167, 69, 0.3);
            color: #28a745;
        }
        
        .alert-info {
            background-color: rgba(23, 162, 184, 0.2);
            border-color: rgba(23, 162, 184, 0.3);
            color: #17a2b8;
        }
        
        .alert-warning {
            background-color: rgba(255, 193, 7, 0.2);
            border-color: rgba(255, 193, 7, 0.3);
            color: #ffc107;
        }
        
        .alert-danger {
            background-color: rgba(220, 53, 69, 0.2);
            border-color: rgba(220, 53, 69, 0.3);
            color: #dc3545;
        }
        
        hr {
            border: 0;
            border-top: 1px solid #333;
            margin: 1.5rem 0;
        }
        
        .text-muted {
            color: #aaa !important;
        }
        
        .text-success {
            color: var(--success-color) !important;
        }
        
        .text-warning {
            color: var(--warning-color) !important;
        }
        
        .text-danger {
            color: var(--danger-color) !important;
        }
        
        .text-primary {
            color: var(--accent-color) !important;
        }
        
        .table {
            width: 100%;
            margin-bottom: 1rem;
            color: white;
        }
        
        .table th {
            background-color: #222;
            font-weight: 600;
            border-color: #333;
        }
        
        .table td {
            border-color: #333;
        }
        
        .table-striped tbody tr:nth-of-type(odd) {
            background-color: rgba(255,255,255,0.05);
        }
        
        .table-bordered {
            border: 1px solid #333;
        }
        
        .table-bordered th,
        .table-bordered td {
            border: 1px solid #333;
        }
        
        .usage-step {
            display: flex;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }
        
        .step-number {
            width: 28px;
            height: 28px;
            background-color: var(--accent-color);
            color: #1a1a1a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .step-content {
            flex: 1;
        }
        
        .faq-section {
            margin-top: 2rem;
        }
        
        .accordion-button {
            background-color: #222;
            color: white;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(26, 71, 42, 0.3);
            color: var(--accent-color);
            font-weight: 600;
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
            border-color: var(--accent-color);
        }
        
        .accordion-body {
            background-color: #222;
            color: #ddd;
        }
        
        .accordion-item {
            background-color: transparent;
            border: 1px solid #333;
        }
        
        .action-btn {
            background-color: #222;
            border: 1px solid #444;
            border-radius: 6px;
            padding: 0.5rem 1rem;
            margin-left: 0.5rem;
            transition: all 0.3s;
            color: white;
        }
        
        .action-btn:hover {
            background-color: rgba(212, 175, 55, 0.2);
            color: var(--accent-color);
        }
        
        .social-icons {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }
        
        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #2a2a2a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background-color: var(--accent-color);
            color: #1a1a1a;
            transform: translateY(-3px);
        }
        
        .card-count {
            position: absolute;
            bottom: 10px;
            right: 20px;
            font-size: 0.9rem;
            color: #aaa;
            background-color: rgba(0,0,0,0.7);
            padding: 5px 10px;
            border-radius: 10px;
        }
        
        .insurance-bet {
            display: none;
            margin-top: 1rem;
            padding: 1rem;
            background-color: rgba(255, 193, 7, 0.1);
            border-radius: 8px;
            border: 1px solid var(--warning-color);
        }
        
        .double-down-btn {
            background-color: #6f42c1;
            color: white;
        }
        
        .double-down-btn:hover {
            background-color: #5a32a3;
        }
        
        .split-btn {
            background-color: #17a2b8;
            color: white;
        }
        
        .split-btn:hover {
            background-color: #138496;
        }
        
        .insurance-btn {
            background-color: #fd7e14;
            color: white;
        }
        
        .insurance-btn:hover {
            background-color: #e06a0b;
        }
    