/* Gallery & Stats Specific Styles */

/* Stats Styles */
.stats-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-title i {
    color: var(--primary-color);
}

.leaderboard {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.leader-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.leader-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.leader-item.gold-leader {
    border-left-color: #ffd700;
    background: linear-gradient(to right, rgba(255, 215, 0, 0.1), var(--white));
}

.leader-item.silver-leader {
    border-left-color: #c0c0c0;
    background: linear-gradient(to right, rgba(192, 192, 192, 0.1), var(--white));
}

.leader-item.bronze-leader {
    border-left-color: #cd7f32;
    background: linear-gradient(to right, rgba(205, 127, 50, 0.1), var(--white));
}

.leader-rank {
    background: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.gold-leader .leader-rank {
    background: #ffd700;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.silver-leader .leader-rank {
    background: #c0c0c0;
    color: #000;
}

.bronze-leader .leader-rank {
    background: #cd7f32;
    color: #fff;
}

.leader-details h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.leader-details p {
    color: var(--text-light);
    font-size: 1rem;
}

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

.main-stat {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.sub-stat {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.leader-extra {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.record-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.record-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.record-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.record-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.record-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.record-holder {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.record-details {
    color: var(--text-light);
    font-size: 0.95rem;
}

.stats-note {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    border-left: 5px solid var(--primary-color);
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.stats-note i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.stats-note h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stats-note p {
    color: var(--text-light);
    line-height: 1.8;
}

/* New Gallery Styles - Season-based Layout */

/* Season Gallery Section */
.season-gallery-section {
    padding: 4rem 0;
    position: relative;
}

.season-gallery-section.bg-alternate {
    background: var(--light-bg);
}

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

.season-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.season-badge-large.season-1 {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.season-gallery-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
}

.section-subtitle {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-subtitle i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 4rem auto;
    max-width: 200px;
}

/* Award Winners Section */
.award-winners-section {
    margin-bottom: 4rem;
}

/* Award section is now visible for both seasons */

.award-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    transition: grid-template-columns 0.5s ease;
}

.award-winner-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.award-winner-card:nth-child(1) { animation-delay: 0.1s; }
.award-winner-card:nth-child(2) { animation-delay: 0.2s; }
.award-winner-card:nth-child(3) { animation-delay: 0.3s; }
.award-winner-card:nth-child(4) { animation-delay: 0.4s; }
.award-winner-card:nth-child(n+5) { animation-delay: 0.5s; }

.award-winner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.award-winner-photo {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.award-winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.award-winner-card:hover::before {
    opacity: 1;
}

.award-winner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    visibility: visible;
    opacity: 1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-winner-card:hover .award-winner-image {
    transform: scale(1.15);
}

.award-winner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.award-winner-photo[data-card-index="0"] {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

.award-winner-photo[data-card-index="1"] {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
}

.award-winner-photo[data-card-index="2"] {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.award-winner-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.award-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.award-winner-card:hover .award-badge {
    transform: scale(1.1);
}

.award-winner-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    z-index: 3;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.award-winner-card:hover .award-winner-info {
    transform: translateY(0);
}

.award-winner-info h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.award-winner-info p {
    color: var(--white);
    font-size: 1rem;
    opacity: 0.9;
}

/* Modern Gallery Grid Section */
.gallery-carousel-section {
    margin-top: 4rem;
}

.modern-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    transition: grid-template-columns 0.5s ease;
}

.modern-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    grid-column: span 1;
    grid-row: span 1;
}

.modern-gallery-item:hover:not(.expanded) {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Media Player Modal */
.media-player-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-sizing: border-box;
}

.media-player-modal.active {
    opacity: 1;
    visibility: visible;
}

.media-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.media-player-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: calc(100vh - 4vh);
    max-height: calc(100vh - 4vh);
    background: var(--white);
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.media-player-modal.active .media-player-container {
    transform: scale(1);
}

.media-player-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.media-player-media {
    position: relative;
    width: 100%;
    flex: 1 1 0;
    min-height: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.media-player-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.media-player-video {
    width: 100%;
    height: 100%;
    border: none;
}

.media-player-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--white);
}

.media-player-placeholder i {
    font-size: 5rem;
    opacity: 0.8;
}

.media-player-info {
    padding: 1rem 2rem;
    background: var(--white);
    flex: 0 0 auto;
    min-height: fit-content;
    overflow: visible;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    border-radius: 0 0 20px 20px;
    display: block;
    visibility: visible;
}

.media-player-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-player-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.media-player-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    max-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.media-player-counter {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.5rem;
}

.media-player-counter .current-index {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.media-player-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.media-player-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.media-player-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.media-player-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.media-player-nav.prev {
    left: 1rem;
}

.media-player-nav.next {
    right: 1rem;
}

@media (max-width: 768px) {
    .media-player-modal {
        padding: 1vh;
    }
    
    .media-player-container {
        width: 95%;
        height: calc(100vh - 2vh);
        max-height: calc(100vh - 2vh);
    }
    
    .media-player-media {
        flex: 1 1 0;
        min-height: 0;
    }
    
    .media-player-info {
        padding: 0.8rem 1.5rem;
        flex: 0 0 auto;
        min-height: fit-content;
        overflow: visible;
    }
    
    .media-player-title {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .media-player-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
        max-height: 2.5em;
        -webkit-line-clamp: 2;
    }
    
    .media-player-badge {
        padding: 0.3rem 0.7rem;
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
    }
    
    .media-player-counter {
        font-size: 0.8rem;
        margin-top: 0.3rem;
    }
    
    .media-player-nav {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .media-player-nav.prev {
        left: 0.5rem;
    }
    
    .media-player-nav.next {
        right: 0.5rem;
    }
    
    .media-player-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.modern-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.modern-gallery-item:hover::before {
    opacity: 1;
}

.gallery-item-media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-gallery-item:hover .gallery-item-image {
    transform: scale(1.15);
}

.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-bg) 100%);
    z-index: 1;
}

.modern-gallery-item.video-item .gallery-item-placeholder {
    background: linear-gradient(135deg, #d63031 0%, #e17055 100%);
}

.gallery-item-placeholder i {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.modern-gallery-item.video-item .gallery-item-placeholder i {
    animation: pulse-play-modern 2s ease-in-out infinite;
}

@keyframes pulse-play-modern {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
    z-index: 3;
}

.modern-gallery-item:hover:not(.expanded) .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-expanded-content {
    display: none;
    padding: 2rem;
    background: var(--white);
    color: var(--text-dark);
}

.gallery-item-expanded-content h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-item-expanded-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.gallery-item-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.gallery-item-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-gallery-item.expanded .gallery-item-nav {
    display: flex;
}

.gallery-item-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-item-nav.prev {
    left: 1rem;
}

.gallery-item-nav.next {
    right: 1rem;
}

.gallery-item-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .gallery-item-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-item-nav.prev {
        left: 0.5rem;
    }
    
    .gallery-item-nav.next {
        right: 0.5rem;
    }
}

.gallery-item-overlay-content {
    color: var(--white);
}

.gallery-item-overlay-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-item-overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--white);
}

.gallery-item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.modern-gallery-item:hover .gallery-item-badge {
    transform: scale(1.1);
}

.gallery-item-badge i {
    font-size: 0.9rem;
}

/* Stagger animation for items */
.modern-gallery-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.modern-gallery-item:nth-child(1) { animation-delay: 0.1s; }
.modern-gallery-item:nth-child(2) { animation-delay: 0.2s; }
.modern-gallery-item:nth-child(3) { animation-delay: 0.3s; }
.modern-gallery-item:nth-child(4) { animation-delay: 0.4s; }
.modern-gallery-item:nth-child(5) { animation-delay: 0.5s; }
.modern-gallery-item:nth-child(6) { animation-delay: 0.6s; }
.modern-gallery-item:nth-child(n+7) { animation-delay: 0.7s; }


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

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.video-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #d63031 0%, #e17055 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0 1rem;
    text-align: center;
}

.video-note {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.video-note i {
    font-size: 2rem;
    color: #ff0000;
}

/* Social CTA */
.social-cta {
    padding: 4rem 0;
    text-align: center;
}

.social-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    min-width: 150px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.social-icon i {
    font-size: 3rem;
}

.social-icon.instagram {
    color: #e4405f;
}

.social-icon.facebook {
    color: #1877f2;
}

.social-icon.youtube {
    color: #ff0000;
}

.social-icon.twitter {
    color: #1da1f2;
}

.social-icon span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Past Seasons Styles */
.season-section {
    padding: 4rem 0;
}

.season-section.bg-alternate {
    background: var(--light-bg);
}

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

.season-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.season-badge.season-1 {
    background: var(--secondary-color);
}

.season-header h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.season-header p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.season-winner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.winner-trophy i {
    font-size: 6rem;
    color: #ffd700;
}

.winner-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.winner-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.winner-stats {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.season-stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.season-stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.season-stat-card h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stat-player {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.final-scorecard {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 3rem;
}

.final-scorecard h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scorecard-match {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.scorecard-team {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.scorecard-team.winner-team {
    background: var(--success);
    color: var(--white);
}

.scorecard-team .team-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.team-badge {
    background: #ffd700;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

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

.vs-divider {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.scorecard-highlights {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
}

.scorecard-highlights h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.scorecard-highlights ul {
    list-style: none;
}

.scorecard-highlights li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scorecard-highlights i {
    color: var(--primary-color);
}

.final-standings,
.best-moments,
.season-highlights {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin-bottom: 3rem;
}

.final-standings h3,
.best-moments h3,
.season-highlights h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.standings-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem;
}

.podium-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    min-width: 150px;
}

.podium-item.first {
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    order: 2;
    transform: translateY(-20px);
}

.podium-item.second {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
    order: 1;
}

.podium-item.third {
    background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%);
    order: 3;
}

.podium-rank {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1rem;
}

.podium-item.first .podium-rank i {
    font-size: 3rem;
}

.podium-team {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.podium-points {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.moment-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.moment-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 5px 15px var(--shadow);
}

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

.moment-card h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.moment-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.highlights-list {
    list-style: none;
}

.highlights-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    display: flex;
    align-items: start;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.highlights-list i {
    color: var(--success);
    margin-top: 3px;
}

/* Season Comparison */
.season-comparison {
    padding: 4rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.comparison-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.comparison-card h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bar-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bar-label {
    font-weight: 600;
    color: var(--text-dark);
}

.bar-fill {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    position: relative;
}

/* Responsive */
@media (max-width: 968px) {
    .leader-item {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .leader-stats,
    .leader-extra {
        grid-column: 2;
    }

    .season-winner {
        flex-direction: column;
        text-align: center;
    }

    .standings-podium {
        flex-direction: column;
        align-items: center;
    }

    .podium-item {
        width: 100%;
        max-width: 300px;
    }

    .podium-item.first {
        order: 1;
        transform: none;
    }

    .podium-item.second {
        order: 2;
    }

    .podium-item.third {
        order: 3;
    }

    .modern-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .season-gallery-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .award-winners-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .award-winner-image {
        object-fit: contain;
        object-position: center;
    }

    .modern-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item-image {
        object-fit: contain;
        object-position: center;
    }

    .modern-gallery-item.expanded {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item-overlay-content h4 {
        font-size: 1.2rem;
    }

    .gallery-item-overlay-content p {
        font-size: 0.9rem;
    }

    .gallery-item-expanded-content {
        padding: 1.5rem;
    }

    .gallery-item-expanded-content h4 {
        font-size: 1.4rem;
    }

    .gallery-item-expanded-content p {
        font-size: 1rem;
    }

    .social-icons-large {
        flex-direction: column;
        align-items: center;
    }

    .social-icon {
        width: 100%;
        max-width: 300px;
    }
    /* Footer spacing is handled by contact-override.css which loads last */
}

@media (max-width: 480px) {
    .season-badge-large {
        font-size: 1.1rem;
        padding: 0.8rem 2rem;
    }

    .season-gallery-header h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .award-winners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .award-winner-image {
        object-fit: contain;
        object-position: center;
    }

    .modern-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item-image {
        object-fit: contain;
        object-position: center;
    }

    .gallery-item-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}