/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 255, 136, 0.02) 35px, rgba(0, 255, 136, 0.02) 70px);
    pointer-events: none;
    z-index: 0;
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.6); }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header Styles */
.header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 20px 2vw;
    text-align: center;
    border-bottom: 3px dashed #00ff88;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at bottom, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2vh 0;
    flex: 0 1 auto;
    animation: fadeInUp 1s ease-out;
}

.league-logo {
    max-width: min(50vw, 600px);
    max-height: 40vh;
    width: 100%;
    height: auto;
    object-fit: contain;
    background-color: transparent;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.4));
    animation: pulse 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.league-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(0, 255, 136, 0.6));
}

.league-title {
    margin: 2vh 0 1.5vh;
    flex: 0 1 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.main-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1vh;
    text-transform: uppercase;
    background: linear-gradient(45deg, #00ff88, #00cc6a, #00ff88);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.subtitle-banner {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #1a1a1a;
    padding: clamp(8px, 1.2vh, 15px) clamp(20px, 3vw, 40px);
    font-size: clamp(14px, 2vw, 24px);
    font-weight: bold;
    letter-spacing: 3px;
    display: inline-block;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
}

.subtitle-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.6);
}

.last-updated {
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: bold;
    margin-top: 2vh;
    padding-bottom: 1vh;
    flex: 0 1 auto;
}

/* Champion Section */
.champion-section {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.8s ease-out;
}

.champion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
}

.year-badge {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.champion-title {
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #1a1a1a;
    padding: 20px 60px;
    display: inline-block;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    animation: fadeInUp 0.6s ease-out 0.4s both, glow 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.champion-title:hover {
    transform: scale(1.05);
}

.champion-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 2px solid rgba(0, 255, 136, 0.3);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.champion-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.champion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.4);
    border-color: rgba(0, 255, 136, 0.6);
}

.trophy-icon {
    font-size: 80px;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.champion-info {
    text-align: center;
}

.champion-jersey {
    background-color: #c41e3a;
    color: #f5f5f5;
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 auto 15px;
}

.jersey-number {
    font-size: 48px;
    font-weight: 900;
}

.champion-name {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: #00ff88;
}

.champion-username {
    font-size: 16px;
    color: #aaa;
    margin-top: 8px;
    font-weight: normal;
}

.champion-stats {
    text-align: center;
}

.stat-label {
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
    color: #00ff88;
}

.stat-value {
    font-size: 32px;
    font-weight: 900;
    color: #e0e0e0;
}

.runner-ups {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.runner-up-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    min-width: 250px;
    box-shadow: 0 3px 10px rgba(0, 255, 136, 0.2);
    border: 2px solid #333;
}

.place-badge {
    background-color: #00ff88;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

.runner-name {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 15px 0;
    color: #e0e0e0;
}

.trophy-small {
    font-size: 48px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-btn {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 3px solid #00ff88;
    color: #00ff88;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-btn:hover {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.4);
}

/* Previous Champion Section */
.previous-champion-section {
    background-color: #252525;
    padding: 40px 20px;
    text-align: center;
    border-top: 3px dashed #00ff88;
}

.previous-champion-title {
    font-size: 48px;
    font-weight: 900;
    background-color: #666;
    color: #f5f5f5;
    padding: 15px 50px;
    display: inline-block;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    margin-bottom: 30px;
}

.previous-champion-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 2px solid #333;
}

.trophy-icon-previous {
    font-size: 64px;
}

.champion-jersey.previous {
    background-color: #888;
    width: 100px;
    height: 70px;
}

.champion-jersey.previous .jersey-number {
    font-size: 40px;
}

/* Menu Section */
.menu-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00ff88, transparent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 255, 136, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

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

.menu-card:hover::before {
    left: 100%;
}

.menu-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    border-color: #00ff88;
}

.menu-card:nth-child(1) { animation-delay: 0.1s; }
.menu-card:nth-child(2) { animation-delay: 0.2s; }
.menu-card:nth-child(3) { animation-delay: 0.3s; }
.menu-card:nth-child(4) { animation-delay: 0.4s; }
.menu-card:nth-child(5) { animation-delay: 0.5s; }
.menu-card:nth-child(6) { animation-delay: 0.6s; }

.menu-icon {
    font-size: 64px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.menu-card:hover .menu-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

.menu-label {
    font-size: 16px;
    font-weight: bold;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.menu-card:hover .menu-label {
    color: #00ff88;
}

/* Medalists Section */
.medalists-section {
    padding: 60px 20px;
    background-color: #252525;
}

.medals-header {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.medal-icon {
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
}

.medal-icon.qb {
    background-color: #c41e3a;
    color: #f5f5f5;
}

.medal-icon.rb {
    background-color: #0066cc;
    color: #f5f5f5;
}

.medal-icon.wr {
    background-color: #00a651;
    color: #f5f5f5;
}

.medal-icon.te {
    background-color: #ff6600;
    color: #f5f5f5;
}

.medalists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.medalist-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 255, 136, 0.2);
    border: 2px solid #333;
}

.player-jersey {
    background-color: #00ff88;
    color: #1a1a1a;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
}

.player-name {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 10px 0;
    color: #e0e0e0;
}

.stats-btn {
    background-color: #2a2a2a;
    border: 2px solid #00ff88;
    color: #00ff88;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px 0;
    transition: all 0.3s;
}

.stats-btn:hover {
    background-color: #00ff88;
    color: #1a1a1a;
}

.manager-label {
    font-size: 10px;
    font-weight: bold;
    margin-top: 10px;
    color: #00ff88;
}

.manager-name {
    font-size: 14px;
    font-weight: bold;
    color: #aaa;
}

/* Special Awards */
.special-awards {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
    background-color: #2a2a2a;
    flex-wrap: wrap;
}

.award-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
    min-width: 350px;
    border: 2px solid #333;
}

.award-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #00ff88;
}

.award-icon {
    font-size: 64px;
    margin: 20px 0;
}

.award-banner {
    background-color: #00ff88;
    color: #1a1a1a;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    margin: 20px 0;
}

.award-winner {
    font-size: 24px;
    font-weight: 900;
    margin-top: 15px;
    color: #e0e0e0;
}

/* Countdown Section */
.countdown-section {
    background-color: #1a1a1a;
    padding: 60px 20px;
    text-align: center;
}

.countdown-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #00ff88;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.time-unit {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    min-width: 120px;
    box-shadow: 0 3px 10px rgba(0, 255, 136, 0.2);
    border: 2px solid #333;
}

.time-value {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #00ff88;
}

.time-label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    color: #e0e0e0;
}

/* Calendar Section */
.calendar-section {
    padding: 60px 20px;
    background-color: #2a2a2a;
}

.calendar-events {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.calendar-event {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 255, 136, 0.2);
    min-width: 400px;
    border: 2px solid #333;
}

.event-date {
    text-align: center;
    border: 3px solid #00ff88;
    border-radius: 10px;
    padding: 10px 20px;
    min-width: 100px;
}

.month {
    font-size: 12px;
    font-weight: bold;
    color: #00ff88;
}

.day {
    font-size: 48px;
    font-weight: 900;
    color: #e0e0e0;
}

.event-info {
    text-align: left;
}

.event-name {
    font-size: 24px;
    font-weight: 900;
    color: #e0e0e0;
}

.event-day {
    font-size: 14px;
    color: #aaa;
}

/* Player Profiles */
.player-profiles-section {
    padding: 60px 20px;
    background-color: #252525;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .profiles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.profile-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 255, 136, 0.2);
    width: 100%;
    max-width: 180px;
    border: 2px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    margin: 0 auto;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 2px solid #00ff88;
    flex-shrink: 0;
}

.profile-name {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: #e0e0e0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.2;
    max-width: 100%;
}

/* Standings Section */
.standings-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #e0e0e0;
}

.standings-header {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
}

.standings-header .section-title {
    color: #00ff88;
    margin: 0;
}

.archive-btn {
    background-color: #1a1a1a;
    border: 2px solid #00ff88;
    color: #00ff88;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.archive-btn:hover {
    background-color: #00ff88;
    color: #1a1a1a;
}

.standings-table {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(42, 42, 42, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.table-header {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 1.5fr 1fr;
    gap: 10px;
    padding: 20px;
    background-color: rgba(26, 26, 26, 0.98);
    font-weight: bold;
    font-size: 14px;
    color: #fff;
}

.table-body {
    padding: 10px;
}

.table-row {
    display: grid;
    grid-template-columns: 60px 2fr 1fr 1.5fr 1fr;
    gap: 10px;
    padding: 20px;
    background-color: rgba(51, 51, 51, 0.95);
    margin-bottom: 10px;
    border-radius: 10px;
    align-items: center;
    color: #fff;
}

.table-row:nth-child(1) {
    background-color: #00ff88;
    color: #1a1a1a;
    font-weight: bold;
}

/* Recent Champion Highlight */
.table-row.recent-champion {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35) 0%, rgba(255, 215, 0, 0.15) 100%);
    border: 2px solid #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
}

.table-row.recent-champion::before {
    content: '⭐ DEFENDING CHAMPION ⭐';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
    color: #1a1a1a;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.table-row.recent-champion .team-name {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.rank-number {
    background-color: #00ff88;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
}

.team-name {
    font-weight: bold;
    font-size: 16px;
}

.col-rank, .col-team, .col-record, .col-avg, .col-bank {
    text-align: left;
}

.col-rank {
    text-align: center;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
}

.footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calendar-event {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .header {
        min-height: 500px;
        padding: 15px 2vw;
    }
    
    .main-title {
        font-size: 40px;
    }
    
    .subtitle-banner {
        font-size: 14px;
        padding: 8px 16px;
        letter-spacing: 2px;
    }
    
    .year-badge {
        font-size: 36px;
    }
    
    .champion-title {
        font-size: 32px;
        padding: 12px 25px;
    }
    
    .previous-champion-title {
        font-size: 32px;
        padding: 12px 25px;
    }
    
    .champion-card, .previous-champion-card {
        flex-direction: column;
        padding: 25px;
        gap: 20px;
    }
    
    .trophy-icon {
        font-size: 60px;
    }
    
    .trophy-icon-previous {
        font-size: 50px;
    }
    
    .champion-name {
        font-size: 28px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .runner-ups {
        flex-direction: column;
        gap: 15px;
    }
    
    .runner-up-card {
        min-width: auto;
        width: 100%;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .action-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .menu-card {
        padding: 30px 15px;
    }
    
    .menu-icon {
        font-size: 48px;
    }
    
    .menu-label {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .medalists-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 20px 15px;
    }
    
    .time-value {
        font-size: 36px;
    }
    
    .time-label {
        font-size: 12px;
    }
    
    .calendar-events {
        flex-direction: column;
    }
    
    .calendar-event {
        min-width: auto;
        width: 100%;
    }
    
    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .profile-card {
        width: 100%;
        padding: 15px;
    }
    
    .profile-avatar {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .profile-name {
        font-size: 12px;
    }
    
    .table-header, .table-row {
        grid-template-columns: 50px 1.5fr 0.8fr 1fr 0.8fr;
        font-size: 12px;
        padding: 15px 10px;
        gap: 5px;
    }
    
    .rank-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .team-name {
        font-size: 14px;
    }
    
    .league-logo {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 400px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .subtitle-banner {
        font-size: 12px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }
    
    .year-badge {
        font-size: 28px;
    }
    
    .champion-title, .previous-champion-title {
        font-size: 24px;
        padding: 10px 20px;
    }
    
    .champion-card, .previous-champion-card {
        padding: 20px;
    }
    
    .champion-jersey {
        width: 100px;
        height: 70px;
    }
    
    .jersey-number {
        font-size: 40px;
    }
    
    .champion-name {
        font-size: 22px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-header {
        display: none;
    }
    
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .rank-number {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .table-row {
        position: relative;
    }
    
    .col-rank, .col-team, .col-record, .col-avg, .col-bank {
        text-align: left;
        padding: 5px 0;
    }
    
    .col-team::before {
        content: "Team: ";
        font-weight: bold;
        color: #00ff88;
    }
    
    .col-record::before {
        content: "Record: ";
        font-weight: bold;
        color: #00ff88;
    }
    
    .col-avg::before {
        content: "Avg: ";
        font-weight: bold;
        color: #00ff88;
    }
    
    .col-bank::before {
        content: "Championships: ";
        font-weight: bold;
        color: #00ff88;
    }
}
