/* NFL.com Theme Colors and Styles */
:root {
    --nfl-blue: #013369;
    --nfl-red: #D50A0A;
    --nfl-white: #FFFFFF;
    --nfl-gray: #F5F5F5;
    --nfl-dark-gray: #333333;
    --nfl-light-gray: #E5E5E5;
    --nfl-green: #28A745;
    --nfl-yellow: #FFB612;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--nfl-gray);
    color: var(--nfl-dark-gray);
}

/* NFL Navbar */
.nfl-navbar {
    background: linear-gradient(to bottom, #013369, #002244);
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nfl-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}

.brand-text {
    color: var(--nfl-white);
    font-size: 1.5rem;
    font-weight: 900;
}

.nfl-navbar .nav-link {
    color: var(--nfl-white) !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nfl-navbar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Week Selector */
.week-selector {
    background-color: var(--nfl-red);
    color: var(--nfl-white);
    padding: 0.75rem 0;
}

/* Game Cards */
.game-card {
    background: var(--nfl-white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.game-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.game-header {
    background: linear-gradient(to right, var(--nfl-blue), #002244);
    color: var(--nfl-white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.team-row {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--nfl-light-gray);
}

.team-row:last-child {
    border-bottom: none;
}

.team-logo {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.team-info {
    flex-grow: 1;
}

.team-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.team-record {
    color: #666;
    font-size: 0.875rem;
}

.team-score {
    font-size: 1.5rem;
    font-weight: 900;
    min-width: 50px;
    text-align: center;
}

/* Pick Buttons */
.pick-btn {
    background: var(--nfl-white);
    border: 2px solid var(--nfl-blue);
    color: var(--nfl-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pick-btn:hover {
    background: var(--nfl-blue);
    color: var(--nfl-white);
}

.pick-btn.selected {
    background: var(--nfl-green);
    border-color: var(--nfl-green);
    color: var(--nfl-white);
}

/* Suicide Pool Styles */
.suicide-pool-container {
    background: var(--nfl-white);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.pool-header {
    background: linear-gradient(135deg, var(--nfl-red), #8B0000);
    color: var(--nfl-white);
    padding: 1.5rem;
    border-radius: 8px 8px 0 0;
    margin: -2rem -2rem 2rem -2rem;
}

.pool-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pool-description {
    font-size: 1rem;
    opacity: 0.95;
}

.elimination-warning {
    background: #FFF3CD;
    border-left: 4px solid var(--nfl-yellow);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.elimination-warning strong {
    color: #856404;
}

.eliminated-player {
    background: #F8D7DA;
    border-left: 4px solid var(--nfl-red);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    opacity: 0.8;
}

/* Standings Table */
.standings-table {
    background: var(--nfl-white);
    border-radius: 8px;
    overflow: hidden;
}

.standings-table thead {
    background: var(--nfl-blue);
    color: var(--nfl-white);
}

.standings-table th {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding: 1rem;
}

.standings-table tbody tr:hover {
    background: var(--nfl-gray);
}

.position-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
}

.position-1 { background: gold; color: var(--nfl-dark-gray); }
.position-2 { background: silver; color: var(--nfl-dark-gray); }
.position-3 { background: #CD7F32; color: var(--nfl-white); }

/* Player Stats */
.stat-card {
    background: var(--nfl-white);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--nfl-blue);
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}

/* Footer */
.nfl-footer {
    background: var(--nfl-dark-gray);
    color: var(--nfl-white);
    padding: 2rem 0;
    margin-top: 3rem;
}

.nfl-footer a {
    color: var(--nfl-light-gray);
    text-decoration: none;
}

.nfl-footer a:hover {
    color: var(--nfl-white);
}

/* Responsive */
@media (max-width: 768px) {
    .game-card {
        margin-bottom: 0.75rem;
    }
    
    .team-logo {
        width: 30px;
        height: 30px;
    }
    
    .team-name {
        font-size: 1rem;
    }
    
    .team-score {
        font-size: 1.25rem;
    }
}