/* NBA Dashboard Navigation */
.nba-dash-nav {
    background: var(--color-navy);
    border-bottom: 3px solid var(--color-gold);
    padding: 0.5rem 0;
}

.nba-dash-nav .nav-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.2s;
}

.nba-dash-nav .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nba-dash-nav .nav-link.active {
    color: var(--color-navy);
    background: var(--color-gold);
    font-weight: 600;
}

/* Hero short variant */
.hero--short { min-height: 280px; }
.hero--short .hero-content { padding-bottom: 5rem !important; }

/* Stat Cards */
.stat-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.stat-card__value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-card__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    font-weight: 600;
}

.stat-card__detail {
    font-size: 0.75rem;
    color: #adb5bd;
    margin-top: 0.25rem;
}

/* Conference Rankings Mini Table */
.rankings-mini .table {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.rankings-mini .table td,
.rankings-mini .table th {
    padding: 0.4rem 0.5rem;
}

.rankings-mini .rank-num {
    font-weight: 800;
    color: var(--color-navy);
    width: 30px;
}

/* Featured Game Card */
.featured-game {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.2s;
}

.featured-game:hover {
    transform: translateY(-2px);
}

.featured-game__header {
    background: var(--color-navy);
    color: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-game__body {
    padding: 1rem;
}

.featured-game__teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.featured-game__team {
    text-align: center;
    flex: 1;
}

.featured-game__abbr {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
}

.featured-game__name {
    font-size: 0.7rem;
    color: #6c757d;
}

.featured-game__vs {
    font-size: 0.8rem;
    color: #adb5bd;
    font-weight: 600;
}

.featured-game__prob {
    font-size: 0.85rem;
    font-weight: 700;
}

.featured-game__prob--pick {
    color: #198754;
}

/* Power Rankings Table */
.power-rankings-table .table {
    font-size: 0.85rem;
}

.power-rankings-table .rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.8rem;
}

.power-rankings-table .rank-badge--top3 {
    background: var(--color-gold);
    color: var(--color-navy);
}

.power-rankings-table .rank-badge--playoff {
    background: #e8f5e9;
    color: #2e7d32;
}

.power-rankings-table .rank-badge--playin {
    background: #fff3e0;
    color: #ef6c00;
}

.power-rankings-table .rank-badge--out {
    background: #fce4ec;
    color: #c62828;
}

/* Net Rating Bar */
.net-rating-bar {
    display: inline-block;
    height: 8px;
    border-radius: 4px;
    min-width: 4px;
    vertical-align: middle;
}

.net-rating-bar--positive { background: #198754; }
.net-rating-bar--negative { background: #dc3545; }

/* Playoff Odds */
.playoff-odds-bar {
    height: 24px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.playoff-odds-bar__fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.playoff-odds-bar__fill--clinched { background: #198754; }
.playoff-odds-bar__fill--high { background: #20c997; }
.playoff-odds-bar__fill--medium { background: #ffc107; }
.playoff-odds-bar__fill--low { background: #fd7e14; }
.playoff-odds-bar__fill--very-low { background: #dc3545; }

/* Team Comparison */
.compare-stat-row {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.compare-stat-label {
    flex: 0 0 100px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.compare-stat-value {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 50px;
}

.compare-stat-value--better { color: var(--color-gold); }

/* Accuracy Donut placeholder */
.accuracy-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 0.5rem;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-header__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0;
}

/* Mobile dropdown nav */
.nba-dash-dropdown-btn {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.25rem;
    width: 100%;
    max-width: 280px;
}

.nba-dash-dropdown-btn:hover,
.nba-dash-dropdown-btn:focus,
.nba-dash-dropdown-btn.show {
    color: #fff;
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
}

.nba-dash-dropdown-menu {
    width: 100%;
    max-width: 280px;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border-radius: 6px;
    padding: 0.35rem 0;
}

.nba-dash-dropdown-menu .dropdown-item {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.nba-dash-dropdown-menu .dropdown-item:active {
    background: var(--color-navy);
}

/* CTA Banner */
.dash-cta {
    padding: 0 0 2rem;
}

.dash-cta__card {
    background: var(--color-gold);
    border-radius: 10px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 16px rgba(245,166,35,0.25);
}

.dash-cta__icon {
    flex-shrink: 0;
    color: var(--color-navy);
    opacity: 0.7;
}

.dash-cta__text {
    flex: 1;
}

.dash-cta__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 0.25rem;
}

.dash-cta__desc {
    font-size: 0.85rem;
    color: rgba(30,58,95,0.75);
    margin: 0;
    line-height: 1.5;
}

.dash-cta__btn {
    flex-shrink: 0;
    background: var(--color-navy);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}

.dash-cta__btn:hover {
    background: #15304d;
    color: #fff;
    transform: translateY(-1px);
}

/* Recent Results Table */
.recent-results-table {
    font-size: 0.85rem;
}

.recent-results-table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    font-weight: 600;
    border-bottom: 2px solid var(--color-navy);
}

.recent-results-table td {
    vertical-align: middle;
    padding: 0.55rem 0.5rem;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.75rem;
}

.result-badge--correct {
    background: #e8f5e9;
    color: #2e7d32;
}

.result-badge--wrong {
    background: #fce4ec;
    color: #c62828;
}

/* Responsive */
@media (max-width: 767.98px) {
    .stat-card__value { font-size: 2rem; }
    .featured-game__abbr { font-size: 1.2rem; }
    .dash-cta__card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
}
