/* Reset e variáveis CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --accent-color: #ffd23f;
    --success-color: #06d6a0;
    --danger-color: #f72585;
    --warning-color: #ffbe0b;
    
    /* Cores de fundo */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-modal: rgba(0, 0, 0, 0.95);
    
    /* Cores de texto */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    
    /* Sombras e efeitos */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.4);
    
    /* Bordas */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tipografia */
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Background com efeitos */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 78, 137, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 210, 63, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.9) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.balance {
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.username {
    color: var(--text-secondary);
}

/* Botões */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #0dd4a0);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color), #ffc947);
    color: white;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Main Content */
.main {
    padding: 2rem 0;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 1;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    margin-bottom: 3rem;
}

.welcome-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.welcome-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 100;
    position: relative;
    display: block;
    opacity: 1;
    visibility: visible;
    color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: #ff6b35;
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.game-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
}

.game-card p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #ff6b35;
    margin-top: 1rem;
}

.stat {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Stats Section */
.stats-section {
    margin-top: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Modais */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-modal);
    backdrop-filter: blur(10px);
    z-index: 1000;
    animation: modalFadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.close-btn:hover {
    background: var(--danger-color);
    color: white;
}

.modal-body {
    padding: 1.5rem;
}

/* Game Areas */
.game-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Blackjack Styles */
.dealer-area, .player-area {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
    min-height: 120px;
    align-items: center;
}

.card {
    width: 60px;
    height: 90px;
    background: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem;
    color: black;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-value {
    font-size: 0.8rem;
}

.card-suit {
    font-size: 1.2rem;
    text-align: center;
}

.card.red {
    color: #d32f2f;
}

.card.black {
    color: #212121;
}

.score {
    font-weight: 600;
    color: var(--primary-color);
}

.game-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.bet-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bet-section input {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    width: 120px;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

/* Aviator Styles */
.aviator-display {
    position: relative;
    height: 300px;
    background: linear-gradient(180deg, #87CEEB 0%, #98FB98 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.aircraft {
    position: absolute;
    left: 50px;
    top: 50%;
    font-size: 2rem;
    transform: translateY(-50%);
    transition: left 0.1s linear;
    z-index: 2;
}

.multiplier-display {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    z-index: 3;
}

.multiplier-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--success-color);
}

.flight-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: flightPath 0.1s linear infinite;
}

@keyframes flightPath {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cashout-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cashout-info {
    color: var(--text-secondary);
}

/* Roulette Styles */
.roulette-wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--accent-color);
}

.roulette-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    transition: transform 4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: conic-gradient(
        #d32f2f 0deg 9.73deg,
        #000 9.73deg 19.46deg,
        #d32f2f 19.46deg 29.19deg,
        #000 29.19deg 38.92deg,
        #d32f2f 38.92deg 48.65deg,
        #000 48.65deg 58.38deg,
        #d32f2f 58.38deg 68.11deg,
        #000 68.11deg 77.84deg,
        #d32f2f 77.84deg 87.57deg,
        #000 87.57deg 97.3deg,
        #d32f2f 97.3deg 107.03deg,
        #000 107.03deg 116.76deg,
        #d32f2f 116.76deg 126.49deg,
        #000 126.49deg 136.22deg,
        #d32f2f 136.22deg 145.95deg,
        #000 145.95deg 155.68deg,
        #d32f2f 155.68deg 165.41deg,
        #000 165.41deg 175.14deg,
        #d32f2f 175.14deg 184.87deg,
        #000 184.87deg 194.6deg,
        #d32f2f 194.6deg 204.33deg,
        #000 204.33deg 214.06deg,
        #d32f2f 214.06deg 223.79deg,
        #000 223.79deg 233.52deg,
        #d32f2f 233.52deg 243.25deg,
        #000 243.25deg 252.98deg,
        #d32f2f 252.98deg 262.71deg,
        #000 262.71deg 272.44deg,
        #d32f2f 272.44deg 282.17deg,
        #000 282.17deg 291.9deg,
        #d32f2f 291.9deg 301.63deg,
        #000 301.63deg 311.36deg,
        #d32f2f 311.36deg 321.09deg,
        #000 321.09deg 330.82deg,
        #d32f2f 330.82deg 340.55deg,
        #000 340.55deg 350.28deg,
        #d32f2f 350.28deg 360deg
    );
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.roulette-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 20px solid var(--primary-color);
    transform: translateX(-50%);
    z-index: 3;
}

.roulette-board {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    margin-bottom: 1rem;
}

.roulette-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
}

.roulette-number.red {
    background: #d32f2f;
    color: white;
}

.roulette-number.black {
    background: #000;
    color: white;
}

.roulette-number.green {
    background: #2e7d32;
    color: white;
}

.roulette-number:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.roulette-number.selected {
    box-shadow: 0 0 10px var(--accent-color);
    border: 2px solid var(--accent-color);
}

.outside-bets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.bet-group {
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.bet-group:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.bet-group.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Slots Styles */
.slots-machine {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.reels-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reel {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.reel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.reel.spinning {
    animation: spin 0.2s linear infinite;
}

@keyframes reelSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-80px); }
}

.payline {
    height: 4px;
    background: var(--accent-color);
    margin: -2px 0 1rem 0;
    box-shadow: 0 0 10px var(--accent-color);
}

.payout-table {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.payout-table h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.payouts {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Login Form */
.login-form {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.login-form h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Game Results */
.game-result {
    text-align: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 1rem;
}

.game-result.success {
    background: rgba(6, 214, 160, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.game-result.error {
    background: rgba(247, 37, 133, 0.1);
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    animation: toastSlideIn 0.3s ease-out;
    max-width: 300px;
}

@keyframes toastSlideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.success {
    border-left: 4px solid var(--success-color);
}

.toast.error {
    border-left: 4px solid var(--danger-color);
}

.toast.warning {
    border-left: 4px solid var(--warning-color);
}

/* Daily Bonus Section */
.daily-bonus-section {
    margin: 2rem 0;
}

.bonus-container {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 210, 63, 0.1), 
        rgba(255, 107, 53, 0.1), 
        rgba(6, 214, 160, 0.1));
    opacity: 0.5;
}

.bonus-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.bonus-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.streak-info, .bonus-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.streak-label, .bonus-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.streak-value, .bonus-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-bonus {
    background: linear-gradient(135deg, var(--accent-color), #ffc947);
    color: var(--bg-primary);
    font-weight: bold;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-bonus:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 210, 63, 0.4);
}

.btn-bonus:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Jackpot Section */
.jackpot-section {
    margin: 2rem 0;
}

.jackpot-container {
    background: var(--bg-card);
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: jackpotGlow 3s ease-in-out infinite;
}

.jackpot-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-color);
}

.jackpot-display {
    margin-bottom: 2rem;
}

.jackpot-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-color);
    animation: multiplierGlow 2s ease-in-out infinite;
    font-family: 'Orbitron', sans-serif;
}

.jackpot-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.jackpot-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.jackpot-game {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.jackpot-game:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.game-name {
    font-weight: 600;
    color: var(--text-primary);
}

.game-jackpot {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.btn-nav {
    padding: 0.5rem;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-color);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-nav .btn-icon {
    font-size: 1.2rem;
}

/* Settings Modal */
.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.setting-group {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.setting-group h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setting-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.setting-item label {
    color: var(--text-secondary);
    font-weight: 500;
}

.setting-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.setting-item input[type="range"] {
    width: 100px;
    accent-color: var(--primary-color);
}

.settings-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Leaderboard Modal */
.leaderboard-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    font-weight: 500;
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.leaderboard-list {
    max-height: 400px;
    overflow-y: auto;
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.leaderboard-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.leaderboard-rank {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.2rem;
    min-width: 30px;
}

.leaderboard-name {
    flex: 1;
    margin-left: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.leaderboard-value {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Tournament Modal */
.tournament-info {
    text-align: center;
}

.tournament-info h3 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.tournament-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.tournament-stat {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.tournament-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tournament-stat .stat-value {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.tournament-rules {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.tournament-rules h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tournament-rules ul {
    list-style: none;
    padding: 0;
}

.tournament-rules li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.tournament-rules li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Enhanced Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Game Specific Styles */
.game-header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.game-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.game-container {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.game-controls {
    margin-bottom: 2rem;
}

.bet-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.bet-section label {
    font-weight: 600;
    color: var(--text-primary);
}

.bet-section input {
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: var(--bg-primary);
    color: var(--text-primary);
    width: 100px;
}

.game-board {
    margin-bottom: 2rem;
}

.game-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.game-result {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.game-result.success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.game-result.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border: 1px solid var(--error-color);
}

.game-rules {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.game-rules h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.game-rules ul {
    list-style: none;
    padding: 0;
}

.game-rules li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.game-rules li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Blackjack Styles */
.dealer-section, .player-section {
    margin-bottom: 2rem;
}

.dealer-section h3, .player-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.cards {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
    min-height: 120px;
    align-items: center;
}

.card {
    width: 80px;
    height: 120px;
    background: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.card.red {
    color: #dc2626;
}

.card.black {
    color: #1f2937;
}

.card-value {
    font-size: 1.2rem;
    font-weight: bold;
}

.card-suit {
    font-size: 1.5rem;
    text-align: center;
}

.score {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

/* Aviator Styles */
.aviator-track {
    position: relative;
    height: 200px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6, #1e3a8a);
    border-radius: var(--border-radius);
    margin: 2rem 0;
    overflow: hidden;
}

.track-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.aircraft {
    position: absolute;
    top: 50%;
    left: 50px;
    font-size: 2rem;
    transform: translateY(-50%);
    transition: left 0.1s ease;
}

.multiplier-display {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.multiplier-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
}

.cashout-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

.cashout-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cashout-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Roulette Styles */
.roulette-wheel-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.roulette-wheel {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(
        #dc2626 0deg 9.73deg,
        #1f2937 9.73deg 19.46deg,
        #dc2626 19.46deg 29.19deg,
        #1f2937 29.19deg 38.92deg,
        #dc2626 38.92deg 48.65deg,
        #1f2937 48.65deg 58.38deg,
        #dc2626 58.38deg 68.11deg,
        #1f2937 68.11deg 77.84deg,
        #dc2626 77.84deg 87.57deg,
        #1f2937 87.57deg 97.30deg,
        #dc2626 97.30deg 107.03deg,
        #1f2937 107.03deg 116.76deg,
        #dc2626 116.76deg 126.49deg,
        #1f2937 126.49deg 136.22deg,
        #dc2626 136.22deg 145.95deg,
        #1f2937 145.95deg 155.68deg,
        #dc2626 155.68deg 165.41deg,
        #1f2937 165.41deg 175.14deg,
        #dc2626 175.14deg 184.87deg,
        #1f2937 184.87deg 194.60deg,
        #dc2626 194.60deg 204.33deg,
        #1f2937 204.33deg 214.06deg,
        #dc2626 214.06deg 223.79deg,
        #1f2937 223.79deg 233.52deg,
        #dc2626 233.52deg 243.25deg,
        #1f2937 243.25deg 252.98deg,
        #dc2626 252.98deg 262.71deg,
        #1f2937 262.71deg 272.44deg,
        #dc2626 272.44deg 282.17deg,
        #1f2937 282.17deg 291.90deg,
        #dc2626 291.90deg 301.63deg,
        #1f2937 301.63deg 311.36deg,
        #dc2626 311.36deg 321.09deg,
        #1f2937 321.09deg 330.82deg,
        #dc2626 330.82deg 340.55deg,
        #1f2937 340.55deg 350.28deg,
        #22c55e 350.28deg 360deg
    );
    position: relative;
    transition: transform 4s ease-out;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.betting-area {
    margin-top: 2rem;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.roulette-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.roulette-number.red {
    background: #dc2626;
    color: white;
}

.roulette-number.black {
    background: #1f2937;
    color: white;
}

.roulette-number.green {
    background: #22c55e;
    color: white;
}

.roulette-number.selected {
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.outside-bets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.bet-group {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bet-group:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bet-group.selected {
    border-color: var(--accent-color);
    background: rgba(255, 210, 63, 0.1);
}

/* Slots Styles */
.slots-machine {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
}

.reels-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.reel {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.reel.spinning {
    animation: spin 0.2s linear infinite;
}

@keyframes spin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 15px;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .game-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }
    
    .roulette-wheel-container {
        width: 250px;
        height: 250px;
    }
    
    .reels-container {
        gap: 0.5rem;
    }
    
    .reel {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* ===== ROULETTE CASINO PROFISSIONAL ===== */
.roulette-casino-table {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem;
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d2d2d 70%, #1a1a1a 100%),
        radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
    border-radius: 30px;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.95),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.roulette-casino-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    pointer-events: none;
    z-index: 0;
}

/* Seção da Roda da Roleta */
.roulette-wheel-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    border: 2px solid #333;
}

.wheel-container {
    position: relative;
    margin-bottom: 1rem;
}

.roulette-wheel {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    position: relative;
    background: 
        conic-gradient(
            #dc2626 0deg 9.73deg,
            #1f2937 9.73deg 19.46deg,
            #dc2626 19.46deg 29.19deg,
            #1f2937 29.19deg 38.92deg,
            #dc2626 38.92deg 48.65deg,
            #1f2937 48.65deg 58.38deg,
            #dc2626 58.38deg 68.11deg,
            #1f2937 68.11deg 77.84deg,
            #dc2626 77.84deg 87.57deg,
            #1f2937 87.57deg 97.30deg,
            #dc2626 97.30deg 107.03deg,
            #1f2937 107.03deg 116.76deg,
            #dc2626 116.76deg 126.49deg,
            #1f2937 126.49deg 136.22deg,
            #dc2626 136.22deg 145.95deg,
            #1f2937 145.95deg 155.68deg,
            #dc2626 155.68deg 165.41deg,
            #1f2937 165.41deg 175.14deg,
            #dc2626 175.14deg 184.87deg,
            #1f2937 184.87deg 194.60deg,
            #dc2626 194.60deg 204.33deg,
            #1f2937 204.33deg 214.06deg,
            #dc2626 214.06deg 223.79deg,
            #1f2937 223.79deg 233.52deg,
            #dc2626 233.52deg 243.25deg,
            #1f2937 243.25deg 252.98deg,
            #dc2626 252.98deg 262.71deg,
            #1f2937 262.71deg 272.44deg,
            #dc2626 272.44deg 282.17deg,
            #1f2937 282.17deg 291.90deg,
            #dc2626 291.90deg 301.63deg,
            #1f2937 301.63deg 311.36deg,
            #dc2626 311.36deg 321.09deg,
            #1f2937 321.09deg 330.82deg,
            #dc2626 330.82deg 340.55deg,
            #1f2937 340.55deg 350.28deg,
            #dc2626 350.28deg 360deg
        ),
        radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, transparent 70%);
    border: 20px solid #8b4513;
    box-shadow: 
        0 0 60px rgba(0, 0, 0, 0.9), 
        inset 0 0 50px rgba(0, 0, 0, 0.7),
        0 0 120px rgba(220, 38, 38, 0.3),
        inset 0 0 20px rgba(139, 69, 19, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: wheelGlow 4s ease-in-out infinite alternate;
    transform-style: preserve-3d;
}

.wheel-outer-rim {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, #654321, #8b4513, #a0522d, #8b4513, #654321);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(139, 69, 19, 0.6);
    z-index: -1;
}

.wheel-inner-rim {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@keyframes wheelGlow {
    0% {
        box-shadow: 
            0 0 50px rgba(0, 0, 0, 0.9), 
            inset 0 0 40px rgba(0, 0, 0, 0.6),
            0 0 100px rgba(220, 38, 38, 0.2);
    }
    100% {
        box-shadow: 
            0 0 60px rgba(0, 0, 0, 0.9), 
            inset 0 0 50px rgba(0, 0, 0, 0.6),
            0 0 120px rgba(220, 38, 38, 0.3);
    }
}

.roulette-wheel:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 70px rgba(0, 0, 0, 0.9), 
        inset 0 0 50px rgba(0, 0, 0, 0.6),
        0 0 150px rgba(220, 38, 38, 0.4);
}

.wheel-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.wheel-number {
    position: absolute;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: white;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        inset 0 0 10px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.wheel-number:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.wheel-number.red {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3), rgba(185, 28, 28, 0.3));
}

.wheel-number.black {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.3), rgba(17, 24, 39, 0.3));
}

.wheel-number.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.3));
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    background: 
        radial-gradient(circle at 30% 30%, #a0522d 0%, #8b4513 50%, #654321 100%),
        linear-gradient(45deg, #8b4513, #a0522d, #8b4513);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid #654321;
    box-shadow: 
        inset 0 0 25px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(139, 69, 19, 0.7),
        inset 0 0 10px rgba(160, 82, 45, 0.3);
    z-index: 20;
    animation: centerPulse 3s ease-in-out infinite alternate;
    transform-style: preserve-3d;
}

.center-logo {
    font-size: 2rem;
    color: #fbbf24;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(251, 191, 36, 0.6);
    animation: logoGlow 2s ease-in-out infinite alternate;
    z-index: 25;
}

@keyframes centerPulse {
    0% {
        box-shadow: 
            inset 0 0 20px rgba(0, 0, 0, 0.8),
            0 0 30px rgba(139, 69, 19, 0.5);
    }
    100% {
        box-shadow: 
            inset 0 0 25px rgba(0, 0, 0, 0.8),
            0 0 40px rgba(139, 69, 19, 0.7);
    }
}

.center-spindle {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(251, 191, 36, 0.8),
        0 0 30px rgba(251, 191, 36, 0.4);
    animation: spindleGlow 1.5s ease-in-out infinite alternate;
}

@keyframes spindleGlow {
    0% {
        box-shadow: 
            0 0 15px rgba(251, 191, 36, 0.8),
            0 0 30px rgba(251, 191, 36, 0.4);
    }
    100% {
        box-shadow: 
            0 0 20px rgba(251, 191, 36, 1),
            0 0 40px rgba(251, 191, 36, 0.6);
    }
}

.wheel-pointer {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    animation: pointerGlow 2s ease-in-out infinite alternate;
}

.pointer-arrow {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid #dc2626;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.9));
    position: relative;
}

.pointer-arrow::before {
    content: '';
    position: absolute;
    top: 2px;
    left: -20px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 40px solid #ef4444;
}

.wheel-base {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 450px;
    margin: -225px 0 0 -225px;
    background: 
        radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, transparent 70%),
        linear-gradient(45deg, #1a1a1a, #2d2d2d, #1a1a1a);
    border-radius: 50%;
    z-index: -2;
    box-shadow: 
        0 0 80px rgba(0, 0, 0, 0.8),
        inset 0 0 40px rgba(0, 0, 0, 0.5);
}

@keyframes pointerGlow {
    0% {
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.9));
    }
    100% {
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 25px rgba(220, 38, 38, 0.8));
    }
}

@keyframes logoGlow {
    0% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 10px rgba(251, 191, 36, 0.6);
    }
    100% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(251, 191, 36, 1),
            0 0 30px rgba(251, 191, 36, 0.8);
    }
}

.recent-numbers {
    text-align: center;
    color: #fff;
}

.recent-label {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.recent-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Mesa de Apostas */
.betting-table-section {
    margin-bottom: 2rem;
}

.roulette-table {
    background: linear-gradient(135deg, #0d4f3c 0%, #1a5f4a 100%);
    border: 4px solid #2d5a4a;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.roulette-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="felt" patternUnits="userSpaceOnUse" width="8" height="8"><rect width="8" height="8" fill="%230d4f3c"/><circle cx="4" cy="4" r="1" fill="%231a5f4a" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23felt)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.main-numbers-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 1rem;
    margin-bottom: 2rem;
}

.zero-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zero-number {
    width: 60px;
    height: 120px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: 3px solid #15803d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.zero-number:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.zero-number.selected {
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.roulette-number {
    width: 65px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    border: 3px solid transparent;
    position: relative;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.roulette-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.roulette-number:hover::before {
    left: 100%;
}

.roulette-number.red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border-color: #991b1b;
}

.roulette-number.black {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    border-color: #374151;
}

.roulette-number:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.roulette-number.selected {
    border-color: #fbbf24;
    box-shadow: 
        0 0 25px rgba(251, 191, 36, 0.8),
        0 0 50px rgba(251, 191, 36, 0.4),
        inset 0 0 10px rgba(251, 191, 36, 0.2);
    transform: scale(1.1) translateY(-2px);
    animation: selectedPulse 1.5s ease-in-out infinite alternate;
}

@keyframes selectedPulse {
    0% {
        box-shadow: 
            0 0 25px rgba(251, 191, 36, 0.8),
            0 0 50px rgba(251, 191, 36, 0.4),
            inset 0 0 10px rgba(251, 191, 36, 0.2);
    }
    100% {
        box-shadow: 
            0 0 35px rgba(251, 191, 36, 1),
            0 0 70px rgba(251, 191, 36, 0.6),
            inset 0 0 15px rgba(251, 191, 36, 0.3);
    }
}

.roulette-number.selected::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fbbf24;
    color: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.column-bets {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.column-bet {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.column-bet:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.column-bet.selected {
    background: rgba(251, 191, 36, 0.3);
    border-color: #fbbf24;
    transform: translateY(-2px);
}

/* Apostas de Dúzia */
.dozen-bets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.dozen-bet {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.dozen-bet:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.dozen-bet.selected {
    background: rgba(251, 191, 36, 0.3);
    border-color: #fbbf24;
    transform: translateY(-2px);
}

/* Apostas Externas */
.outside-bets {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.outside-bet {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.outside-bet:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.outside-bet.selected {
    background: rgba(251, 191, 36, 0.3);
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.color-indicator.red {
    background: #dc2626;
}

.color-indicator.black {
    background: #1f2937;
}

/* Controles do Jogo */
.game-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bet-amount-controls h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.chip-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.chip-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #666;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.chip-btn:hover {
    transform: scale(1.1);
    border-color: #dc2626;
}

.chip-btn.active {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-color: #dc2626;
    transform: scale(1.1);
}

.bet-input {
    width: 100%;
    background: #333;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 0.8rem;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bet-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.game-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.undo-btn {
    background: linear-gradient(135deg, #666 0%, #888 100%);
    color: white;
}

.clear-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
}

.double-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #000;
}

.spin-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-size: 1.2rem;
    padding: 1.5rem;
}

.action-btn:hover:not(:disabled) {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(255, 255, 255, 0.2);
    filter: brightness(1.1);
}

.action-btn:active:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.action-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-icon {
    font-size: 1.5rem;
}

.btn-text {
    font-size: 0.9rem;
    font-weight: bold;
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 150px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.info-item .label {
    font-weight: 500;
    color: #ccc;
}

.info-item .value {
    font-weight: bold;
    color: #fbbf24;
    font-size: 1.1rem;
}

.game-controls-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bet-controls h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.bet-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bet-input-group input {
    background: #333;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 0.8rem;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bet-input-group input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.bet-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
}

.bet-btn {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border: 2px solid #666;
    border-radius: 8px;
    padding: 0.6rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.bet-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-color: #dc2626;
    transform: translateY(-2px);
}

.game-actions {
    display: flex;
    gap: 1rem;
}

.spin-btn, .clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spin-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.spin-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

.spin-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.clear-btn {
    background: linear-gradient(135deg, #666 0%, #888 100%);
    color: white;
}

.clear-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #888 0%, #aaa 100%);
    transform: translateY(-2px);
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    min-width: 120px;
}

.stat-item .label {
    font-weight: 500;
    color: #ccc;
}

.stat-item .value {
    font-weight: bold;
    color: #dc2626;
}

/* Área Principal da Roleta */
.roulette-main-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Mesa de Apostas */
.betting-table {
    background: linear-gradient(135deg, #0d4f3c 0%, #1a5f4a 100%);
    border: 3px solid #2d5a4a;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.betting-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="felt" patternUnits="userSpaceOnUse" width="4" height="4"><rect width="4" height="4" fill="%230d4f3c"/><circle cx="2" cy="2" r="0.5" fill="%231a5f4a" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23felt)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.roulette-table {
    position: relative;
    z-index: 1;
}

.number-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2px;
    margin-bottom: 2rem;
}

.roulette-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.roulette-number.red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border-color: #991b1b;
}

.roulette-number.black {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    border-color: #374151;
}

.roulette-number.green.zero {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border-color: #15803d;
    grid-column: 1 / -1;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 900;
}

.roulette-number:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.roulette-number.selected {
    border-color: #fbbf24;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
    transform: scale(1.05);
}

.roulette-number.selected::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fbbf24;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Apostas Externas */
.outside-betting-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bet-section {
    display: flex;
    gap: 1rem;
}

.bet-option {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.bet-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.bet-option.selected {
    background: rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.bet-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.bet-color.red {
    background: #dc2626;
}

.bet-color.black {
    background: #1f2937;
}

.bet-label {
    font-weight: bold;
    color: #fff;
    font-size: 1rem;
}

.bet-payout {
    color: #22c55e;
    font-weight: bold;
    font-size: 0.9rem;
}

.bet-amount {
    color: #fbbf24;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Roda da Roleta */
.roulette-wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.roulette-wheel {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #dc2626 0deg 9.73deg,
        #1f2937 9.73deg 19.46deg,
        #dc2626 19.46deg 29.19deg,
        #1f2937 29.19deg 38.92deg,
        #dc2626 38.92deg 48.65deg,
        #1f2937 48.65deg 58.38deg,
        #dc2626 58.38deg 68.11deg,
        #1f2937 68.11deg 77.84deg,
        #dc2626 77.84deg 87.57deg,
        #1f2937 87.57deg 97.30deg,
        #dc2626 97.30deg 107.03deg,
        #1f2937 107.03deg 116.76deg,
        #dc2626 116.76deg 126.49deg,
        #1f2937 126.49deg 136.22deg,
        #dc2626 136.22deg 145.95deg,
        #1f2937 145.95deg 155.68deg,
        #dc2626 155.68deg 165.41deg,
        #1f2937 165.41deg 175.14deg,
        #dc2626 175.14deg 184.87deg,
        #1f2937 184.87deg 194.60deg,
        #dc2626 194.60deg 204.33deg,
        #1f2937 204.33deg 214.06deg,
        #dc2626 214.06deg 223.79deg,
        #1f2937 223.79deg 233.52deg,
        #dc2626 233.52deg 243.25deg,
        #1f2937 243.25deg 252.98deg,
        #dc2626 252.98deg 262.71deg,
        #1f2937 262.71deg 272.44deg,
        #dc2626 272.44deg 282.17deg,
        #1f2937 282.17deg 291.90deg,
        #dc2626 291.90deg 301.63deg,
        #1f2937 301.63deg 311.36deg,
        #dc2626 311.36deg 321.09deg,
        #1f2937 321.09deg 330.82deg,
        #dc2626 330.82deg 340.55deg,
        #1f2937 340.55deg 350.28deg,
        #dc2626 350.28deg 360deg
    );
    border: 8px solid #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.wheel-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.wheel-number {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    margin: -12.5px 0 0 -12.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transform-origin: 0 0;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #666;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.center-logo {
    font-size: 1.5rem;
    color: #dc2626;
}

.roulette-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 24px solid #dc2626;
    transform: translateX(-50%);
    z-index: 20;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.winning-number-display {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #dc2626;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.winning-number-display.show {
    opacity: 1;
    transform: scale(1);
}

.winning-number-display .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dc2626;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.controls-panel {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bet-controls h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.bet-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bet-input-group input {
    background: #333;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 0.8rem;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bet-input-group input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.bet-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.bet-btn {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border: 2px solid #666;
    border-radius: 8px;
    padding: 0.6rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.bet-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-color: #dc2626;
    transform: translateY(-2px);
}

.game-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spin-btn, .clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spin-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.4);
}

.spin-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

.spin-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.clear-btn {
    background: linear-gradient(135deg, #666 0%, #888 100%);
    color: white;
}

.clear-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #888 0%, #aaa 100%);
    transform: translateY(-2px);
}

.game-info {
    background: #222;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.info-item .label {
    font-weight: 500;
    color: #ccc;
}

.info-item .value {
    font-weight: bold;
    color: #dc2626;
}

/* Área da Roleta */
.roulette-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.roulette-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.roulette-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #dc2626 0deg 9.73deg,
        #1f2937 9.73deg 19.46deg,
        #dc2626 19.46deg 29.19deg,
        #1f2937 29.19deg 38.92deg,
        #dc2626 38.92deg 48.65deg,
        #1f2937 48.65deg 58.38deg,
        #dc2626 58.38deg 68.11deg,
        #1f2937 68.11deg 77.84deg,
        #dc2626 77.84deg 87.57deg,
        #1f2937 87.57deg 97.30deg,
        #dc2626 97.30deg 107.03deg,
        #1f2937 107.03deg 116.76deg,
        #dc2626 116.76deg 126.49deg,
        #1f2937 126.49deg 136.22deg,
        #dc2626 136.22deg 145.95deg,
        #1f2937 145.95deg 155.68deg,
        #dc2626 155.68deg 165.41deg,
        #1f2937 165.41deg 175.14deg,
        #dc2626 175.14deg 184.87deg,
        #1f2937 184.87deg 194.60deg,
        #dc2626 194.60deg 204.33deg,
        #1f2937 204.33deg 214.06deg,
        #dc2626 214.06deg 223.79deg,
        #1f2937 223.79deg 233.52deg,
        #dc2626 233.52deg 243.25deg,
        #1f2937 243.25deg 252.98deg,
        #dc2626 252.98deg 262.71deg,
        #1f2937 262.71deg 272.44deg,
        #dc2626 272.44deg 282.17deg,
        #1f2937 282.17deg 291.90deg,
        #dc2626 291.90deg 301.63deg,
        #1f2937 301.63deg 311.36deg,
        #dc2626 311.36deg 321.09deg,
        #1f2937 321.09deg 330.82deg,
        #dc2626 330.82deg 340.55deg,
        #1f2937 340.55deg 350.28deg,
        #dc2626 350.28deg 360deg
    );
    border: 8px solid #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.wheel-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.wheel-number {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    transform-origin: 0 0;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #666;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.center-logo {
    font-size: 2rem;
    color: #dc2626;
}

.roulette-pointer {
    position: absolute;
    top: -15px;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid #dc2626;
    transform: translateX(-50%);
    z-index: 20;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.winning-number {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 3px solid #dc2626;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.winning-number.show {
    opacity: 1;
    transform: scale(1);
}

.winning-number .number {
    font-size: 3rem;
    font-weight: bold;
    color: #dc2626;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Painel de Apostas */
.betting-panel {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #333;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.betting-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tab-btn {
    flex: 1;
    padding: 0.8rem;
    background: #333;
    border: 2px solid #555;
    border-radius: 8px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.tab-btn.active {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-color: #dc2626;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.number-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    margin-bottom: 1rem;
}

.roulette-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 2px solid transparent;
    position: relative;
}

.roulette-number.red {
    background: #dc2626;
    color: white;
}

.roulette-number.black {
    background: #1f2937;
    color: white;
}

.roulette-number.green {
    background: #22c55e;
    color: white;
}

.roulette-number:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.roulette-number.selected {
    border-color: #dc2626;
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
    transform: scale(1.1);
}

.outside-bets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.bet-group {
    background: #333;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.bet-group:hover {
    background: #444;
    border-color: #666;
}

.bet-group.selected {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-color: #dc2626;
    transform: scale(1.05);
}

.bet-label {
    font-weight: bold;
    color: #fff;
    font-size: 1rem;
}

.bet-payout {
    color: #22c55e;
    font-weight: bold;
    font-size: 0.9rem;
}

.bet-amount {
    color: #dc2626;
    font-weight: bold;
    font-size: 0.8rem;
}

.game-result {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.game-result.success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    opacity: 1;
    transform: translateY(0);
}

.game-result.error {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    opacity: 1;
    transform: translateY(0);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.toast.success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.toast.error {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.toast.warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Responsive para Roleta */
@media (max-width: 768px) {
    .roulette-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .controls-panel, .betting-panel {
        order: 2;
    }
    
    .roulette-area {
        order: 1;
    }
    
    .roulette-container {
        width: 300px;
        height: 300px;
    }
    
    .number-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .roulette-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .outside-bets {
        grid-template-columns: 1fr;
    }
    
    .bet-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}
    width: 100%;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 1.5rem;
    }
    
    .game-icon {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .number-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .outside-bets {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animações especiais */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--primary-color); }
    50% { box-shadow: 0 0 20px var(--primary-color); }
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

/* Animações avançadas para jogos */
@keyframes cardDeal {
    0% {
        transform: translateY(-100px) rotateZ(-15deg) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) rotateZ(-5deg) scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) rotateZ(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes cardFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(90deg); }
    100% { transform: rotateY(0deg); }
}

@keyframes winPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px var(--success-color);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 40px var(--success-color);
    }
}

@keyframes loseShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes jackpotGlow {
    0%, 100% { 
        box-shadow: 0 0 20px var(--accent-color);
        filter: brightness(1);
    }
    50% { 
        box-shadow: 0 0 50px var(--accent-color);
        filter: brightness(1.5);
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotateZ(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotateZ(720deg);
        opacity: 0;
    }
}

@keyframes coinFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes numberHighlight {
    0%, 100% { 
        background: inherit;
        transform: scale(1);
    }
    50% { 
        background: var(--accent-color);
        transform: scale(1.2);
        color: var(--bg-primary);
    }
}

@keyframes reelStop {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(0); }
}

@keyframes multiplierGlow {
    0%, 100% { 
        text-shadow: 0 0 10px var(--success-color);
        color: var(--success-color);
    }
    50% { 
        text-shadow: 0 0 30px var(--success-color);
        color: var(--accent-color);
    }
}

@keyframes aircraftCrash {
    0% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-30%) rotate(45deg); }
    100% { transform: translateY(50%) rotate(90deg); }
}

@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(3600deg); }
}

@keyframes slotWin {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-5deg); }
}

/* Classes de animação */
.card-deal {
    animation: cardDeal 0.6s ease-out;
}

.card-flip {
    animation: cardFlip 0.8s ease-in-out;
}

.win-pulse {
    animation: winPulse 1s ease-in-out infinite;
}

.lose-shake {
    animation: loseShake 0.5s ease-in-out;
}

.jackpot-glow {
    animation: jackpotGlow 2s ease-in-out infinite;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    animation: confettiFall 3s linear infinite;
}

.coin-flip {
    animation: coinFlip 1s ease-in-out;
}

.number-highlight {
    animation: numberHighlight 1s ease-in-out;
}

.reel-stop {
    animation: reelStop 0.5s ease-out;
}

.multiplier-glow {
    animation: multiplierGlow 1s ease-in-out infinite;
}

.aircraft-crash {
    animation: aircraftCrash 2s ease-in;
}

.wheel-spin {
    animation: wheelSpin 4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slot-win {
    animation: slotWin 0.5s ease-in-out infinite;
}

/* Efeitos de partículas */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Efeitos de brilho */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Efeitos de hover melhorados */
.game-card:hover .game-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.reel:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Efeitos de loading melhorados */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.loading-text {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    animation: pulse 1.5s ease-in-out infinite;
}

/* Efeitos de vitória */
.win-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2000;
}

.win-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 214, 160, 0.1) 0%, transparent 70%);
    animation: winPulse 2s ease-in-out infinite;
}

/* Efeitos de derrota */
.lose-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2000;
}

.lose-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.1) 0%, transparent 70%);
    animation: loseShake 1s ease-in-out infinite;
}

/* Efeitos de jackpot */
.jackpot-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2000;
}

.jackpot-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.2) 0%, transparent 70%);
    animation: jackpotGlow 1s ease-in-out infinite;
}

/* Melhorias nos modais */
.modal-content {
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modal.show .modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Melhorias nos botões */
.btn {
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    background-position: 0% 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::after {
    transform: translateX(100%);
}

/* Efeitos de texto */
.text-glow {
    text-shadow: 
        0 0 5px currentColor,
        0 0 10px currentColor,
        0 0 15px currentColor;
}

.text-shimmer {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Estados de loading */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Enhanced Blackjack Styles */
.game-container {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 78, 137, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.game-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.05), 
        rgba(0, 78, 137, 0.05), 
        rgba(255, 210, 63, 0.05));
    opacity: 0.8;
    z-index: -1;
}

.game-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.bet-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bet-section label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.bet-section input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 0.8rem 1.2rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    width: 120px;
    transition: all 0.3s ease;
}

.bet-section input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
    transform: scale(1.05);
}

.game-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.dealer-section, .player-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.dealer-section::before, .player-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color));
}

.dealer-section h3, .player-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cards {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    min-height: 140px;
    align-items: center;
    flex-wrap: wrap;
}

.card {
    width: 90px;
    height: 130px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.8rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.card:hover {
    transform: translateY(-10px) rotateY(10deg) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.card.flip {
    animation: cardFlip 0.6s ease-in-out;
}

@keyframes cardFlip {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(90deg) scale(1.1); }
    100% { transform: rotateY(0deg) scale(1); }
}

.card-back {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-value {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.card-suit {
    font-size: 1.8rem;
    text-align: right;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.card-value.red, .card-suit.red {
    color: #e74c3c;
}

.card-value.black, .card-suit.black {
    color: #2c3e50;
}

.score {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0, 78, 137, 0.2));
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.game-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.game-result {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid;
    animation: resultPulse 0.6s ease-in-out;
}

@keyframes resultPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.game-result.win {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.3), rgba(39, 174, 96, 0.3));
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.5);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
    animation: winGlow 2s ease-in-out infinite alternate;
}

@keyframes winGlow {
    0% { box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3); }
    100% { box-shadow: 0 8px 35px rgba(46, 204, 113, 0.6); }
}

.game-result.lose {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.3), rgba(192, 57, 43, 0.3));
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    animation: loseShake 0.5s ease-in-out;
}

@keyframes loseShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.game-rules {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.game-rules h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-rules ul {
    list-style: none;
    padding: 0;
}

.game-rules li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.game-rules li:hover {
    color: var(--text-primary);
    transform: translateX(10px);
}

.game-rules li:last-child {
    border-bottom: none;
}

.game-rules li::before {
    content: '🎯';
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* Canvas para efeitos 3D */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    pointer-events: none;
    opacity: 0.7;
}

/* Aviator Game Layout */
.game-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    min-height: 50vh;
    max-height: 60vh;
}

/* Painel de Controles (Esquerda) */
.controls-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: fit-content;
    max-height: 70vh;
    overflow-y: auto;
}

/* Área Principal do Jogo (Centro) */
.game-area {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Seção de Apostas (Parte Inferior) */
.bets-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

/* Chart do Jogo */
.game-chart {
    flex: 1;
    background: #1a1a2e;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    max-height: 50vh;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Remover scrollbars globalmente */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

/* Remover scrollbars específicos */
.game-chart::-webkit-scrollbar,
.chart-grid::-webkit-scrollbar,
.controls-panel::-webkit-scrollbar,
.bets-section::-webkit-scrollbar,
.bets-list::-webkit-scrollbar,
.history::-webkit-scrollbar {
    display: none;
}

.game-chart,
.chart-grid,
.controls-panel,
.bets-section,
.bets-list,
.history {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.chart-grid {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #87CEEB 0%, #98FB98 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.y-axis {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.x-axis {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.multiplier-display {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    min-width: 80px;
    z-index: 10;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.aircraft {
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 2.5rem;
    z-index: 15;
    transition: all 0.1s ease;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
    animation: aircraftGlow 2s ease-in-out infinite alternate;
}

@keyframes aircraftGlow {
    0% {
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.flight-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.flight-path path {
    stroke-dasharray: 5,5;
    animation: dash 1s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -10;
    }
}

.multiplier-display {
    text-align: center;
    margin-bottom: 2rem;
}

.multiplier-display h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.multiplier-value {
    font-size: 4rem;
    font-weight: 900;
    color: #2ecc71;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
    animation: multiplierGlow 2s ease-in-out infinite alternate;
}

@keyframes multiplierGlow {
    0% { text-shadow: 0 0 20px rgba(46, 204, 113, 0.5); }
    100% { text-shadow: 0 0 30px rgba(46, 204, 113, 0.8); }
}

.aircraft-container {
    position: relative;
    height: 200px;
    background: linear-gradient(180deg, #87CEEB 0%, #98FB98 100%);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.aircraft {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    font-size: 3rem;
    z-index: 10;
    transition: all 0.1s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.flight-path {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateY(-50%);
}

.history-section {
    text-align: center;
}

.history-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.history {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.multiplier-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.multiplier-item.low {
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}

.multiplier-item.medium {
    color: #f39c12;
    border-color: rgba(243, 156, 18, 0.3);
}

.multiplier-item.high {
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
}

/* Enhanced Aviator Controls */
.bet-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px;
}

.bet-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.bet-tab.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.bet-amount-section {
    margin-bottom: 1.5rem;
}

.bet-amount-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.amount-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
}

.currency {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.amount-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
}

.amount-buttons {
    display: flex;
    gap: 0.25rem;
}

.amount-btn {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.amount-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.auto-cashout-section {
    margin-bottom: 1.5rem;
}

.auto-cashout-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.auto-input {
    display: flex;
    gap: 0.5rem;
}

.auto-input input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
}

.auto-input input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.clear-btn {
    padding: 0.75rem 1rem;
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    color: #e74c3c;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.clear-btn:hover {
    background: rgba(231, 76, 60, 0.3);
    transform: translateY(-1px);
}

.game-buttons {
    display: flex;
    gap: 1rem;
}

.btn-large {
    flex: 1;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Bets Section */
.bets-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bets-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 4px;
}

.bets-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bets-tab.active {
    background: transparent;
    color: #e74c3c;
    border-bottom: 2px solid #e74c3c;
    text-decoration: underline;
    box-shadow: none;
}

.players-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.players-info span:first-child {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.total-bets {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.bets-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.bets-list {
    max-height: 200px;
    overflow-y: auto;
}

.bet-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.bet-row:last-child {
    border-bottom: none;
}

.bet-row .username {
    color: var(--text-primary);
    font-weight: 500;
}

.bet-row .amount {
    color: var(--primary-color);
    font-weight: 600;
}

.bet-row .target {
    color: var(--warning-color);
    font-weight: 600;
}

.bet-row .profit {
    color: var(--success-color);
    font-weight: 600;
}

.no-bets {
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
}

/* Botões do Aviator */
.start-game-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #e74c3c;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.start-game-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.cashout-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #2ecc71;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.cashout-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.cashout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Notificações do Aviator */
.aviator-notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    z-index: 1000;
    border: 3px solid;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    animation: notificationPop 0.5s ease-out;
    max-width: 200px;
}

.aviator-notification.crash {
    border-color: #e74c3c;
    color: #e74c3c;
    text-shadow: 0 0 15px rgba(231, 76, 60, 0.8);
    font-size: 1.3rem;
    padding: 1.2rem 1.5rem;
}

.aviator-notification.cashout {
    border-color: #2ecc71;
    color: #2ecc71;
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.8);
    font-size: 1.3rem;
    padding: 1.2rem 1.5rem;
}

@keyframes notificationPop {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Bet Indicator */
.bet-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    animation: betIndicatorSlide 0.5s ease-out;
}

.bet-indicator-content {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.bet-icon {
    font-size: 1.5rem;
    animation: betIconPulse 1s infinite;
}

.bet-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.bet-amount {
    font-size: 1.1rem;
    font-weight: 900;
}

.bet-status {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes betIndicatorSlide {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes betIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Login Prompt */
.login-prompt {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: loginPromptFadeIn 0.3s ease-out;
}

.login-prompt-content {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    max-width: 400px;
    width: 90%;
}

.login-prompt-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: loginIconPulse 2s infinite;
}

.login-prompt-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 900;
}

.login-prompt-text p {
    margin: 0 0 1.5rem 0;
    opacity: 0.8;
    font-size: 1rem;
}

.login-prompt-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-prompt-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

@keyframes loginPromptFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes loginIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes notificationFadeOut {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

/* Efeito de explosão para crash */
.crash-explosion {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #e74c3c 0%, #c0392b 50%, transparent 70%);
    border-radius: 50%;
    animation: explosion 0.8s ease-out;
    z-index: 20;
}

@keyframes explosion {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    50% {
        width: 150px;
        height: 150px;
        opacity: 0.8;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

/* Efeito de sucesso para cashout */
.cashout-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #2ecc71 0%, #27ae60 50%, transparent 70%);
    border-radius: 50%;
    animation: successPulse 0.6s ease-out;
    z-index: 20;
}

@keyframes successPulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    50% {
        width: 120px;
        height: 120px;
        opacity: 0.8;
    }
    100% {
        width: 160px;
        height: 160px;
        opacity: 0;
    }
}

/* Status do Jogo */
.game-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.game-status span {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-waiting {
    background: rgba(243, 156, 18, 0.2);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.status-flying {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
    animation: pulse 1s ease-in-out infinite alternate;
}

.status-crashed {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.timer {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.3);
    font-size: 1rem;
    font-weight: 700;
}

.timer #countdown {
    color: #e74c3c;
    font-weight: 900;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

@keyframes pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Histórico do Aviator */
.history-item {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    min-width: 50px;
}

.history-item.crash {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.history-item.cashout {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.history-item:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Responsive para mobile */
@media (max-width: 1200px) {
    .game-layout {
        grid-template-columns: 250px 1fr;
        gap: 0.8rem;
    }
    
    .controls-panel {
        padding: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .game-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: auto;
    }
    
    .controls-panel {
        order: 2;
        max-height: none;
        height: auto;
    }
    
    .game-area {
        order: 1;
        min-height: 40vh;
    }
    
    .game-chart {
        min-height: 35vh;
        max-height: 40vh;
    }
    
    .aviator-notification {
        font-size: 1.5rem;
        padding: 1.5rem 2rem;
    }
    
    .aircraft {
        font-size: 2rem;
    }
    
    .multiplier-display {
        font-size: 1.5rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .game-layout {
        gap: 0.5rem;
    }
    
    .controls-panel {
        padding: 0.6rem;
    }
    
    .game-chart {
        min-height: 30vh;
        max-height: 35vh;
    }
    
    .aircraft {
        font-size: 1.8rem;
    }
    
    .multiplier-display {
        font-size: 1.3rem;
        padding: 0.5rem 1rem;
    }
}

/* ROULETTE PERFECT STYLES - IMPORT */

/* ===== MODAL DE PERFIL AVANÇADO ===== */
.profile-modal {
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-tabs {
    display: none; /* Esconder tabs para layout vertical */
}

.profile-tab-content {
    display: block !important; /* Mostrar todos os conteúdos em layout vertical */
    animation: none;
    padding: 0;
}

.profile-tab-content.active {
    display: block !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Avatar Section */
.profile-avatar-section {
    margin-bottom: 2rem;
}

.avatar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.avatar-option {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.avatar-option.active {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-color: #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.avatar-emoji {
    font-size: 1.5rem;
}

/* Theme Options */
.theme-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.theme-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.theme-option.active {
    background: rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.theme-option.active::after {
    content: "✓";
    position: absolute;
    right: 1rem;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.theme-preview {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark-theme {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.neon-theme {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
}

.gold-theme {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

/* Setting Options */
.setting-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.setting-option span {
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.setting-option input:checked + .slider {
    background-color: #e74c3c;
}

.setting-option.active::after {
    content: "✓";
    position: absolute;
    right: 1rem;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #e74c3c;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.stat-info h4 {
    margin: 0;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.stat-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Achievements */
.achievements-section {
    margin-top: 1.5rem;
}

.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.achievement-item.unlocked {
    background: rgba(231, 76, 60, 0.15);
    border-color: #e74c3c;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.achievement-item .achievement-icon {
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.achievement-item .achievement-info h4 {
    margin: 0 0 0.2rem 0;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.achievement-item .achievement-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.save-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn:hover {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.cancel-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

/* Action Buttons */
.change-password-btn, .export-btn, .import-btn, .reset-btn, .delete-btn {
    width: 100%;
    padding: 0.8rem 1.5rem;
    margin-bottom: 0.5rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.change-password-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.export-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.import-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.reset-btn {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

.delete-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.change-password-btn:hover, .export-btn:hover, .import-btn:hover, .reset-btn:hover, .delete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Textarea */
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #555;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Section Titles */
.profile-tab-content h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(231, 76, 60, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Avatar Section */
.profile-avatar-section {
    margin-bottom: 1.5rem;
}

/* Personal Tab */
#personalTab .form-group {
    margin-bottom: 1rem;
}

#personalTab .form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

#personalTab .form-group input,
#personalTab .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.9rem;
}

#personalTab .form-group input:focus,
#personalTab .form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .profile-modal {
        max-width: 95%;
        margin: 1rem;
    }
    
    .profile-tabs {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .avatar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .theme-options {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-actions {
        flex-direction: column;
    }
}
@import url('roulette-styles.css');