/* NFL Schedule Page - Clean Slate */

/* Schedule-specific container */
.nfl-schedule-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Page header - schedule specific */
.schedule-page-header {
    margin-bottom: 2rem;
}

.schedule-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.schedule-page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Week selector - unique to schedule */
.schedule-week-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 0.75rem;
    overflow-x: auto;
}

.schedule-week-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.5rem;
}

.schedule-week-buttons {
    display: flex;
    gap: 0.5rem;
}

.schedule-week-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.schedule-week-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.schedule-week-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #000;
}

/* Stats bar */
.schedule-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.schedule-stat-box {
    background: var(--bg-card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.schedule-stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 184, 148, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.25rem;
}

.schedule-stat-content {
    flex: 1;
}

.schedule-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.schedule-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Date sections */
.schedule-date-group {
    margin-bottom: 3rem;
}

.schedule-date-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.schedule-date-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.schedule-date-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Game grid */
.schedule-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.25rem;
}

/* Game card - completely unique classes */
.schedule-game-card {
    background: var(--bg-card);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.schedule-game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Game header bar */
.schedule-game-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

.schedule-game-time-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-game-time {
    font-weight: 600;
    color: var(--text-primary);
}

.schedule-game-tv {
    color: var(--text-secondary);
    opacity: 0.7;
}

.schedule-game-badges {
    display: flex;
    gap: 0.5rem;
}

.schedule-game-badge {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.schedule-game-badge.primetime {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
}

.schedule-game-badge.division {
    background: rgba(0, 184, 148, 0.2);
    color: var(--primary-green);
}

/* Teams section - unique layout */
.schedule-teams-section {
    padding: 1.5rem;
}

.schedule-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.schedule-team:first-child {
    padding-top: 0;
}

.schedule-team:last-child {
    padding-bottom: 0;
}

.schedule-team-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.schedule-team-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.schedule-team-names {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.schedule-team-city {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.schedule-team-mascot {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.schedule-team-record {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.schedule-team-odds {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.schedule-team-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    min-width: 3rem;
    text-align: right;
}

.schedule-odds-box {
    text-align: center;
    min-width: 60px;
}

.schedule-odds-label {
    font-size: 0.625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    opacity: 0.7;
}

.schedule-odds-spread {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.schedule-odds-ml {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1;
}

/* Teams divider */
.schedule-teams-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color) 20%, var(--border-color) 80%, transparent);
    position: relative;
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-divider-text {
    position: absolute;
    background: var(--bg-card);
    padding: 0 0.75rem;
    font-size: 0.5625rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    opacity: 0.6;
}

/* Weather Row - Full width */
.schedule-weather-row {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.schedule-weather-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.schedule-weather-display i {
    font-size: 1rem;
    opacity: 0.7;
}

.schedule-weather-display.outdoor {
    color: var(--text-primary);
}

.schedule-weather-display.severe {
    color: #E74C3C;
}

.schedule-weather-display.moderate {
    color: #F39C12;
}

.weather-temp {
    font-weight: 600;
}

.weather-conditions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Game footer */
.schedule-game-footer {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.schedule-footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.schedule-total-badge {
    background: rgba(0, 184, 148, 0.1);
    color: var(--primary-green);
    padding: 0.375rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.9375rem;
}

.schedule-total-badge.high {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
}

.schedule-ballpark-name,
.schedule-arena-name {
    display: none; /* Hidden to prevent squishing */
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.schedule-ballpark-name i,
.schedule-arena-name i {
    margin-right: 0.25rem;
    font-size: 0.625rem;
}

.schedule-b2b-indicator {
    font-size: 0.75rem;
    color: #F39C12;
    background: rgba(243, 156, 18, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-transform: uppercase;
}

.schedule-b2b-indicator i {
    margin-right: 0.25rem;
    font-size: 0.625rem;
}

.schedule-game-buttons {
    display: flex;
    gap: 0.5rem;
}

.schedule-game-btn {
    padding: 0.375rem 0.875rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.schedule-game-btn:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #000;
}

.schedule-game-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
    .schedule-games-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-team-logo {
        width: 48px;
        height: 48px;
    }
    
    .schedule-team-city {
        font-size: 0.75rem;
    }
    
    .schedule-team-mascot {
        font-size: 1.125rem;
    }
    
    .schedule-team-odds {
        gap: 1.5rem;
    }
    
    .schedule-odds-spread {
        font-size: 1.125rem;
    }
}