@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Titillium+Web:wght@400;600;700;900&display=swap');

:root {
    /* Superhero Color Palette */
    --primary-hero: #FF0055;
    --primary-hero-dark: #CC0044;
    --secondary-hero: #00D4FF;
    --secondary-hero-dark: #00A8CC;
    --accent-gold: #FFD700;
    --accent-purple: #9D00FF;
    --dark-bg: #0A0E27;
    --darker-bg: #050814;
    --light-bg: #F5F7FB;
    --light-surface: #FFFFFF;
    --light-surface-2: #E9EFF9;
    --light-text: #0A0E27;
    --light-text-muted: #4A5670;
    --light-lines: rgba(13, 18, 42, 0.08);
    --hero-gradient: linear-gradient(135deg, #FF0055 0%, #9D00FF 100%);
    --energy-gradient: linear-gradient(135deg, #00D4FF 0%, #0080FF 100%);
    --power-gradient: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    --text-light: #FFFFFF;
    --text-muted: #B8C5D6;
    --shadow-glow: 0 0 20px rgba(255, 0, 85, 0.3);
    --shadow-glow-blue: 0 0 20px rgba(0, 212, 255, 0.3);
}

:root[data-theme='light'] {
    --accent-gold: #c48a00;
    --shadow-glow: 0 0 14px rgba(255, 0, 85, 0.2);
    --shadow-glow-blue: 0 0 14px rgba(0, 212, 255, 0.18);
    --bg-current: var(--light-bg);
    --surface-current: var(--light-surface);
    --surface-current-2: var(--light-surface-2);
    --text-current: var(--light-text);
    --text-muted-current: var(--light-text-muted);
    --border-current: var(--light-lines);
    --nav-surface: linear-gradient(135deg, rgba(245, 247, 251, 0.95), rgba(255, 255, 255, 0.95));
    --nav-border: rgba(13, 18, 42, 0.08);
    --paper-surface: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(233, 239, 249, 0.96));
    --paper-border: rgba(13, 18, 42, 0.08);
    --table-head-bg: rgba(233, 239, 249, 0.8);
    --table-row-alt: rgba(13, 18, 42, 0.04);
    --table-row-hover: rgba(0, 212, 255, 0.08);
    --dialog-surface: rgba(255, 255, 255, 0.94);
}

:root[data-theme='dark'],
:root:not([data-theme]) {
    --accent-gold: #FFD700;
    --bg-current: var(--darker-bg);
    --surface-current: #0D122A;
    --surface-current-2: #0A0E27;
    --text-current: var(--text-light);
    --text-muted-current: var(--text-muted);
    --border-current: rgba(157, 0, 255, 0.2);
    --nav-surface: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 10, 46, 0.95));
    --nav-border: rgba(157, 0, 255, 0.3);
    --paper-surface: linear-gradient(145deg, rgba(13, 18, 42, 0.7), rgba(10, 14, 39, 0.85));
    --paper-border: rgba(157, 0, 255, 0.15);
    --table-head-bg: rgba(0, 0, 0, 0.4);
    --table-row-alt: rgba(0, 0, 0, 0.2);
    --table-row-hover: rgba(157, 0, 255, 0.1);
    --dialog-surface: rgba(10, 14, 39, 0.85);
}

html, body {
    font-family: 'Titillium Web', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-current);
    background-image:
        radial-gradient(at 0% 0%, rgba(255, 0, 85, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(157, 0, 255, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(0, 212, 255, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-current);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
}

a, .btn-link {
    color: var(--secondary-hero);
    transition: all 0.3s ease;
}

a:hover, .btn-link:hover {
    color: var(--accent-gold);
    text-shadow: var(--shadow-glow-blue);
}

.btn-primary {
    color: var(--text-light);
    background: var(--hero-gradient);
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 0, 85, 0.6);
    border-color: var(--accent-gold);
}

.btn-secondary {
    color: var(--text-light);
    background: var(--energy-gradient);
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow-blue);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    border-color: var(--accent-gold);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem var(--darker-bg), 0 0 0 0.25rem var(--secondary-hero);
}

.content {
    padding-top: 1.1rem;
    background-color: var(--bg-current);
    min-height: calc(100vh - 3.5rem);
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 2px solid var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.invalid {
    outline: 2px solid var(--primary-hero);
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.3);
}

.validation-message {
    color: var(--primary-hero);
    font-weight: 600;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.5);
}

.blazor-error-boundary {
    background: linear-gradient(135deg, var(--primary-hero) 0%, var(--accent-purple) 100%);
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
    border: 2px solid var(--accent-gold);
    border-radius: 8px;
    box-shadow: var(--shadow-glow);
}

.blazor-error-boundary::after {
    content: "? SYSTEM ERROR DETECTED ?";
    font-family: 'Bangers', cursive;
    letter-spacing: 2px;
}

.darker-border-checkbox.form-check-input {
    border-color: var(--text-muted);
}

/* Card Styles */

.card {
    background: linear-gradient(145deg, rgba(13, 18, 42, 0.7), rgba(10, 14, 39, 0.8));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-current);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

:root[data-theme='light'] .card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(233, 239, 249, 0.9));
    box-shadow: 0 8px 28px 0 rgba(13, 18, 42, 0.08);
}

.card:hover {
    border-color: var(--secondary-hero);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-6px) scale(1.02);
}

/* Form Controls */
.form-control {
    background-color: rgba(13, 18, 42, 0.6);
    border: 2px solid var(--border-current);
    color: var(--text-current);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: rgba(13, 18, 42, 0.8);
    border-color: var(--secondary-hero);
    color: var(--text-current);
    box-shadow: var(--shadow-glow-blue);
}

:root[data-theme='light'] .form-control {
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--light-lines);
}

:root[data-theme='light'] .form-control:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 0.1rem var(--light-bg), 0 0 0 0.25rem var(--secondary-hero);
}

.form-control::placeholder {
    color: var(--text-muted-current);
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: 2px solid;
    font-weight: 600;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.2), rgba(157, 0, 255, 0.2));
    border-color: var(--primary-hero);
    color: var(--text-light);
}

.alert-success {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 128, 255, 0.2));
    border-color: var(--secondary-hero);
    color: var(--text-light);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-current);
}

::-webkit-scrollbar-thumb {
    background: var(--hero-gradient);
    border-radius: 6px;
    border: 2px solid var(--bg-current);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--energy-gradient);
}

/* Loading Spinner */
.spinner-border {
    border-color: var(--secondary-hero);
    border-right-color: transparent;
}

/* Page Transitions */
@keyframes heroEntry {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-enter {
    animation: heroEntry 0.5s ease-out;
}

/* ========================================
   MATCHUP DETAIL PAGE STYLES
   ======================================== */

.matchup-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
    min-height: 100vh;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.matchup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.matchup-header .header-content h1 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 8px 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-hero);
    text-shadow: var(--shadow-glow);
}

.matchup-header .header-actions {
    display: flex;
    gap: 12px;
}

.score-summary {
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--paper-surface) !important;
    border: 2px solid var(--paper-border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.team-summary {
    text-align: center;
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.team-name {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--secondary-hero);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-score {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Bangers', cursive;
    text-shadow: 0 0 20px currentColor;
}

.winner-banner,
.tie-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.05));
    border-radius: 8px;
    border: 2px solid var(--accent-gold);
}

.winner-banner .mud-icon-root {
    color: var(--accent-gold);
    filter: drop-shadow(0 0 10px var(--accent-gold));
}

.winner-banner .mud-typography {
    color: var(--accent-gold);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tie-banner {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 150, 255, 0.05));
    border-color: var(--secondary-hero);
}

.tie-banner .mud-icon-root {
    color: var(--secondary-hero);
}

.tie-banner .mud-typography {
    color: var(--secondary-hero);
    font-family: 'Bangers', cursive;
}

.player-comparison {
    padding: 2rem;
    background: var(--paper-surface) !important;
    border: 2px solid var(--paper-border);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-current);
}

.section-header .mud-typography {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-weight: 600;
    color: var(--secondary-hero);
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header .mud-icon-root {
    color: var(--secondary-hero);
}

/* MudTable dark theme overrides */
.mud-table {
    background-color: transparent !important;
    color: var(--text-current) !important;
}

.mud-table-container {
    background-color: transparent !important;
}

.mud-table-head {
    background-color: var(--table-head-bg) !important;
}

.mud-table-head .mud-table-cell {
    color: var(--secondary-hero) !important;
    background-color: transparent !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border-current) !important;
}

.mud-table-body {
    background-color: transparent !important;
}

.mud-table-row {
    background-color: transparent !important;
    transition: all 0.2s ease;
}

.mud-table-row:hover {
    background-color: var(--table-row-hover) !important;
}

.mud-table-row.mud-table-row-striped {
    background-color: var(--table-row-alt) !important;
}

.mud-table-row.mud-table-row-striped:hover {
    background-color: var(--table-row-hover) !important;
}

.mud-table-cell {
    color: var(--text-current) !important;
    background-color: transparent !important;
    border-bottom: 1px solid var(--border-current) !important;
    padding: 1rem 0.75rem !important;
}

.mud-table-foot {
    background-color: var(--table-head-bg) !important;
}

.mud-table-foot .mud-table-cell {
    color: var(--secondary-hero) !important;
    font-weight: 700;
    border-top: 2px solid var(--border-current) !important;
}

/* Position chips use MudBlazor Color property - don't override with global gradient */
.mud-chip {
    font-weight: 600;
}

.player-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.player-cell .mud-typography-body2 {
    color: var(--text-light);
    font-weight: 500;
}

.player-cell .mud-typography-caption {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.bench-summary {
    padding: 1.5rem;
    background: var(--surface-current-2);
    border-radius: 8px;
    border: 1px solid var(--border-current);
}

.bench-summary .mud-paper {
    background: var(--paper-surface) !important;
    border: 1px solid var(--paper-border) !important;
    border-radius: 8px !important;
}

.bench-summary .mud-typography-h6 {
    color: var(--secondary-hero);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bench-summary .mud-typography-body1 {
    color: var(--text-current);
}

.bench-summary .mud-typography-body1 strong {
    color: var(--accent-gold);
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
}

.bench-summary .mud-typography-caption {
    color: var(--text-muted);
}

.winning-score {
    color: var(--accent-gold);
    text-shadow: 0 0 20px var(--accent-gold);
}

.mud-icon-root.mud-success-text {
    color: #00b894 !important;
    filter: drop-shadow(0 0 4px #00b894);
}

.mud-icon-root.mud-default-text {
    color: var(--text-muted) !important;
}

/* Global MudBlazor component overrides */
/* Global MudBlazor component overrides */
.mud-paper {
    background: var(--paper-surface) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--paper-border) !important;
}

/* Glassmorphism for Dialogs */
.mud-dialog {
    backdrop-filter: blur(16px) !important;
    background: var(--dialog-surface) !important;
    border: 1px solid var(--primary-hero);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.2) !important;
}

@media (max-width: 960px) {
    .matchup-header {
        flex-direction: column;
    }

    .matchup-header .header-content,
    .matchup-header .header-actions {
        width: 100%;
    }

    .matchup-header .header-actions {
        justify-content: flex-end;
    }

    .score-summary {
        padding: 1.5rem;
    }

    .team-score {
        font-size: 2.5rem;
    }

    .player-comparison {
        padding: 1rem;
    }
}

@media (max-width: 600px) {
    .matchup-detail-container {
        padding: 1rem;
    }

    .matchup-header .header-content h1 {
        font-size: 1.5rem;
    }

    .team-score {
        font-size: 2rem;
    }

    .section-header .mud-typography {
        font-size: 1.2rem;
    }

    .bench-summary {
        padding: 1rem;
    }
}

/* ========================================
   SCHEDULE PAGE STYLES
   ======================================== */

.schedule-container {
    padding: 2rem;
    max-width: 1800px;
    margin: 0 auto;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.header-content h1 {
    color: var(--text-light);
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-description {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem;
}

.schedule-tabs {
    background: linear-gradient(145deg, rgba(13, 18, 42, 0.9), rgba(10, 14, 39, 0.95)) !important;
    border: 2px solid rgba(157, 0, 255, 0.3) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

.tab-content {
    padding: 1.5rem;
}

/* Week Selector */
.week-selector {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    padding: 1rem 0;
}

.week-selector::-webkit-scrollbar {
    height: 6px;
}

.week-selector::-webkit-scrollbar-track {
    background: rgba(10, 14, 39, 0.5);
}

.week-selector::-webkit-scrollbar-thumb {
    background: rgba(157, 0, 255, 0.5);
    border-radius: 3px;
}

/* Bracket Sections */
.bracket-section {
    background: linear-gradient(145deg, rgba(13, 18, 42, 0.6), rgba(10, 14, 39, 0.7)) !important;
    border: 2px solid rgba(157, 0, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin-bottom: 2rem;
}

.bracket-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(157, 0, 255, 0.2);
}

.bracket-header h5,
.bracket-header .mud-typography-h5 {
    font-family: 'Bangers', cursive;
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.playoff-round {
    margin-bottom: 2rem;
}

.playoff-round:last-child {
    margin-bottom: 0;
}

.round-title {
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
    margin-bottom: 1rem !important;
    text-transform: uppercase;
}

/* MudTabs Overrides */
.mud-tabs {
    background: transparent !important;
}

.mud-tabs-toolbar {
    background: rgba(0, 0, 0, 0.3) !important;
    border-bottom: 2px solid rgba(157, 0, 255, 0.2);
}

.mud-tab {
    color: var(--text-muted) !important;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mud-tab:hover {
    color: var(--text-light) !important;
    background: rgba(157, 0, 255, 0.1) !important;
}

.mud-tab.mud-tab-active {
    color: var(--secondary-hero) !important;
    background: rgba(0, 212, 255, 0.15) !important;
}

.mud-tab-slider {
    background: linear-gradient(90deg, var(--primary-hero), var(--secondary-hero)) !important;
    height: 3px !important;
}

.mud-tabs-panels {
    background: transparent !important;
}

/* MudButtonGroup for Week Selector */
.mud-button-group .mud-button-root {
    border-color: rgba(157, 0, 255, 0.3) !important;
    color: var(--text-muted) !important;
    background: rgba(13, 18, 42, 0.6) !important;
}

.mud-button-group .mud-button-root:hover {
    background: rgba(157, 0, 255, 0.2) !important;
    color: var(--text-light) !important;
    border-color: var(--secondary-hero) !important;
}

.mud-button-group .mud-button-filled {
    background: var(--energy-gradient) !important;
    color: var(--text-light) !important;
    border-color: var(--secondary-hero) !important;
    font-weight: 700;
}

/* Mobile Responsive - Schedule */
@media (max-width: 1024px) {
    .schedule-container {
        padding: 1rem;
    }

    .page-header {
        flex-direction: column;
        gap: 1rem;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .schedule-container {
        padding: 0.5rem;
    }

    .header-content h1 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tab-content {
        padding: 1rem;
    }

    .week-selector {
        justify-content: flex-start;
    }

    .bracket-section {
        padding: 1rem !important;
    }

    .bracket-header h5,
    .bracket-header .mud-typography-h5 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.25rem;
    }

    .page-description {
        font-size: 0.875rem;
    }
}

/* ========================================
   MATCHUP LIST COMPONENT STYLES
   ======================================== */

.matchup-list {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    gap: 1rem;
    color: var(--text-muted);
}

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

.matchup-list-header h6 {
    color: var(--text-light);
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin: 0;
}

.matchups-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.25rem;
}

.matchup-card {
    position: relative;
    background: linear-gradient(145deg, rgba(13, 18, 42, 0.95), rgba(10, 14, 39, 0.98)) !important;
    border: 2px solid rgba(157, 0, 255, 0.2) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
    overflow: visible !important;
}

.matchup-card.clickable {
    cursor: pointer;
}

.matchup-card:hover {
    border-color: var(--secondary-hero) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 212, 255, 0.2) !important;
    transform: translateY(-4px);
}

.matchup-card.my-matchup {
    border-color: rgba(255, 215, 0, 0.5) !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.matchup-card.my-matchup:hover {
    border-color: rgba(255, 215, 0, 0.8) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 215, 0, 0.3) !important;
}

.matchup-card.playoff-matchup {
    border-color: rgba(255, 165, 0, 0.4) !important;
}

.matchup-card.playoff-matchup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffa500, #ffd700);
    border-radius: 12px 12px 0 0;
}

.playoff-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    background: linear-gradient(135deg, #ffa500, #ffd700);
    color: #0d122a;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

.playoff-badge .mud-icon-root {
    font-size: 1rem;
}

.matchup-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem !important;
    background: transparent !important;
}

.team-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(157, 0, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.team-section.winner {
    background: rgba(0, 184, 148, 0.15);
    border-color: rgba(0, 184, 148, 0.4);
    box-shadow: 0 0 12px rgba(0, 184, 148, 0.2);
}

.team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.team-name {
    color: var(--text-light) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 !important;
}

.team-score {
    margin-top: 0.25rem;
}

.team-score h3,
.team-score .mud-typography-h3 {
    font-family: 'Bangers', cursive;
    margin: 0;
    font-size: 2.25rem !important;
    line-height: 1;
    text-shadow: 0 0 10px currentColor;
}

.matchup-vs {
    text-align: center;
    padding: 0.25rem 0;
}

.matchup-vs p,
.matchup-vs .mud-typography {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: var(--primary-hero);
}

.winner-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.winner-badge .mud-icon-root {
    font-size: 2rem;
    color: #00b894;
    filter: drop-shadow(0 0 8px #00b894);
}

.matchup-footer {
    padding: 0.75rem 1.25rem !important;
    border-top: 1px solid rgba(157, 0, 255, 0.1);
    background: rgba(0, 0, 0, 0.2) !important;
    justify-content: center;
}

/* Mobile Responsive - Matchup List */
@media (max-width: 768px) {
    .matchups-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .matchup-content {
        padding: 1rem !important;
    }

    .team-section {
        padding: 0.75rem;
    }

    .team-score h3,
    .team-score .mud-typography-h3 {
        font-size: 1.875rem !important;
    }
}

@media (max-width: 480px) {
    .matchup-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .team-name {
        font-size: 0.95rem !important;
    }

    .team-score h3,
    .team-score .mud-typography-h3 {
        font-size: 1.5rem !important;
    }
}
