/* Enhanced Fantasy Football UI Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #3182ce;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --danger-color: #e53e3e;
    --gold-color: #ffd700;
    --silver-color: #c0c0c0;
    --bronze-color: #cd7f32;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --bg-primary: #f7fafc;
    --bg-secondary: #edf2f7;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation; /* Improve touch responsiveness */
}

@keyframes closeButtonPulse {
    0%, 100% { 
        background: rgba(255, 0, 0, 0.8);
        transform: scale(1);
    }
    50% { 
        background: rgba(255, 0, 0, 1);
        transform: scale(1.02);
    }
}

@keyframes musicButtonPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
    }
}

@keyframes notificationSlide {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes notificationSlideOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-50px);
    }
}

/* Improve button and interactive element touch targets */
button, .nav-btn, .winner-nav-btn, .auto-play-btn, .close-championship-btn {
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Prevent text selection on interactive elements */
.championship-modal, .awards-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hero Header */
.hero-header {
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    min-height: 48px;
    touch-action: manipulation;
}

.nav-btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.tab-content {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    min-height: 600px;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Championship Cards */
.championship-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.champion-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.champion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold-color), var(--warning-color));
}

.champion-card.playoff-champion::before {
    background: linear-gradient(90deg, var(--gold-color), #ffd700);
}

.champion-card.regular-season-champion::before {
    background: linear-gradient(90deg, var(--success-color), #48bb78);
}

.champion-card.last-place::before {
    background: linear-gradient(90deg, var(--danger-color), #fc8181);
}

.champion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.champion-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.champion-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.champion-record, .champion-points {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

/* Quick Stats Grid */
.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.quick-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent-color);
    transition: all 0.3s ease;
}

.quick-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.quick-stat-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.quick-stat-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Standings Table */
.standings-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.standings-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-secondary);
}

.standings-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.standings-table-wrapper::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.standings-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.standings-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px; /* Ensure minimum width for proper display */
}

.standings-table th {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.standings-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.standings-table tbody tr:hover {
    background: var(--bg-primary);
    transform: scale(1.01);
}

.standings-table .rank-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-left: 5px solid var(--gold-color);
}

.standings-table .rank-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(192, 192, 192, 0.1));
    border-left: 5px solid var(--silver-color);
}

.standings-table .rank-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2), rgba(205, 127, 50, 0.1));
    border-left: 5px solid var(--bronze-color);
}

/* Analysis Grid */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.analysis-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent-color);
}

.analysis-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.matchup-list, .weekly-list, .performance-list {
    max-height: 400px;
    overflow-y: auto;
}

.matchup-item, .weekly-item, .performance-item {
    background: white;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.matchup-item:hover, .weekly-item:hover, .performance-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.award-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.award-card.gold::before {
    background: linear-gradient(90deg, var(--gold-color), #ffd700);
}

.award-card.silver::before {
    background: linear-gradient(90deg, var(--silver-color), #e5e5e5);
}

.award-card.bronze::before {
    background: linear-gradient(90deg, var(--bronze-color), #daa520);
}

.award-card.special::before {
    background: linear-gradient(90deg, var(--accent-color), #4299e1);
}

.award-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-card.gold .award-icon {
    color: var(--gold-color);
}

.award-card.silver .award-icon {
    color: var(--silver-color);
}

.award-card.bronze .award-icon {
    color: var(--bronze-color);
}

.award-card.special .award-icon {
    color: var(--accent-color);
}

.award-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.award-winner {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Fun Stats Section */
.fun-stats-section {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.fun-stats-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.fun-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.fun-stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

/* Historical Content */
.historical-content {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
}

.historical-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.historical-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-secondary);
}

.table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.historical-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure minimum width for proper display */
}

.historical-table th {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}

.historical-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.historical-table tbody tr:hover {
    background: var(--bg-primary);
}

/* Footer */
.main-footer {
    background: rgba(26, 54, 93, 0.95);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .tab-content {
        padding: 2rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .championship-cards {
        grid-template-columns: 1fr;
    }
    
    .quick-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Status Badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-champion {
    background: var(--gold-color);
    color: var(--primary-color);
}

.status-playoffs {
    background: var(--success-color);
    color: white;
}

.status-bubble {
    background: var(--warning-color);
    color: white;
}

.status-eliminated {
    background: var(--danger-color);
    color: white;
}
/* Awards Show Styles */
.awards-show-btn {
    background: linear-gradient(135deg, var(--gold-color), #ffd700);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1rem 0;
    box-shadow: var(--shadow-lg);
}

.awards-show-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.awards-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.awards-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-out;
}

.awards-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 80%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.awards-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1), transparent 70%);
}

.awards-spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    border-radius: 50%;
    animation: spotlight 3s ease-in-out infinite;
}

@keyframes spotlight {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.2); }
}

.awards-presenter {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    padding: 2rem;
}

.awards-presenter h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5); }
}

.current-award {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.award-animation {
    animation: awardReveal 1s ease-out;
}

@keyframes awardReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.award-icon-large {
    font-size: 6rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.award-icon-large.gold { color: var(--gold-color); }
.award-icon-large.silver { color: var(--silver-color); }
.award-icon-large.bronze { color: var(--bronze-color); }
.award-icon-large.special { color: #4299e1; }

.current-award h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.award-winner-display {
    margin-top: 2rem;
}

.winner-name {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    animation: winnerReveal 1.5s ease-out 0.5s both;
}

@keyframes winnerReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.winner-details {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: detailsReveal 1.5s ease-out 1s both;
}

@keyframes detailsReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.awards-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.award-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.award-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.award-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#award-counter {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 600;
}

.close-awards-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.close-awards-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Champion Card Enhancements */
.champion-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.champion-card.runner-up::before {
    background: linear-gradient(90deg, var(--silver-color), #e5e5e5);
}

/* Responsive Awards Show */
@media (max-width: 768px) {
    .awards-modal-content {
        width: 95%;
        height: 90%;
    }
    
    .awards-presenter h2 {
        font-size: 2rem;
    }
    
    .current-award {
        padding: 2rem 1rem;
    }
    
    .award-icon-large {
        font-size: 4rem;
    }
    
    .current-award h3 {
        font-size: 1.8rem;
    }
    
    .winner-name {
        font-size: 2rem;
    }
    
    .winner-details {
        font-size: 1.2rem;
    }
}

/* Enhanced Fun Stats */
.fun-stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.fun-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fun-stat-item:nth-child(even) {
    border-left-color: var(--success-color);
}

.fun-stat-item:nth-child(3n) {
    border-left-color: var(--warning-color);
}
/* Championship Presentation Styles */
.championship-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    overflow: hidden;
}

.championship-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: championshipFadeIn 1s ease-out;
}

@keyframes championshipFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.championship-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.championship-stage {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15), transparent 70%);
}

/* Confetti Animation */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold-color);
    animation: confettiFall 3s linear infinite;
}

.confetti:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    background: #ff6b6b;
}

.confetti:nth-child(2) {
    left: 30%;
    animation-delay: 0.5s;
    background: #4ecdc4;
}

.confetti:nth-child(3) {
    left: 50%;
    animation-delay: 1s;
    background: var(--gold-color);
}

.confetti:nth-child(4) {
    left: 70%;
    animation-delay: 1.5s;
    background: #45b7d1;
}

.confetti:nth-child(5) {
    left: 90%;
    animation-delay: 2s;
    background: #f9ca24;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.championship-spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
    border-radius: 50%;
    animation: championshipSpotlight 4s ease-in-out infinite;
}

@keyframes championshipSpotlight {
    0%, 100% { 
        opacity: 0.4; 
        transform: translateX(-50%) scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: translateX(-50%) scale(1.3);
    }
}

.championship-presenter {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    padding: 2rem;
    max-width: 800px;
}

.championship-presenter h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: championshipTitleGlow 3s ease-in-out infinite;
}

.music-instruction {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 15px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    animation: musicInstructionPulse 3s ease-in-out infinite;
}

.music-instruction p {
    margin: 0;
    font-size: 1.2rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes musicInstructionPulse {
    0%, 100% { 
        background: rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.6);
    }
    50% { 
        background: rgba(255, 215, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.8);
    }
}

@keyframes championshipTitleGlow {
    0%, 100% { 
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }
    50% { 
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.9), 3px 3px 6px rgba(0, 0, 0, 0.7);
    }
}

.current-winner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 4rem 3rem;
    margin: 3rem 0;
    border: 3px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.winner-animation {
    animation: winnerRevealAnimation 2s ease-out;
}

@keyframes winnerRevealAnimation {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-20px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.winner-icon-large {
    font-size: 8rem;
    margin-bottom: 2rem;
    animation: winnerIconPulse 2s ease-in-out infinite;
}

.winner-icon-large.first { color: var(--gold-color); }
.winner-icon-large.second { color: var(--silver-color); }
.winner-icon-large.third { color: var(--bronze-color); }
.winner-icon-large.regular { color: #4ecdc4; }

@keyframes winnerIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.current-winner h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.winner-name-display {
    margin: 2rem 0;
}

.winner-name {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold-color);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    animation: winnerNameReveal 2s ease-out 1s both;
}

@keyframes winnerNameReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.winner-team {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    animation: winnerTeamReveal 2s ease-out 1.5s both;
}

@keyframes winnerTeamReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.winner-record {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: winnerRecordReveal 2s ease-out 2s both;
}

@keyframes winnerRecordReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.prize-money {
    font-size: 5rem;
    font-weight: 900;
    color: #00ff00;
    text-shadow: 0 0 20px rgba(0, 255, 0, 0.8), 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-top: 2rem;
    animation: prizeMoneyReveal 2s ease-out 2.5s both;
}

@keyframes prizeMoneyReveal {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.championship-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.winner-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.winner-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.winner-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

#winner-counter {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 700;
}

.championship-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.auto-play-btn, .close-championship-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 600;
}

.auto-play-btn:hover {
    background: rgba(0, 255, 0, 0.3);
    border-color: rgba(0, 255, 0, 0.5);
}

.close-championship-btn:hover {
    background: rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.5);
}

/* Mobile-friendly close button */
.mobile-close-area {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2001;
    display: none;
}

.mobile-close-btn {
    background: rgba(255, 0, 0, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    min-height: 60px;
    touch-action: manipulation;
}

.mobile-close-btn:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.05);
}

.mobile-close-btn i {
    font-size: 1.3rem;
}

.skip-hint {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-close-area {
        display: block;
    }
    
    .nav-toggle {
        display: flex;
        position: absolute;
        left: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 99;
        padding: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    .championship-presenter h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .music-instruction {
        padding: 0.8rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .music-instruction p {
        font-size: 1rem;
    }
    
    .current-winner {
        padding: 2rem 1rem;
        margin: 2rem 0;
        border-radius: 20px;
    }
    
    .winner-icon-large {
        font-size: 5rem;
        margin-bottom: 1rem;
    }
    
    .current-winner h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .winner-name {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .winner-team {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .winner-record {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .prize-money {
        font-size: 3rem;
        margin-top: 1rem;
    }
    
    .championship-controls {
        gap: 1.5rem;
        margin: 2rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .winner-nav-btn {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
        min-width: 60px;
        min-height: 60px;
        border-radius: 50px;
        touch-action: manipulation;
    }
    
    .championship-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .auto-play-btn, .close-championship-btn {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        min-height: 50px;
        border-radius: 50px;
        touch-action: manipulation;
    }
    
    .close-championship-btn {
        background: rgba(255, 0, 0, 0.8);
        border-color: rgba(255, 0, 0, 0.9);
        color: white;
        font-weight: 700;
        font-size: 1.2rem;
        animation: closeButtonPulse 2s ease-in-out infinite;
    }
    
    .mobile-close-btn {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        min-height: 70px;
    }
    
    .skip-hint {
        font-size: 0.9rem;
    }
    
    /* Improve touch targets */
    .nav-btn {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    .champion-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .quick-stat-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Better table scrolling on mobile */
    .standings-table-wrapper {
        -webkit-overflow-scrolling: touch;
    }
    
    .standings-table th,
    .standings-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .historical-table th,
    .historical-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Awards show mobile improvements */
    .awards-modal-content {
        width: 95%;
        height: 90%;
        border-radius: 15px;
    }
    
    .awards-presenter h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .current-award {
        padding: 2rem 1rem;
        border-radius: 15px;
    }
    
    .award-icon-large {
        font-size: 4rem;
    }
    
    .current-award h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .winner-name {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .winner-details {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .award-nav-btn {
        padding: 1rem 1.5rem;
        min-width: 50px;
        min-height: 50px;
        touch-action: manipulation;
    }
}

@media (max-width: 480px) {
    .championship-presenter {
        padding: 1rem;
    }
    
    .championship-presenter h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .music-instruction {
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    .music-instruction p {
        font-size: 0.9rem;
    }
    
    .current-winner {
        padding: 1.5rem 0.8rem;
        margin: 1rem 0;
        border-radius: 15px;
    }
    
    .winner-icon-large {
        font-size: 4rem;
    }
    
    .current-winner h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .winner-name {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .winner-team {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .winner-record {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .prize-money {
        font-size: 2.5rem;
    }
    
    .championship-controls {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .winner-nav-btn {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        min-width: 50px;
        min-height: 50px;
        border-radius: 25px;
    }
    
    #winner-counter {
        font-size: 1.2rem;
    }
    
    .close-championship-btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 25px;
        background: rgba(255, 0, 0, 0.9);
        border-color: rgba(255, 0, 0, 1);
        color: white;
        font-weight: 700;
    }
    
    .mobile-close-area {
        top: 15px;
        right: 15px;
    }
    
    .mobile-close-btn {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        min-height: 60px;
        border-radius: 30px;
    }
    
    .mobile-close-btn span {
        font-size: 1rem;
    }
    
    .skip-hint {
        font-size: 0.8rem;
    }
    
    /* Hero section mobile */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* Navigation mobile */
    .nav-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    /* Content mobile */
    .tab-content {
        padding: 1.5rem 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Championship cards mobile */
    .championship-cards {
        gap: 1rem;
    }
    
    .champion-card {
        padding: 1.2rem;
    }
    
    .champion-name {
        font-size: 1.5rem;
    }
    
    .champion-record, .champion-points {
        font-size: 1rem;
    }
    
    /* Quick stats mobile */
    .quick-stat-card {
        padding: 1.2rem;
    }
    
    .quick-stat-card h4 {
        font-size: 1rem;
    }
    
    /* Awards mobile */
    .award-card {
        padding: 1.5rem;
    }
    
    .award-card h3 {
        font-size: 1.1rem;
    }
    
    .award-winner {
        font-size: 1.2rem;
    }
    
    /* Fun stats mobile */
    .fun-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .fun-stat-item {
        padding: 1.2rem;
    }
    
    /* Analysis cards mobile */
    .analysis-card {
        padding: 1.5rem;
    }
    
    .analysis-card h3 {
        font-size: 1.2rem;
    }
    
    .matchup-item, .weekly-item, .performance-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Table improvements for very small screens */
    .standings-table th,
    .standings-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }
    
    .standings-table th:nth-child(n+6),
    .standings-table td:nth-child(n+6) {
        display: none; /* Hide less important columns on very small screens */
    }
    
    /* Awards show very small screens */
    .awards-modal-content {
        width: 98%;
        height: 95%;
        border-radius: 10px;
    }
    
    .current-award {
        padding: 1.5rem 0.8rem;
    }
    
    .award-icon-large {
        font-size: 3.5rem;
    }
    
    .current-award h3 {
        font-size: 1.5rem;
    }
    
    .winner-name {
        font-size: 1.8rem;
    }
    
    .winner-details {
        font-size: 1rem;
    }
}