/* Interface Profissional de Apostas Esportivas - Layout Inline */

.professional-betting-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
}

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

/* Cabeçalho do Jogo */
.professional-match-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-bottom: 2px solid #334155;
    padding: 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.back-to-list-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
}

.back-to-list-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(-2px);
}

.league-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1.1rem;
}

.league-info i {
    color: #3b82f6;
}

.live-indicator {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Display do Jogo */
.match-display {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.team-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-logo-large {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.team-info h3 {
    color: #e2e8f0;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.team-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-stats span {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.score-number {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    padding: 15px 25px;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.score-separator {
    color: #64748b;
    font-size: 1.5rem;
    font-weight: bold;
}

.match-time-large {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Estatísticas ao Vivo */
.live-stats-section {
    background: rgba(30, 41, 59, 0.5);
    padding: 20px;
    border-bottom: 1px solid #334155;
}

.live-stats-section h4 {
    color: #e2e8f0;
    margin: 0 0 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.stat-item {
    background: rgba(15, 23, 42, 0.5);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #334155;
}

.stat-label {
    display: block;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.stat-bar-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-bar {
    flex: 1;
    height: 8px;
    background: #1f2937;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.stat-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.stat-fill.home {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.stat-fill.away {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.stat-value {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: right;
}

/* Área de Apostas */
.professional-betting-area {
    padding: 20px;
}

/* Abas de Apostas */
.betting-tabs-header {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    background: #1e293b;
    padding: 5px;
    border-radius: 10px;
    overflow-x: auto;
}

.betting-tab-btn {
    background: transparent;
    border: none;
    color: #64748b;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.betting-tab-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.betting-tab-btn.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.betting-tab-btn i {
    font-size: 0.9rem;
}

/* Conteúdo das Abas */
.betting-tabs-content {
    position: relative;
}

.betting-tab-content {
    display: none;
}

.betting-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mercados de Aposta */
.betting-market {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #475569;
}

.market-header h5 {
    color: #e2e8f0;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.market-info {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Opções de Aposta */
.betting-options {
    display: grid;
    gap: 10px;
}

.betting-options.three-cols {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.betting-options.two-cols {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.correct-score-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.players-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.professional-bet-btn {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #475569;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.professional-bet-btn:hover {
    background: linear-gradient(145deg, #2d3748 0%, #1a202c 100%);
    border-color: #64748b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.professional-bet-btn:active {
    transform: translateY(0);
}

.professional-bet-btn.bet-selected {
    background: linear-gradient(145deg, #059669 0%, #047857 100%);
    border-color: #10b981;
    animation: pulse-green 1s;
}

.professional-bet-btn.odds-changed {
    animation: highlight-change 2s;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes highlight-change {
    0%, 100% { border-color: #475569; }
    50% { border-color: #fbbf24; box-shadow: 0 0 15px rgba(251, 191, 36, 0.5); }
}

.bet-team {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: center;
    line-height: 1.2;
}

.bet-odds {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .professional-betting-container {
        margin: 10px;
        border-radius: 12px;
    }
    
    .professional-match-header {
        padding: 15px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .match-display {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .team-logo-large {
        width: 60px;
        height: 60px;
    }
    
    .score-number {
        font-size: 2rem;
        padding: 12px 20px;
    }
    
    .team-info h3 {
        font-size: 1rem;
    }
    
    .betting-tabs-header {
        flex-wrap: wrap;
    }
    
    .betting-tab-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .betting-options.three-cols {
        grid-template-columns: 1fr;
    }
    
    .betting-options.two-cols {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .professional-betting-area {
        padding: 15px;
    }
    
    .betting-market {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .professional-match-header {
        padding: 10px;
    }
    
    .team-stats {
        gap: 5px;
    }
    
    .team-stats span {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .live-stats-section {
        padding: 15px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .betting-market {
        padding: 10px;
    }
    
    .professional-bet-btn {
        padding: 12px;
    }
}

/* Animações e Transições */
.professional-bet-btn::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.5s;
}

.professional-bet-btn:hover::before {
    left: 100%;
}

/* Indicadores de mudança de odds */
.odds-up {
    position: relative;
}

.odds-up::after {
    content: 'arrow_upward';
    position: absolute;
    top: -5px;
    right: -5px;
    color: #10b981;
    font-size: 0.8rem;
    font-family: 'Material Icons';
}

.odds-down {
    position: relative;
}

.odds-down::after {
    content: 'arrow_downward';
    position: absolute;
    top: -5px;
    right: -5px;
    color: #ef4444;
    font-size: 0.8rem;
    font-family: 'Material Icons';
}

/* Loading states */
.loading-odds {
    opacity: 0.6;
    pointer-events: none;
}

.loading-odds .bet-odds::after {
    content: '...';
    animation: dots 1s infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

/* Mensagem de Jogo Finalizado */
.game-finished-message {
    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: fadeIn 0.3s ease-out;
}

.finished-content {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.finished-content i {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 15px;
}

.finished-content h3 {
    color: #e2e8f0;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.finished-content p {
    color: #94a3b8;
    margin: 0 0 20px 0;
    font-size: 1rem;
    line-height: 1.4;
}

.close-finished-message {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.close-finished-message:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Melhorar visibilidade da interface profissional */
.professional-betting-container {
    position: relative;
    z-index: 100;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
    margin: 20px auto;
    max-width: 100%;
}

/* Garantir que a lista antiga fique completamente escondida */
#sports-view-list.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Indicadores visuais para jogos finalizados */
.featured-match-card.finished,
.match-row.finished {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.featured-match-card.finished::after,
.match-row.finished::after {
    content: 'FINALIZADO';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #64748b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 10;
}

.featured-match-card.finished:hover,
.match-row.finished:hover {
    transform: none;
    box-shadow: none;
}

/* Campo de Futebol e Eventos ao Vivo */
.live-field-container {
    background: linear-gradient(145deg, #1a2332 0%, #0f172a 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #334155;
}

.soccer-field {
    background: linear-gradient(90deg, #2d5016 0%, #3a6218 50%, #2d5016 100%);
    border-radius: 8px;
    height: 200px;
    position: relative;
    margin-bottom: 20px;
    border: 2px solid #ffffff20;
    overflow: hidden;
}

.field-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.center-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.penalty-area {
    position: absolute;
    width: 40px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: none;
}

.penalty-area.left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.penalty-area.right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.goal {
    position: absolute;
    width: 8px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    top: 50%;
    transform: translateY(-50%);
}

.goal.left {
    left: -8px;
    border-radius: 0 4px 4px 0;
}

.goal.right {
    right: -8px;
    border-radius: 4px 0 0 4px;
}

.team-formation {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
}

.home-team {
    left: 5%;
}

.away-team {
    right: 5%;
}

.player {
    position: absolute;
    background: rgba(59, 130, 246, 0.8);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.away-team .player {
    background: rgba(239, 68, 68, 0.8);
}

.player:hover {
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 10;
}

.ball {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: ball-pulse 2s infinite;
}

@keyframes ball-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Timeline de Eventos */
.live-events-timeline {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.event-item:last-child {
    border-bottom: none;
}

.event-time {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 35px;
    text-align: center;
}

.event-icon {
    font-size: 0.8rem;
    font-weight: bold;
}

.event-item.goal .event-icon {
    color: #10b981;
}

.event-item.yellow-card .event-icon {
    color: #fbbf24;
}

.event-item.substitution .event-icon {
    color: #6b7280;
}

.event-desc {
    color: #e2e8f0;
    font-size: 0.85rem;
    flex: 1;
}

/* Estatísticas Detalhadas */
.detailed-stats {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
    padding: 15px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.stats-row:last-child {
    margin-bottom: 0;
}

.stat-box {
    text-align: center;
    padding: 10px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 6px;
    border: 1px solid #334155;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-bottom: 5px;
}

.stat-bar {
    height: 4px;
    background: #1f2937;
    border-radius: 2px;
    overflow: hidden;
}

/* Bet Slip (Carrinho de Apostas) */
.bet-slip-container {
    position: fixed;
    right: 20px;
    top: 100px;
    width: 320px;
    max-height: 600px;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.bet-slip-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bet-slip-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-bet-slip {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.clear-bet-slip:hover {
    background: rgba(255, 255, 255, 0.3);
}

.bet-slip-content {
    max-height: 500px;
    overflow-y: auto;
}

.empty-bet-slip {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}

.empty-bet-slip i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.empty-bet-slip p {
    margin: 0;
    font-size: 0.9rem;
}

.bet-slip-items {
    padding: 15px;
}

.bet-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bet-info {
    flex: 1;
}

.bet-match {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 2px;
}

.bet-selection {
    font-size: 0.9rem;
    color: #e2e8f0;
    font-weight: 600;
}

.bet-odds {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}

.remove-bet {
    background: rgba(239, 68, 68, 0.2);
    border: none;
    color: #ef4444;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.remove-bet:hover {
    background: rgba(239, 68, 68, 0.3);
}

.bet-slip-summary {
    padding: 15px;
    border-top: 1px solid #334155;
}

.stake-input {
    margin-bottom: 15px;
}

.stake-input label {
    display: block;
    color: #e2e8f0;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.stake-input input {
    width: 100%;
    padding: 10px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.stake-input input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.potential-return {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 6px;
    margin-bottom: 15px;
}

.potential-return span:first-child {
    color: #94a3b8;
    font-size: 0.9rem;
}

.potential-return span:last-child {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
}

.place-bet-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.place-bet-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.place-bet-btn:active {
    transform: translateY(0);
}

/* Responsive Design para Bet Slip */
@media (max-width: 768px) {
    .bet-slip-container {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        top: auto;
        width: 100%;
        max-height: 50vh;
        border-radius: 12px 12px 0 0;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .live-field-container {
        padding: 15px;
    }
    
    .soccer-field {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .bet-slip-container {
        max-height: 60vh;
    }
}
