.performance-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #444444;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.top-league-performance {
    margin: 26px 0 14px;
}

.top-league-performance .performance-card {
    margin-bottom: 0;
}

.performance-collapse-bar {
    appearance: none;
    display: grid;
    grid-template-columns: max-content minmax(520px, 1fr) max-content 18px;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-height: 78px;
    padding: 16px 20px 14px;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.performance-collapse-bar:hover .performance-collapse-icon,
.performance-collapse-bar:focus-visible .performance-collapse-icon {
    color: rgba(255, 255, 255, 0.78);
}

.performance-rollup-context {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
}

.performance-rollup-season {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 14px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.42);
}

.performance-collapse-bar .league-badge {
    justify-self: end;
    margin-top: 0;
}

.performance-rollup-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(max-content, 1fr));
    align-items: center;
    justify-content: stretch;
    column-gap: 22px;
    justify-self: stretch;
    min-width: 0;
    padding: 0 4px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.performance-rollup-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    white-space: nowrap;
}

.performance-rollup-label {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.performance-rollup-value {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    font-weight: 840;
    letter-spacing: 0.02em;
    line-height: 1;
}

.performance-rollup-value.positive {
    color: #22c55e;
}

.performance-rollup-value.negative {
    color: #ef4444;
}

.performance-rollup-value .wl-record,
.performance-rollup-value .roi-inline {
    display: inline-flex;
    align-items: center;
    align-self: center;
    min-height: 24px;
    font-size: 0.66rem;
    font-weight: 760;
    line-height: 1;
    margin-left: 0;
    transform: translateY(1px);
    vertical-align: middle;
}

@media (max-width: 1180px) {
    .performance-collapse-bar {
        grid-template-columns: max-content minmax(0, 1fr) max-content 18px;
    }

    .performance-rollup-metrics {
        grid-template-columns: repeat(2, minmax(max-content, 1fr));
        row-gap: 8px;
    }
}

@media (max-width: 760px) {
    .performance-collapse-bar {
        grid-template-columns: 1fr max-content 18px;
        gap: 12px;
    }

    .performance-rollup-context {
        grid-column: 1;
    }

    .performance-rollup-metrics {
        grid-column: 1 / -1;
        grid-row: 2;
        grid-template-columns: 1fr 1fr;
        justify-self: stretch;
    }
}

.performance-collapse-icon {
    display: block;
    width: 15px;
    height: 15px;
    color: rgba(255, 255, 255, 0.42);
    background: currentColor;
    justify-self: end;
    transform: rotate(0deg);
    transition: color 160ms ease, transform 160ms ease;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.performance-card.is-expanded .performance-collapse-icon {
    transform: rotate(180deg);
}

.performance-card.is-expanded .performance-collapse-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.performance-expanded-body {
    padding: 18px 20px 20px;
}

.performance-expanded-body[hidden] {
    display: none;
}

.performance-card .league-header {
    align-items: flex-start;
    gap: 18px;
    height: auto;
    margin-bottom: 20px;
}

.performance-title-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.performance-title-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.performance-scope-toggle {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 4px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.performance-scope-button {
    appearance: none;
    min-width: 118px;
    min-height: 32px;
    padding: 0 14px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font: inherit;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.performance-scope-button:hover {
    color: rgba(255, 255, 255, 0.78);
}

.performance-scope-button.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.performance-scope-button.is-static {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.performance-scope-panel[hidden] {
    display: none;
}

.top-league-performance .performance-scope-panel {
    min-height: 164px;
}

.scope-section {
    margin-bottom: 42px;
}

.scope-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 14px;
    padding: 0 4px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.scope-kicker {
    display: block;
    margin-bottom: 5px;
    color: #8fb3dd;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    line-height: 1.15;
    text-transform: uppercase;
}

.scope-section-header h2 {
    margin: 0;
    color: #f5f5f5;
    font-size: 1.02rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
}

.scope-meta {
    color: #777777;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.scope-section .performance-card {
    margin-bottom: 0;
}

.period-scope-section {
    padding-top: 2px;
}

.performance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #22c55e, #3b82f6);
}

.summary-card {
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 40px;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.performance-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
}

.performance-label {
    color: #666666;
    font-weight: var(--font-weight-standard);
    font-size: 0.8rem;
    text-transform: var(--text-transform-standard);
    letter-spacing: var(--letter-spacing-standard);
}

.performance-value {
    color: #ffffff;
    font-weight: 300;
    font-size: 1.2rem;
}

.summary-card h3 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-standard);
    text-transform: var(--text-transform-standard);
    letter-spacing: var(--letter-spacing-wide);
    opacity: 0.7;
}

.section-title {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-standard);
    text-transform: var(--text-transform-standard);
    letter-spacing: var(--letter-spacing-wide);
    opacity: 0.7;
}

.performance-card h3 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-standard);
    text-transform: var(--text-transform-standard);
    letter-spacing: var(--letter-spacing-wide);
    opacity: 0.7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.summary-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 24px 16px;
    margin-bottom: 12px;
}

.summary-table td {
    padding: 0;
    vertical-align: middle;
}

.summary-label {
    text-align: left;
    padding-right: 8px;
}

.summary-value {
    text-align: right;
    padding-left: 8px;
}

.summary-value.positive {
    color: #22c55e !important;
}

.summary-value.negative {
    color: #ef4444 !important;
}

.bankroll-performance.positive {
    color: #22c55e !important;
}

.bankroll-performance.negative {
    color: #ef4444 !important;
}

.bankroll-roi.positive {
    color: #22c55e !important;
}

.bankroll-roi.negative {
    color: #ef4444 !important;
}

.roi-inline {
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 8px;
    vertical-align: middle;
}

.roi-inline.positive {
    color: #22c55e !important;
}

.roi-inline.negative {
    color: #ef4444 !important;
}

.top-picks-row {
    border-top: 1px solid #333333;
    padding-top: 16px;
}

.top-picks-badge-cell {
    text-align: left;
}

.top-picks-badge-small {
    background: #f59e0b;
    color: #000000;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #f59e0b;
    display: inline-block;
}

.other-bets-badge-small {
    background: #6b7280;
    color: #ffffff;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #6b7280;
    display: inline-block;
}

.indented {
    margin-left: 16px;
}

.other-bets-row {
    border-top: 1px solid #333333;
    padding-top: 16px;
}

.other-bets-badge-cell {
    text-align: left;
}

.summary-table tr:first-child {
    position: relative;
}

.summary-table tr:first-child::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #666666;
}

.summary-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
}

.summary-label {
    color: #666666;
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.summary-value {
    color: #ffffff;
    font-weight: 300;
    font-size: 1.2rem;
}

/* Weekly Summary Title Styles */
.weekly-summary-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.weekly-summary-left-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    color: #ffffff;
}

.recommendations-title {
    margin: 0 0 24px 0;
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    color: #ffffff;
}

/* Game Meta Information */
.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    gap: 12px;
}

.game-type-badges {
    display: flex;
    gap: 6px;
    align-items: center;
}

.game-type-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.game-type-badge:hover {
    opacity: 1;
}

.game-type-badge.divisional {
    background-color: rgba(100, 149, 237, 0.2);
    color: #6495ed;
    border: 1px solid rgba(100, 149, 237, 0.3);
}

.game-type-badge.conference {
    background-color: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.game-time {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
}

.tv-network {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
}

/* Teams and Score Section */
.teams-and-score {
    margin-bottom: 16px;
}

.teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.away-team, .home-team {
    color: #ffffff;
}

.vs {
    color: #888888;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Professional Final Score Display */
.final-score {
    margin-top: 16px;
}

.scoreboard-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 12px 0;
    gap: 0;
    position: relative;
}

.scoreboard-badges {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 6px;
    align-items: center;
    z-index: 10;
}

.scoreboard-container > .h2h-record {
    order: 10; /* Ensure H2H appears after scoreboard-main-row */
    margin-top: 12px;
    clear: both; /* Force new line */
    flex: 0 0 auto; /* Don't flex, take natural size */
    align-self: stretch; /* Take full width of container */
    min-width: 100%; /* Ensure full width */
}

.scoreboard-container .score-venue + .scoreboard-main-row {
    margin-top: 0;
}

.scoreboard-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    flex-shrink: 0;
    flex: 0 0 auto; /* Don't grow or shrink */
}

.score-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 16px 18px;
    flex: 0 1 430px;
    width: min(100%, 430px);
    max-width: 430px;
    gap: 8px;
    margin: 0 auto;
}

.final-label {
    font-size: 0.7rem;
    color: #888888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0px;
}

.teams-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.team-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 0;
    min-height: 60px;
}

.team-score .team-name {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1;
    min-height: 2.5em;
    min-width: 0;
}

.team-score .score {
    order: 2;
    margin-top: auto;
}

.team-score .score-line {
    order: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: auto;
}

.team-score .score-line .score {
    order: initial;
    margin-top: 0;
}

.team-score .recommendation-shootout-score {
    gap: 5px;
    margin-left: 0;
    margin-bottom: 0;
}

.team-score .recommendation-shootout-score .shootout-label {
    font-size: 0.58rem;
}

.team-score .recommendation-shootout-score .shootout-pips {
    gap: 3px;
}

.team-score .recommendation-shootout-score .shootout-pip {
    width: 6px;
    height: 6px;
    border-radius: 1.5px;
}

/* When there's a score, make the layout more compact */
.team-score.has-score .team-info {
    gap: 1px;
}

.score-display .team-score.has-score {
    display: grid;
    grid-template-rows: 42px 24px 54px;
    align-items: center;
    justify-items: center;
    gap: 0;
    min-height: 120px;
}

.score-display .team-score.has-score .team-info,
.score-display .team-score.has-score .team-name {
    display: contents;
}

.score-display .team-score.has-score .team-logo-small {
    grid-row: 1;
    margin: 0;
    align-self: center;
}

.score-display .team-score.has-score .team-name-text {
    grid-row: 2;
    align-self: center;
}

.score-display .team-score.has-score .score-line {
    grid-row: 3;
    align-self: start;
    margin-top: 4px;
}

.team-score.has-score .team-name {
    gap: 1px;
}

.team-score.has-score .team-record {
    font-size: 0.6rem;
    margin-top: 1px;
}

.team-score.has-score .ap-ranking {
    font-size: 0.65rem;
}

.team-score.has-score .team-name-text {
    font-size: 0.7rem;
}

.score-display .team-name-text {
    min-height: 0;
    max-width: none;
    width: max-content;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.score-display .team-name-text.has-game-winner {
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scoreboard-winner-badge {
    display: inline-flex;
    position: absolute;
    left: calc(100% + 6px);
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 0.72rem;
    font-weight: var(--font-weight-standard);
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
    white-space: nowrap;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 5px rgba(250, 204, 21, 0.2));
}

.team-name {
    font-size: 0.8rem;
    color: #aaaaaa;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.score {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.score-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    gap: 4px;
    min-height: 60px;
}

.team-separator {
    font-size: 0.8rem;
    color: #aaaaaa;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.score-separator .score-separator {
    font-size: 0.7rem;
    color: #888888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.score-broadcast {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    width: 120px;
    flex-shrink: 0;
    min-width: 0;
}

.broadcast-emoji {
    font-size: 1.8rem;
}

.broadcast-text {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.score-weather {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    width: 120px;
    flex-shrink: 0;
}

.score-weather-emojis {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.score-weather-emoji {
    font-size: 1.8rem;
    line-height: 1;
}

.score-weather-temp {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.score-weather-wind {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Head-to-Head Record */
.h2h-record {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: #cccccc;
    margin-top: 12px;
    padding-top: 0;
    width: 100%;
    box-sizing: border-box;
    clear: both;
    flex: 0 0 auto;
}

.h2h-record > * {
    display: inline;
    margin: 0 3px;
    vertical-align: middle;
}

.h2h-label {
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.h2h-away,
.h2h-home {
    font-weight: 500;
    color: #ffffff;
}

.h2h-ties {
    color: #888888;
    font-style: italic;
}

.h2h-separator {
    color: #666666;
    margin: 0 2px;
}

.h2h-period {
    font-size: 0.75rem;
    color: #888888;
    margin-left: 4px;
    font-style: italic;
}

/* Venue Display - Centered above scoreboard */
.score-venue {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.venue-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.score-venue .venue-name,
.recommendation-card .venue-name {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.venue-separator {
    font-size: 0.85rem;
    color: #888888;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.score-venue .venue-location,
.recommendation-card .venue-location {
    font-size: 0.85rem;
    color: #cccccc;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.venue-coordinates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #999999;
    font-weight: 400;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.coord-icon {
    font-size: 0.85rem;
    line-height: 1;
}

.coord-text {
    font-size: 0.7rem;
}

/* Compact Weather Display in Header */
.weather-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(42, 42, 42, 0.4);
    border-radius: 4px;
    border: 1px solid #333333;
}

.weather-emoji-large {
    font-size: 1.2rem;
    line-height: 1;
}

.temperature-compact {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 500;
}

.wind-compact {
    font-size: 0.8rem;
    color: #cccccc;
    font-weight: 400;
}

.weekly-summary-right-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.weekly-summary-win-rate-label {
    color: #666666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.weekly-summary-win-rate-value {
    font-size: 1.2rem;
    font-weight: 300;
}

.weekly-summary-win-rate-value.positive {
    color: #4ade80;
}

.weekly-summary-win-rate-value.negative {
    color: #f87171;
}

.weekly-summary-win-rate-value.neutral {
    color: #ffffff;
}

.weekly-summary-win-rate-inline {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.weekly-summary-win-rate-inline.positive {
    color: #10b981;
}

.weekly-summary-win-rate-inline.negative {
    color: #f87171;
}

.weekly-summary-win-rate-inline.tbd {
    color: #9ca3af;
    font-style: italic;
}

/* CSS-based wind arrow for better reliability */
.wind-arrow-css {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 8px solid currentColor;
    margin-left: 4px;
    transform-origin: center;
}

.wind-arrow-unicode {
    font-size: 1.2em;
    margin-left: 4px;
}

/* Wager display styles */
.wager-amount {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.profit-small {
    font-size: 0.8rem;
    color: #4ade80;
    font-weight: 500;
    margin-left: 8px;
}

.loss-normal {
    font-size: 1rem;
    color: #f87171;
    font-weight: 600;
}

.push-indicator {
    font-size: 0.8rem;
    color: #fbbf24;
    font-weight: 500;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .summary-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
