/* ============================================
   CASINO STYLES - Inspirado no design do site
   ============================================ */

.casino-main {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 20px;
    padding: 20px;
    max-width: 1800px;
    margin: 0 auto;
}

/* ============================================
   HERO BANNER
   ============================================ */
.casino-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.casino-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.casino-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: white;
}

.casino-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

/* ============================================
   CATEGORIAS SIDEBAR
   ============================================ */
.casino-categories {
    background: #1a2040;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.casino-categories h3 {
    color: #e5e9ff;
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a8b2d1;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e5e9ff;
    transform: translateX(5px);
}

.category-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

/* ============================================
   GRID DE JOGOS
   ============================================ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.game-card {
    background: #1a2040;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-card.coming-soon {
    opacity: 0.6;
}

.game-card-header {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-icon {
    font-size: 64px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 71, 87, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-card-body {
    padding: 20px;
}

.game-card-body h3 {
    color: #e5e9ff;
    margin-bottom: 8px;
    font-size: 20px;
}

.game-card-body p {
    color: #a8b2d1;
    font-size: 14px;
    margin-bottom: 15px;
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a8b2d1;
    font-size: 13px;
}

.info-item i {
    color: #667eea;
}

.play-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.play-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.play-btn:disabled {
    background: #4a5568;
    cursor: not-allowed;
}

/* ============================================
   WINNERS PANEL
   ============================================ */
.winners-panel {
    background: #1a2040;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.winners-panel h3 {
    color: #e5e9ff;
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.winners-list {
    max-height: 400px;
    overflow-y: auto;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 8px;
}

.winner-info {
    display: flex;
    flex-direction: column;
}

.winner-name {
    color: #e5e9ff;
    font-weight: 600;
    font-size: 14px;
}

.winner-game {
    color: #a8b2d1;
    font-size: 12px;
}

.winner-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.multiplier {
    color: #2ed573;
    font-weight: bold;
    font-size: 14px;
}

.amount {
    color: #e5e9ff;
    font-size: 13px;
}

/* ============================================
   PROVABLY FAIR PANEL
   ============================================ */
.provably-fair-panel {
    background: #1a2040;
    border-radius: 12px;
    padding: 20px;
}

.provably-fair-panel h3 {
    color: #e5e9ff;
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.provably-fair-panel p {
    color: #a8b2d1;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.learn-more {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 10px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
    .casino-main {
        grid-template-columns: 1fr 300px;
    }
    .left-col {
        display: none;
    }
}

@media (max-width: 968px) {
    .casino-main {
        grid-template-columns: 1fr;
    }
    .right-col {
        display: none;
    }
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}