/* Simple System Styles - Clean and Working */

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.live-pulse {
    animation: pulse 1.5s infinite;
}

/* Enhanced Live Betting Card Styles */
.live-betting-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #ff4444;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.live-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.game-title strong {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.live-score {
    color: #00ff88;
    font-size: 24px;
    font-weight: bold;
    margin-top: 8px;
}

.game-status.live {
    color: #ff4444;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.analysis-section {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    padding: 20px;
}

.analysis-section h4 {
    color: #00ff88;
    margin: 0 0 15px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Live Lines Specific Styling */
.live-lines-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.line-item.high-value {
    border-color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
}

.line-type {
    font-weight: bold;
    color: #ccc;
    min-width: 80px;
    font-size: 14px;
}

.line-value {
    flex: 1;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin: 0 15px;
    font-size: 14px;
}

.line-odds {
    color: #00ff88;
    font-weight: bold;
    min-width: 60px;
    text-align: right;
    font-size: 14px;
}

.value-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffcc00;
    color: #000;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: bold;
}

/* Footer Styling */
.live-betting-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.game-info {
    display: flex;
    gap: 20px;
    color: #ccc;
    font-size: 13px;
}

.update-time {
    color: #666;
    font-size: 12px;
}

.game-info-display {
    font-size: 16px;
    font-weight: bold;
    color: white;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    margin-bottom: 10px;
}

.live-game {
    border-color: #ff4444 !important;
    background: rgba(255, 68, 68, 0.1) !important;
    border: 2px solid #ff4444 !important;
}

.live-game .game-info-display {
    color: #ff4444;
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.2);
}

.props-btn:hover {
    background: #00cc6a !important;
    transform: translateY(-2px);
}

/* AI Predictions Styling */
.ai-predictions h3 {
    color: #00ff88;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.prediction-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.prediction-card .matchup {
    color: white;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.prediction-card .prediction {
    color: #00ff88;
    font-size: 14px;
}

.prediction-card .prediction strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

/* Mobile Menu Fixes */
.mobile-menu-toggle {
    display: none;
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 24px !important;
    padding: 10px !important;
    cursor: pointer !important;
    border-radius: 5px !important;
    transition: all 0.3s ease !important;
    min-width: 48px !important;
    min-height: 48px !important;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 255, 136, 0.2) !important;
    color: #00ff88 !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .nav-menu {
        display: none !important;
    }
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    border-left: 2px solid #00ff88;
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 255, 136, 0.1);
}

.mobile-nav-brand {
    color: #00ff88;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff6b6b;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
}

.mobile-nav-link.active {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border-left: 3px solid #00ff88;
}

.mobile-nav-link i {
    margin-right: 10px;
    width: 20px;
}

/* Game cards styling */
.game-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.game-card .teams {
    color: white;
    font-weight: bold;
    margin-bottom: 8px;
}

.game-card .status {
    color: #00ff88;
    font-size: 14px;
    margin-bottom: 5px;
}

.game-card .network {
    color: #ccc;
    font-size: 12px;
}

/* Live Games with Hard Rock Odds */
.live-game-card {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.live-game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.live-indicator {
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.game-clock {
    color: #ff4444;
    font-weight: bold;
    font-size: 14px;
}

.live-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.team-score {
    text-align: center;
    flex: 1;
}

.team-score .team-name {
    color: white;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.team-score .score {
    color: #00ff88;
    font-size: 28px;
    font-weight: bold;
}

.vs {
    color: #ccc;
    font-size: 16px;
    margin: 0 15px;
}

/* Hard Rock Odds Styling */
.hard-rock-odds {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    border: 1px solid #ff6b35;
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
}

.odds-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.sportsbook-name {
    color: #ff6b35;
    font-weight: bold;
    font-size: 14px;
}

.live-betting-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.betting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.line-type {
    color: white;
    font-weight: bold;
    font-size: 13px;
    min-width: 70px;
}

.line-options {
    display: flex;
    gap: 8px;
    flex: 1;
    justify-content: flex-end;
}

.bet-btn {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #ff6b35;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 70px;
}

.bet-btn:hover {
    background: rgba(255, 107, 53, 0.3);
    border-color: #ff8c66;
    transform: translateY(-1px);
}

.odds-disclaimer {
    margin-top: 12px;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.odds-disclaimer small {
    color: #ccc;
    font-size: 10px;
}

/* No Live Games Message */
.no-live-games {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-live-games h3 {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 18px;
}

.no-live-games p {
    color: #999;
    font-size: 14px;
}

/* Responsive Design for Live Games */
@media (max-width: 768px) {
    .live-score {
        flex-direction: column;
        gap: 15px;
        padding: 12px;
    }
    
    .team-score .score {
        font-size: 24px;
    }
    
    .betting-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .line-options {
        justify-content: stretch;
    }
    
    .bet-btn {
        flex: 1;
        min-width: auto;
    }
}

/* NFL Betting Edge Styles */
.betting-edge-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.betting-edge-header h2 {
    color: #00ff88;
    margin-bottom: 8px;
    font-size: 24px;
}

.betting-edge-header p {
    color: #ccc;
    margin: 0;
    font-size: 14px;
}

.betting-games-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.betting-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.betting-card.live {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.betting-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.betting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.betting-header .matchup {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.live-badge {
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.scheduled-badge {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.betting-lines {
    margin-bottom: 20px;
}

.line-section {
    margin-bottom: 15px;
}

.line-type {
    color: #00ff88;
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 8px;
}

.line-options {
    display: flex;
    gap: 8px;
}

.odds-btn {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.odds-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: translateY(-1px);
}

.odds-btn .odds {
    display: block;
    color: #00ff88;
    font-size: 14px;
    margin-top: 4px;
}

.betting-edge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
}

.edge-indicator {
    font-size: 12px;
    font-weight: bold;
}

.edge-indicator.high {
    color: #00ff88;
}

.edge-indicator.medium {
    color: #ffcc00;
}

.edge-indicator.low {
    color: #ff6666;
}

.best-bet {
    color: #ccc;
    font-size: 12px;
}

.betting-timestamp {
    text-align: center;
    color: #888;
    font-size: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile responsive for betting cards */
@media (max-width: 768px) {
    .betting-games-grid {
        grid-template-columns: 1fr;
    }
    
    .line-options {
        flex-direction: column;
    }
    
    .odds-btn {
        margin-bottom: 5px;
    }
    
    .betting-edge {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Advanced Analytics Styles */
.analytics-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.analytics-header h2 {
    color: #00ff88;
    margin-bottom: 8px;
    font-size: 24px;
}

.analytics-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 40px;
}

.analytics-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.analytics-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-header h3 {
    color: white;
    font-size: 18px;
    margin: 0;
}

.team-rating {
    padding: 5px 12px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 14px;
}

.team-rating.a { background: #00ff88; color: black; }
.team-rating.b { background: #ffcc00; color: black; }
.team-rating.c { background: #ff8800; color: white; }
.team-rating.d { background: #ff4444; color: white; }

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

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.stat-label {
    color: #ccc;
    font-size: 12px;
}

.stat-value {
    color: white;
    font-weight: bold;
}

.stat-value.positive {
    color: #00ff88;
}

.stat-value.negative {
    color: #ff6666;
}

.advanced-metrics {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    padding: 15px;
}

.advanced-metrics h4 {
    color: #00ff88;
    margin-bottom: 10px;
    font-size: 14px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
    color: #ccc;
}

.game-analytics {
    margin-top: 40px;
}

.game-analytics h2 {
    color: #00ff88;
    text-align: center;
    margin-bottom: 25px;
}

.game-analytics-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.game-analytics-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
}

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

.matchup-header h3 {
    color: white;
    margin: 0;
    font-size: 16px;
}

.win-prob {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.win-prob.favorite {
    background: #00ff88;
    color: black;
}

.win-prob.underdog {
    background: #ff6666;
    color: white;
}

.analytics-comparison {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.team-analytics {
    flex: 1;
    text-align: center;
}

.team-analytics h4 {
    color: #00ff88;
    margin-bottom: 10px;
    font-size: 14px;
}

.analytics-stats div {
    margin-bottom: 5px;
    font-size: 12px;
    color: #ccc;
}

.vs-separator {
    color: #00ff88;
    font-weight: bold;
    font-size: 16px;
}

.key-factors {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    padding: 15px;
}

.key-factors h4 {
    color: #00ff88;
    margin-bottom: 10px;
    font-size: 14px;
}

.key-factors ul {
    margin: 0;
    padding-left: 15px;
}

.key-factors li {
    color: #ccc;
    font-size: 12px;
    margin-bottom: 5px;
}

/* ML Picks Styles */
.ml-picks-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.ml-picks-header {
    text-align: center;
    margin-bottom: 25px;
}

.ml-picks-header h2 {
    color: #00ff88;
    margin-bottom: 8px;
    font-size: 24px;
}

.ml-picks-header p {
    color: #ccc;
    margin: 0;
}

.ml-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
    margin-bottom: 25px;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-group label {
    color: #00ff88;
    font-weight: bold;
    font-size: 14px;
}

.ml-select {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.ml-select:focus {
    border-color: #00ff88;
    outline: none;
}

.run-ml-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border: none;
    color: black;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: center;
    transition: all 0.3s ease;
}

.run-ml-btn:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
}

.ml-results {
    min-height: 200px;
}

.ml-placeholder {
    text-align: center;
    padding: 40px 20px;
    color: #ccc;
}

.ml-placeholder i {
    font-size: 48px;
    color: #00ff88;
    margin-bottom: 15px;
}

.ml-loading {
    text-align: center;
    padding: 40px 20px;
}

.ml-loading h3 {
    color: #00ff88;
    margin-bottom: 10px;
}

.ml-results-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
}

.ml-results-header h3 {
    color: #00ff88;
    margin-bottom: 8px;
}

.results-summary {
    color: #ccc;
    font-size: 14px;
}

.ml-results-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ml-result-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.ml-result-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

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

.result-header h4 {
    color: white;
    margin: 0;
    font-size: 16px;
}

.confidence-badge {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.confidence-badge.high {
    background: #00ff88;
    color: black;
}

.confidence-badge.medium {
    background: #ffcc00;
    color: black;
}

.confidence-badge.low {
    background: #ff6666;
    color: white;
}

.result-prediction {
    margin-bottom: 15px;
    text-align: center;
}

.prediction-type {
    color: #ccc;
    font-size: 12px;
    margin-bottom: 5px;
}

.prediction-value {
    color: #00ff88;
    font-size: 18px;
    font-weight: bold;
}

.result-edge {
    text-align: center;
    margin-bottom: 15px;
}

.edge-indicator {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.edge-indicator.high {
    background: #00ff88;
    color: black;
}

.edge-indicator.medium {
    background: #ffcc00;
    color: black;
}

.edge-indicator.low {
    background: #ff6666;
    color: white;
}

.result-factors {
    margin-bottom: 15px;
}

.result-factors h5 {
    color: #00ff88;
    margin-bottom: 8px;
    font-size: 12px;
}

.result-factors ul {
    margin: 0;
    padding-left: 15px;
}

.result-factors li {
    color: #ccc;
    font-size: 11px;
    margin-bottom: 3px;
}

.result-recommendation {
    background: rgba(0, 255, 136, 0.1);
    padding: 10px;
    border-radius: 8px;
    color: #ccc;
    font-size: 12px;
    text-align: center;
}

.ml-disclaimer {
    text-align: center;
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.ml-no-results {
    text-align: center;
    padding: 40px 20px;
    color: #ccc;
}

.ml-no-results i {
    font-size: 48px;
    color: #ffcc00;
    margin-bottom: 15px;
}

/* Mobile responsive for analytics and ML picks */
@media (max-width: 768px) {
    .analytics-grid,
    .game-analytics-grid,
    .ml-results-grid {
        grid-template-columns: 1fr;
    }
    
    .ml-controls {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-comparison {
        flex-direction: column;
        gap: 15px;
    }
    
    .vs-separator {
        transform: rotate(90deg);
    }
}

/* NFL News Styles */
.news-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

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

.news-source {
    color: #00ff88;
    font-size: 10px;
    font-weight: bold;
    margin-left: 8px;
    opacity: 0.8;
}

.news-category {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.news-category.breaking-news { background: #ff4444; color: white; }
.news-category.team-news { background: #0066ff; color: white; }
.news-category.fantasy { background: #00ff88; color: black; }
.news-category.injuries { background: #ff6600; color: white; }
.news-category.betting { background: #ffcc00; color: black; }
.news-category.weather { background: #6666ff; color: white; }

.news-time {
    color: #888;
    font-size: 12px;
}

.news-title {
    color: white;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

.news-summary {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.news-actions {
    display: flex;
    gap: 10px;
}

.read-more-btn, .share-btn {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.read-more-btn:hover, .share-btn:hover {
    background: rgba(0, 255, 136, 0.3);
}

/* NFL Fantasy Styles */
.fantasy-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.fantasy-header h2 {
    color: #00ff88;
    margin-bottom: 8px;
    font-size: 24px;
}

.fantasy-sections {
    display: grid;
    gap: 30px;
}

.fantasy-section h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.fantasy-players {
    display: grid;
    gap: 15px;
}

.fantasy-player {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.fantasy-player.must-start {
    border-left: 4px solid #00ff88;
}

.fantasy-player.sleeper {
    border-left: 4px solid #ffcc00;
}

.fantasy-player.avoid {
    border-left: 4px solid #ff4444;
}

.fantasy-player:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 136, 0.5);
}

.player-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.player-name {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.player-position {
    color: #ccc;
    font-size: 12px;
    margin-top: 2px;
}

.player-projection {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.projected-points {
    color: #00ff88;
    font-weight: bold;
    font-size: 14px;
}

.matchup-rating {
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: bold;
}

.matchup-rating.elite {
    background: #00ff88;
    color: black;
}

.matchup-rating.great {
    background: #66ff99;
    color: black;
}

.matchup-rating.difficult {
    background: #ff4444;
    color: white;
}

.ownership {
    color: #ffcc00;
    font-size: 12px;
    font-weight: bold;
}

.player-reasoning {
    color: #ccc;
    font-size: 13px;
    line-height: 1.4;
    padding: 8px;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 6px;
}

/* Desktop Layout Fixes */
@media (min-width: 769px) {
    .app-container {
        padding: 40px !important;
        margin-top: 100px !important;
        max-width: 1400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .view {
        padding: 20px 0 !important;
    }
    
    .view-header {
        margin-bottom: 30px !important;
        padding-bottom: 20px !important;
        border-bottom: 1px solid rgba(0, 255, 136, 0.2) !important;
    }
    
    .section-card {
        margin-bottom: 30px !important;
        padding: 30px !important;
    }
    
    .metrics-grid {
        margin-bottom: 40px !important;
    }
    
    /* Better navigation styling on desktop */
    .nav-link {
        transition: all 0.3s ease !important;
        border-radius: 8px !important;
        padding: 8px 16px !important;
        cursor: pointer !important;
    }
    
    .nav-link:hover {
        background: rgba(0, 255, 136, 0.1) !important;
        color: #00ff88 !important;
    }
    
    .nav-link.active {
        background: rgba(0, 255, 136, 0.2) !important;
        color: #00ff88 !important;
    }
    
    /* Better spacing for game cards */
    .games-grid {
        gap: 25px !important;
        padding: 20px 0 !important;
    }
    
    .game-card {
        padding: 25px !important;
    }
}

/* Mobile responsive for news and fantasy */
@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .news-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .read-more-btn, .share-btn {
        text-align: center;
    }
    
    .player-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .player-projection {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* HardRock Odds Widget Styling - Enhanced Visibility */
.live-odds-section {
    margin: 2rem 0;
}

.section-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 255, 136, 0.6);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 255, 136, 0.4);
    padding-bottom: 1rem;
}

.section-header h2 {
    color: #00ff88;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes blink {
    0%, 50% { opacity: 1; transform: scale(1); }
    51%, 100% { opacity: 0.4; transform: scale(0.8); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 68, 68, 0.5); }
}

.odds-widget-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.odds-widget {
    width: 100%;
    max-width: 600px;
    height: 450px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    filter: brightness(1.1) contrast(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.odds-widget.ncaa-widget {
    border: 3px solid rgba(0, 102, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

.odds-widget.nfl-widget {
    border: 3px solid rgba(0, 255, 136, 0.8);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.widget-info {
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid rgba(0, 255, 136, 0.4);
    border-radius: 10px;
    padding: 1.2rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(5px);
}

.widget-info p {
    margin: 0.6rem 0;
    color: #ffffff;
    line-height: 1.5;
    font-weight: 500;
}

.widget-info strong {
    color: #00ff88;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

/* AI Betting Section */
.ai-betting-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
}

.ai-betting-section .section-header {
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.ai-betting-section .section-header h2 {
    color: #8A2BE2;
}

/* Live AI/ML Picks Styling */
.live-picks-section {
    margin-top: 1.5rem;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    padding: 1rem;
}

.live-picks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    padding-bottom: 0.5rem;
}

.live-picks-header h4 {
    color: #8A2BE2;
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.picks-timestamp {
    color: #ccc;
    font-size: 0.8rem;
}

.live-picks-grid {
    display: grid;
    gap: 0.8rem;
}

.live-pick-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 8px;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.live-pick-card:hover {
    border-color: #8A2BE2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.2);
}

.pick-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.pick-type {
    color: #8A2BE2;
    font-weight: bold;
    font-size: 0.85rem;
}

.confidence-badge {
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
}

.confidence-badge.high {
    background: #00ff88;
    color: black;
}

.confidence-badge.medium {
    background: #ffcc00;
    color: black;
}

.confidence-badge.low {
    background: #ff6666;
    color: white;
}

.pick-recommendation {
    margin-bottom: 0.5rem;
}

.pick-selection {
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.pick-line {
    color: #8A2BE2;
    font-size: 0.9rem;
    margin-left: 0.3rem;
}

.pick-projection {
    color: #ccc;
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

.pick-reasoning {
    color: #ccc;
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
}

.pick-reasoning i {
    color: #8A2BE2;
    margin-top: 0.1rem;
}

.pick-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}

.value-indicator {
    padding: 1px 4px;
    border-radius: 6px;
    font-weight: bold;
}

.value-indicator.high-value {
    background: #00ff88;
    color: black;
}

.value-indicator.medium-value {
    background: #ffcc00;
    color: black;
}

.value-indicator.low-value {
    background: #ff6666;
    color: white;
}

.pick-time {
    color: #888;
}

.picks-disclaimer {
    margin-top: 0.8rem;
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.picks-disclaimer small {
    color: #aaa;
    font-size: 0.7rem;
}

/* Game Analysis Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: #1a1a1a;
    border: 2px solid #00ff88;
    border-radius: 15px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
}

.modal-title {
    color: #00ff88;
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff6b6b;
}

.modal-body {
    padding: 1.5rem;
    color: white;
}

.game-analysis-content {
    max-width: 600px;
}

.analysis-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.analysis-header h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.current-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.game-status {
    color: #ff4444;
    font-size: 1rem;
    margin-left: 1rem;
}

.game-state-analysis, .momentum-analysis, .current-picks {
    margin-bottom: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 10px;
    padding: 1rem;
}

.game-state-analysis h4, .momentum-analysis h4, .current-picks h4 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.state-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

.metric label {
    color: #ccc;
    font-size: 0.9rem;
}

.metric .value {
    color: white;
    font-weight: bold;
}

.value.critical { color: #ff4444; }
.value.late { color: #ffcc00; }
.value.mid { color: #00ff88; }
.value.early { color: #66ccff; }
.value.yes { color: #00ff88; }
.value.no { color: #ff6666; }

.momentum-indicator {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.momentum-indicator.home {
    border-left: 4px solid #00ff88;
}

.momentum-indicator.away {
    border-left: 4px solid #0066ff;
}

.momentum-indicator .direction {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.momentum-indicator .strength, .momentum-indicator .confidence {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.picks-list {
    display: grid;
    gap: 1rem;
}

/* Game Action Buttons */
.game-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-analysis, .btn-betting {
    flex: 1;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.btn-analysis:hover, .btn-betting:hover {
    background: rgba(0, 255, 136, 0.3);
    transform: translateY(-1px);
}

.btn-betting {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8A2BE2;
    color: #8A2BE2;
}

.btn-betting:hover {
    background: rgba(138, 43, 226, 0.3);
}

/* Mobile Responsiveness for Live Picks */
@media (max-width: 768px) {
    .live-picks-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .pick-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .pick-value {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .state-metrics {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 95%;
        margin: 1rem;
    }
    
    .modal-header, .modal-body {
        padding: 1rem;
    }
    
    .game-actions {
        flex-direction: column;
    }
}

/* Mobile Responsiveness for Odds Widgets */
@media (max-width: 768px) {
    .odds-widget-container {
        margin: 1rem -1rem;
    }
    
    .odds-widget {
        height: 350px;
        max-width: 100%;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .live-indicator {
        align-self: flex-end;
    }
    
    .section-card {
        padding: 1rem;
    }
}

/* Enhanced NCAA Momentum and Visual Styles */

/* Enhanced Momentum Display */
.momentum-display {
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.momentum-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4444, #00ff88, #0066ff);
    animation: momentum-pulse 3s ease-in-out infinite;
}

@keyframes momentum-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

.momentum-team {
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px currentColor;
    animation: team-glow 2s ease-in-out infinite alternate;
}

@keyframes team-glow {
    from { text-shadow: 0 0 5px currentColor; }
    to { text-shadow: 0 0 15px currentColor, 0 0 25px currentColor; }
}

.momentum-team.home {
    color: #00ff88;
}

.momentum-team.away {
    color: #0066ff;
}

.momentum-vs {
    font-size: 1rem;
    color: #ffcc00;
    font-weight: bold;
}

.momentum-visual {
    position: relative;
    margin: 20px 0;
}

.strength-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.team-indicator {
    min-width: 80px;
    font-weight: bold;
    font-size: 0.9rem;
}

.team-indicator.home { color: #00ff88; }
.team-indicator.away { color: #0066ff; }

.strength-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.strength-fill {
    height: 100%;
    border-radius: 6px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.strength-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px 6px 0 0;
}

.strength-fill.high {
    background: linear-gradient(90deg, #00ff88, #00cc70);
    box-shadow: 0 0 10px #00ff88;
}

.strength-fill.medium {
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    box-shadow: 0 0 8px #ffcc00;
}

.strength-fill.low {
    background: linear-gradient(90deg, #666, #999);
    box-shadow: 0 0 5px #666;
}

.momentum-percentage {
    min-width: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
}

.momentum-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.momentum-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.stat-label {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
}

.momentum-reason {
    font-size: 0.95rem;
    color: #ccc;
    margin-top: 15px;
    padding: 10px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 8px;
    border-left: 3px solid #00ff88;
    text-align: left;
}

/* Enhanced Recent Plays */
.plays-list {
    max-height: 140px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plays-list::-webkit-scrollbar {
    width: 6px;
}

.plays-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.plays-list::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 3px;
}

.play-item {
    display: flex;
    align-items: center;
    margin: 8px 0;
    padding: 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.play-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.play-item.positive {
    border-left-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.play-item.negative {
    border-left-color: #ff6666;
    background: rgba(255, 102, 102, 0.1);
}

.play-item.neutral {
    border-left-color: #ffcc00;
    background: rgba(255, 204, 0, 0.1);
}

.play-team {
    font-weight: bold;
    min-width: 70px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-align: center;
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.play-desc {
    flex: 1;
    font-size: 0.9rem;
    margin-left: 12px;
    line-height: 1.4;
}

.play-yards {
    min-width: 50px;
    font-weight: bold;
    text-align: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.play-yards.positive {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.2);
}

.play-yards.negative {
    color: #ff6666;
    background: rgba(255, 102, 102, 0.2);
}

.play-yards.neutral {
    color: #ffcc00;
    background: rgba(255, 204, 0, 0.2);
}