/* ========================================
   CS2 Dashboard - Esports Theme
   ======================================== */

/* CS2 Theme Colors */
.cs2-theme {
    --cs2-orange: #ff6b35;
    --cs2-orange-dim: rgba(255, 107, 53, 0.15);
    --cs2-blue: #00d4ff;
    --cs2-blue-dim: rgba(0, 212, 255, 0.15);
    --cs2-purple: #a855f7;
    --cs2-purple-dim: rgba(168, 85, 247, 0.15);
    --cs2-red: #ef4444;
    --cs2-gold: #fbbf24;
    
    /* Override accent for CS2 */
    --accent-primary: var(--cs2-orange);
    --accent-primary-dim: var(--cs2-orange-dim);
    --accent-glow: rgba(255, 107, 53, 0.4);
}

/* Header */
.cs2-header {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.cs2-header .header-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs2-header h1 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', var(--font-primary);
    font-size: 2rem;
    letter-spacing: 1px;
}

.cs2-badge {
    background: linear-gradient(135deg, var(--cs2-orange), #ff8c5a);
    color: #000;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.header-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cs2-header .header-actions {
    position: absolute;
    right: 24px;
    top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.model-version {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 8px 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.version-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.version-value {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--cs2-blue);
}

/* Value Alert Banner */
.value-alert {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--card-radius);
    margin-bottom: 24px;
    animation: alertPulse 3s ease-in-out infinite;
}

@keyframes alertPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.2); }
    50% { box-shadow: 0 0 20px 0 rgba(255, 107, 53, 0.3); }
}

.alert-icon {
    font-size: 1.5rem;
}

.alert-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.alert-content strong {
    color: var(--cs2-orange);
}

.alert-content span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* CS2 Stats Row */
.cs2-stats {
    grid-template-columns: repeat(4, 1fr);
}

.cs2-stats .stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.cs2-stats .stat-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.cs2-stats .glow-card {
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--bg-card), var(--cs2-orange-dim));
}

.stat-icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.stat-content {
    flex: 1;
}

.stat-content .value {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-mono);
}

.stat-content .label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cs2-stats .change {
    font-size: 0.8rem;
    margin-top: 0;
}

/* Section Headers */
.matches-section {
    margin-bottom: 40px;
}

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-header-row h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--cs2-red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.filter-tabs {
    display: flex;
    gap: 8px;
}

.filter-tab {
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.filter-tab:hover {
    border-color: var(--border-color-hover);
}

.filter-tab.active {
    background: var(--cs2-orange-dim);
    border-color: var(--cs2-orange);
    color: var(--cs2-orange);
}

.view-all {
    color: var(--cs2-orange);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.view-all:hover {
    color: #ff8c5a;
}

/* Match Cards */
.matches-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.match-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 24px;
    transition: all var(--transition-base);
    overflow: hidden;
}

.match-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.match-card.live {
    border-color: rgba(239, 68, 68, 0.4);
    background: linear-gradient(135deg, var(--bg-card), rgba(239, 68, 68, 0.08));
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.match-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.live-badge {
    background: var(--cs2-red);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(239, 68, 68, 0.3); }
    50% { opacity: 0.85; box-shadow: 0 0 20px rgba(239, 68, 68, 0.5); }
}

.tournament {
    color: var(--text-muted);
    font-size: 0.85rem;
    background: var(--bg-tertiary);
    padding: 4px 10px;
    border-radius: 4px;
}

.match-score {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Teams Display */
.teams-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-tertiary);
    border-radius: 12px;
}

.team {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.team-1 {
    justify-content: flex-end;
    text-align: right;
}

.team-1 .team-info {
    align-items: flex-end;
}

.team-2 {
    justify-content: flex-start;
    text-align: left;
}

.team-2 .team-info {
    align-items: flex-start;
}

.team-logo {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--bg-card);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid var(--border-color);
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.team-odds {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.team-score {
    font-family: 'Orbitron', var(--font-mono);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--cs2-orange);
    min-width: 32px;
    text-align: center;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 16px;
    min-width: 80px;
}

.map-score {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--bg-primary);
    padding: 6px 12px;
    border-radius: 6px;
}

/* Prediction Bar */
.prediction-bar {
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 10px;
}

.prediction-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.prediction-label span:first-child {
    color: var(--text-muted);
    font-weight: 500;
}

.confidence {
    color: var(--cs2-blue);
    font-weight: 600;
    font-family: var(--font-mono);
}

.prediction-meter {
    position: relative;
    height: 10px;
    background: var(--bg-primary);
    border-radius: 5px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cs2-orange), var(--cs2-blue));
    border-radius: 5px;
    transition: width 0.5s ease;
    position: relative;
}

.meter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.meter-marker {
    position: absolute;
    top: -28px;
    transform: translateX(-50%);
    z-index: 1;
}

.marker-label {
    background: var(--cs2-orange);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Expand Button */
.expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.expand-btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.expand-btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.expand-btn.expanded svg {
    transform: rotate(180deg);
}

/* Match Details */
.match-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.match-details.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.match-details h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

/* Props Grid */
.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.prop-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    transition: all var(--transition-base);
}

.prop-card:hover {
    border-color: var(--border-color-hover);
}

.prop-card.value-bet {
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, var(--bg-tertiary), var(--cs2-orange-dim));
}

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

.prop-header .player-name {
    font-weight: 700;
    font-size: 1rem;
}

.value-badge {
    background: var(--cs2-orange);
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

.prop-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.prop-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.line-value {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
}

.line-odds {
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.prop-prediction {
    margin-bottom: 12px;
}

.pred-bar {
    height: 6px;
    background: var(--bg-primary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.pred-fill {
    height: 100%;
    border-radius: 3px;
}

.pred-fill.over {
    background: var(--positive);
}

.pred-fill.under {
    background: var(--cs2-blue);
}

.pred-value {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.prop-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Value Bets Section */
.value-bets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.value-bet-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 24px;
    position: relative;
    transition: all var(--transition-base);
}

.value-bet-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.value-bet-card.hot {
    border-color: var(--cs2-orange);
    background: linear-gradient(135deg, var(--bg-card), var(--cs2-orange-dim));
}

.vb-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--cs2-orange), #ff8c5a);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

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

.vb-match {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vb-teams {
    font-weight: 700;
    font-size: 1rem;
}

.vb-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vb-edge {
    text-align: right;
}

.edge-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cs2-orange);
}

.edge-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    margin-bottom: 20px;
}

.vb-player {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.player-info {
    display: flex;
    flex-direction: column;
}

.player-info .player-name {
    font-weight: 700;
}

.player-info .player-team {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vb-prop {
    text-align: right;
}

.prop-name {
    display: block;
    font-weight: 600;
}

.prop-odds {
    font-family: var(--font-mono);
    color: var(--cs2-blue);
}

.vb-analysis {
    margin-bottom: 16px;
}

.analysis-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.analysis-row:last-child {
    border-bottom: none;
}

.analysis-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.analysis-value {
    font-family: var(--font-mono);
    font-weight: 600;
}

.analysis-value.dim {
    color: var(--text-muted);
}

.analysis-value.positive {
    color: var(--positive);
}

.vb-confidence {
    margin-bottom: 16px;
}

.confidence-meter {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cs2-blue), var(--cs2-orange));
    border-radius: 4px;
}

.confidence-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vb-factors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.factor {
    background: var(--bg-tertiary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Upcoming Matches Table */
.upcoming-matches-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 80px 1fr 120px 100px 100px;
    gap: 16px;
    padding: 16px 24px;
    background: var(--bg-tertiary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 80px 1fr 120px 100px 100px;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.table-row:hover {
    background: var(--bg-tertiary);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.value-row {
    background: var(--cs2-orange-dim);
}

.match-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-mini {
    font-weight: 600;
    font-size: 0.9rem;
}

.vs {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.value-indicator {
    background: var(--cs2-orange);
    color: #000;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-left: 8px;
}

.time-cell {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.tournament-cell {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.prediction-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.predicted-winner {
    font-weight: 700;
    font-size: 0.9rem;
}

.win-prob {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--cs2-blue);
}

.confidence-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mini-meter {
    height: 4px;
    background: var(--bg-primary);
    border-radius: 2px;
    overflow: hidden;
}

.mini-fill {
    height: 100%;
    border-radius: 2px;
}

.mini-fill.high {
    background: var(--positive);
}

.mini-fill.medium {
    background: var(--cs2-gold);
}

.mini-fill.low {
    background: var(--cs2-red);
}

.odds-cell-table {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.odds-value {
    font-family: var(--font-mono);
    font-weight: 700;
}

.odds-book {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.odds-book.edge {
    color: var(--cs2-orange);
    font-weight: 600;
}

/* Player Cards */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.player-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    padding: 24px;
    position: relative;
    transition: all var(--transition-base);
}

.player-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.player-card.hot {
    border-color: var(--cs2-orange);
}

.player-rank {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Orbitron', var(--font-mono);
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-tertiary);
}

.player-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.player-avatar-large {
    width: 56px;
    height: 56px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.player-main-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.player-main-info .player-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.player-main-info .player-team {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.player-form-badge {
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.player-form-badge.fire {
    background: var(--cs2-orange-dim);
    color: var(--cs2-orange);
}

.player-form-badge.up {
    background: rgba(34, 197, 94, 0.15);
    color: var(--positive);
}

.player-form-badge.stable {
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.player-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.player-stat {
    text-align: center;
    padding: 12px 8px;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.player-stat .stat-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.player-stat .stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-stat.trend-up .stat-value {
    color: var(--positive);
}

.player-form-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 50px;
    padding: 0 8px;
}

.form-bar {
    width: 16%;
    background: linear-gradient(to top, var(--cs2-orange), var(--cs2-blue));
    border-radius: 4px;
    opacity: 0.8;
}

.form-bar:last-child {
    opacity: 1;
}

/* Model Stats in Sidebar */
.model-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
}

.model-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.model-stat .stat-value {
    font-family: var(--font-mono);
    font-weight: 600;
}

.model-stat .stat-value.positive {
    color: var(--positive);
}

/* Data Source Status */
.data-sources .source-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.online {
    background: var(--positive);
}

.status-dot.offline {
    background: var(--cs2-red);
}

.sync-time {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Filter Dropdown */
.filter-dropdown select {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 16px;
    color: var(--text-primary);
    font-size: 0.85rem;
    cursor: pointer;
}

/* CS2 Icon Fix */
.cs2-icon {
    font-size: 1.1rem;
    width: 20px;
    display: inline-flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .cs2-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1.5fr 60px 1fr 100px;
    }
    
    .table-header span:nth-child(5),
    .table-header span:nth-child(6),
    .table-row > *:nth-child(5),
    .table-row > *:nth-child(6) {
        display: none;
    }
}

@media (max-width: 768px) {
    .cs2-stats {
        grid-template-columns: 1fr;
    }
    
    .teams-display {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }
    
    .team {
        justify-content: center !important;
        width: 100%;
    }
    
    .team-1, .team-2 {
        flex-direction: row;
        justify-content: space-between !important;
        text-align: left;
    }
    
    .team-1 .team-info,
    .team-2 .team-info {
        align-items: flex-start;
    }
    
    .team-score {
        font-size: 1.5rem;
    }
    
    .vs-divider {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 8px 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
    
    .value-bets-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .table-header span:nth-child(3),
    .table-header span:nth-child(4),
    .table-row > *:nth-child(3),
    .table-row > *:nth-child(4) {
        display: none;
    }
    
    .player-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .match-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
