/* ==========================================================================
   Rarvivor 2 (R2) - Design System & Stylesheet
   Theme: Futuristic Cyber-Gaming & Esports Community
   Colors: Neon Cyan (#00f0ff) & Vibrant Yellow (#ffdd00)
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800;900&family=Space+Grotesk:wght@400;500;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --font-heading: 'Orbitron', 'Space Grotesk', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Color Palette */
    --clr-cyan: #00f0ff;
    --clr-cyan-glow: rgba(0, 240, 255, 0.4);
    --clr-cyan-dim: rgba(0, 240, 255, 0.1);
    --clr-yellow: #ffdd00;
    --clr-yellow-glow: rgba(255, 221, 0, 0.4);
    --clr-yellow-dim: rgba(255, 221, 0, 0.15);
    
    --clr-bg: #07090e;
    --clr-bg-nav: rgba(7, 9, 14, 0.75);
    --clr-bg-card: rgba(13, 17, 30, 0.5);
    --clr-bg-card-hover: rgba(20, 26, 46, 0.7);
    --clr-bg-modal: rgba(10, 12, 22, 0.95);
    
    --clr-border: rgba(0, 240, 255, 0.12);
    --clr-border-hover: rgba(0, 240, 255, 0.4);
    --clr-border-yellow: rgba(255, 221, 0, 0.2);
    --clr-border-yellow-hover: rgba(255, 221, 0, 0.6);
    
    --clr-text: #ffffff;
    --clr-text-secondary: #a3a8b4;
    --clr-text-muted: #646b7a;
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    --glow-shadow: 0 0 15px var(--clr-cyan-glow);
    --glow-shadow-yellow: 0 0 15px var(--clr-yellow-glow);
    
    --container-max: 1200px;
    --nav-height: 80px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: var(--clr-bg);
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--clr-bg);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 240, 255, 0.2);
    border-radius: 4px;
    border: 2px solid var(--clr-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--clr-cyan);
    box-shadow: var(--glow-shadow);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    font-weight: 800;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.glow-text-cyan {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6), 0 0 20px rgba(0, 240, 255, 0.2);
}

.glow-text-yellow {
    text-shadow: 0 0 10px rgba(255, 221, 0, 0.6), 0 0 20px rgba(255, 221, 0, 0.2);
}

/* Background Canvas & Effects */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.85;
}

.radial-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, #0d1222 0%, #05060a 100%);
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    pointer-events: none;
}

/* Glassmorphism Class */
.glass {
    background: var(--clr-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    transition: var(--transition-normal);
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--clr-bg-nav);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
    z-index: 100;
    transition: var(--transition-normal);
}

header.scrolled {
    height: 70px;
    background: rgba(5, 7, 12, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--clr-cyan-glow));
}

.logo-text {
    color: var(--clr-text);
}

.logo-text span {
    color: var(--clr-yellow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--clr-text-secondary);
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-cyan);
    box-shadow: var(--glow-shadow);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--clr-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--clr-bg);
    background: var(--clr-yellow);
    border: none;
    border-radius: 6px;
    padding: 0.65rem 1.25rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 221, 0, 0.3);
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 221, 0, 0.6);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--clr-text);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clr-cyan);
    background: var(--clr-cyan-dim);
    border: 1px solid rgba(0, 240, 255, 0.25);
    border-radius: 100px;
    padding: 0.4rem 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.1);
}

.badge-tag span {
    width: 8px;
    height: 8px;
    background: var(--clr-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-shadow);
    display: inline-block;
    animation: pulse 1.8s infinite alternate;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 30%, var(--clr-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.15));
    position: relative;
}

.hero-title span {
    color: var(--clr-yellow);
    -webkit-text-fill-color: var(--clr-yellow);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-yellow);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--clr-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--clr-cyan);
    color: var(--clr-bg);
    border: none;
    box-shadow: 0 0 15px var(--clr-cyan-glow);
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4), var(--glow-shadow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--clr-text);
    border: 1px solid var(--clr-border-hover);
    position: relative;
    overflow: hidden;
}

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

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

.btn-secondary:hover {
    border-color: var(--clr-cyan);
    background: var(--clr-cyan-dim);
    box-shadow: inset 0 0 12px rgba(0, 240, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero Visual Graphic */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-inner {
    position: relative;
    width: 320px;
    height: 320px;
}

.visual-glowing-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(0, 240, 255, 0.15);
    animation: rotate 30s linear infinite;
}

.visual-glowing-ring-2 {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    border: 1px solid rgba(255, 221, 0, 0.08);
    animation: rotate-reverse 45s linear infinite;
}

.hero-visual-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-logo img {
    max-width: 170px;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.45)) drop-shadow(0 0 45px rgba(255, 221, 0, 0.25));
    animation: float 6s ease-in-out infinite;
}

/* Sections General Styling */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--clr-yellow);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--clr-cyan);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-yellow), var(--clr-cyan));
    border-radius: 4px;
}

.section-desc {
    max-width: 620px;
    color: var(--clr-text-secondary);
    font-size: 1.05rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
}

.feature-card {
    padding: 3rem 2.2rem;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--clr-cyan), transparent);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-border-hover);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05), inset 0 0 15px rgba(0, 240, 255, 0.03);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-yellow:hover {
    border-color: var(--clr-border-yellow-hover);
    box-shadow: 0 10px 30px rgba(255, 221, 0, 0.05), inset 0 0 15px rgba(255, 221, 0, 0.02);
}

.feature-card-yellow:hover::before {
    background: linear-gradient(90deg, transparent, var(--clr-yellow), transparent);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: var(--clr-cyan-dim);
    border: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    color: var(--clr-cyan);
    box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.15);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
    color: var(--clr-bg);
    background: var(--clr-cyan);
    box-shadow: var(--glow-shadow);
    transform: scale(1.05) rotate(5deg);
}

.feature-card-yellow .feature-icon-wrapper {
    color: var(--clr-yellow);
    background: var(--clr-yellow-dim);
    border-color: rgba(255, 221, 0, 0.2);
}

.feature-card-yellow:hover .feature-icon-wrapper {
    color: var(--clr-bg);
    background: var(--clr-yellow);
    box-shadow: var(--glow-shadow-yellow);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.feature-desc {
    color: var(--clr-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Highlight Seasons Section */
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.spotlight-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.spotlight-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.spotlight-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.spotlight-card:hover .spotlight-num {
    color: rgba(0, 240, 255, 0.1);
    transform: scale(1.1);
}

.spotlight-card-yellow:hover .spotlight-num {
    color: rgba(255, 221, 0, 0.15);
}

.status-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.status-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

/* Status variants */
.status-completed {
    background: rgba(0, 240, 255, 0.1);
    color: var(--clr-cyan);
    border: 1px solid rgba(0, 240, 255, 0.25);
}

.status-completed span {
    background: var(--clr-cyan);
    box-shadow: 0 0 6px var(--clr-cyan);
}

.status-active {
    background: rgba(255, 221, 0, 0.1);
    color: var(--clr-yellow);
    border: 1px solid rgba(255, 221, 0, 0.3);
}

.status-active span {
    background: var(--clr-yellow);
    box-shadow: 0 0 6px var(--clr-yellow);
    animation: blink 1s infinite alternate;
}

.status-upcoming {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.status-upcoming span {
    background: #a855f7;
    box-shadow: 0 0 6px #a855f7;
}

.spotlight-title {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--clr-text);
}

.spotlight-card:hover .spotlight-title {
    color: var(--clr-cyan);
}

.spotlight-card-yellow:hover .spotlight-title {
    color: var(--clr-yellow);
}

.spotlight-theme {
    font-size: 0.9rem;
    color: var(--clr-yellow);
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.spotlight-card-yellow .spotlight-theme {
    color: var(--clr-cyan);
}

.spotlight-desc {
    color: var(--clr-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.spotlight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    font-size: 0.85rem;
}

.spotlight-meta-label {
    color: var(--clr-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.spotlight-meta-val {
    color: var(--clr-text);
    font-weight: 600;
}

.spotlight-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-cyan);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.spotlight-link i {
    transition: var(--transition-fast);
}

.spotlight-card:hover .spotlight-link i {
    transform: translateX(4px);
}

.spotlight-card:hover {
    transform: scale(1.02);
    border-color: var(--clr-border-hover);
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.07);
}

.spotlight-card-yellow:hover {
    border-color: var(--clr-border-yellow-hover);
    box-shadow: 0 15px 35px rgba(255, 221, 0, 0.07);
}

/* Season Archive Section */
.archive-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

/* Search input container */
.search-wrapper {
    position: relative;
    flex: 1;
    max-width: 480px;
    min-width: 280px;
}

.search-input {
    width: 100%;
    background: rgba(13, 17, 30, 0.4);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    padding: 1rem 1.2rem 1rem 3rem;
    color: var(--clr-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-normal);
}

.search-input:focus {
    border-color: var(--clr-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15), inset 0 0 10px rgba(0, 240, 255, 0.05);
    background: rgba(20, 26, 46, 0.6);
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.search-input:focus + .search-icon {
    color: var(--clr-cyan);
    filter: drop-shadow(0 0 5px var(--clr-cyan));
}

/* Filter Buttons Group */
.filter-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.75rem 1.5rem;
    background: rgba(13, 17, 30, 0.4);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover {
    border-color: rgba(0, 240, 255, 0.4);
    color: var(--clr-text);
}

.filter-btn.active {
    background: var(--clr-cyan-dim);
    border-color: var(--clr-cyan);
    color: var(--clr-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.2);
    box-shadow: inset 0 0 8px rgba(0, 240, 255, 0.1);
}

/* Sorting selector */
.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sort-select {
    background: rgba(13, 17, 30, 0.5);
    border: 1px solid var(--clr-border);
    color: var(--clr-text);
    padding: 0.6rem 1.5rem 0.6rem 0.8rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.sort-select:focus {
    border-color: var(--clr-cyan);
}

/* Season Grid Archive */
.archive-grid-wrapper {
    position: relative;
    min-height: 250px;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.season-card {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 180px;
}

.season-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-border-hover);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.08);
}

.season-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.season-card-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--clr-yellow);
    background: rgba(255, 221, 0, 0.1);
    border: 1px solid rgba(255, 221, 0, 0.2);
    border-radius: 4px;
    padding: 0.2rem 0.5rem;
}

.season-card-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.season-card-host {
    font-size: 0.85rem;
    color: var(--clr-text-secondary);
}

.season-card-host span {
    color: var(--clr-text);
    font-weight: 500;
}

.season-card-winner {
    font-size: 0.85rem;
    color: var(--clr-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 0.75rem;
    margin-top: auto;
}

.season-card-winner strong {
    color: var(--clr-cyan);
}

/* Empty search result state */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    font-family: var(--font-heading);
    color: var(--clr-text-secondary);
    display: none;
}

.empty-state i {
    font-size: 3rem;
    color: var(--clr-yellow);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.empty-state-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* Pagination / View More Controls */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h3 {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--clr-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-bullets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-bullet-icon {
    color: var(--clr-yellow);
    margin-top: 0.25rem;
}

.about-bullet-text {
    font-size: 0.95rem;
    color: var(--clr-text-secondary);
}

.about-bullet-text strong {
    color: var(--clr-text);
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-box {
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 12px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--clr-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-num span {
    color: var(--clr-yellow);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--clr-text-secondary);
}

/* Footer Section */
footer {
    background: #040508;
    padding: 6rem 0 3rem 0;
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    position: relative;
    z-index: 10;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
}

.footer-logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--clr-cyan-glow));
}

.footer-desc {
    color: var(--clr-text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-links-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--clr-text);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-list a {
    color: var(--clr-text-secondary);
    font-size: 0.9rem;
}

.footer-links-list a:hover {
    color: var(--clr-cyan);
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-text-secondary);
    transition: var(--transition-normal);
}

.social-icon:hover {
    color: var(--clr-bg);
    background: var(--clr-cyan);
    border-color: var(--clr-cyan);
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

.social-icon-yellow:hover {
    background: var(--clr-yellow);
    border-color: var(--clr-yellow);
    box-shadow: var(--glow-shadow-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.footer-credits span {
    color: var(--clr-cyan);
}

/* Detail Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 8, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    width: 100%;
    max-width: 580px;
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.05);
}

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

.modal-header {
    background: linear-gradient(135deg, rgba(13, 17, 30, 0.8) 0%, rgba(7, 9, 14, 0.9) 100%);
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title-wrapper {
    display: flex;
    flex-direction: column;
}

.modal-season-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--clr-yellow);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.modal-season-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--clr-text);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--clr-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.modal-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.modal-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.modal-detail-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    letter-spacing: 0.05em;
}

.modal-detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text);
}

.modal-detail-value.highlight-cyan {
    color: var(--clr-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

.modal-detail-value.highlight-yellow {
    color: var(--clr-yellow);
    text-shadow: 0 0 10px rgba(255, 221, 0, 0.15);
}

.modal-detail-theme {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 1.25rem;
}

.modal-theme-desc {
    color: var(--clr-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-footer {
    padding: 0 2.5rem 2.5rem 2.5rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 6px rgba(0, 240, 255, 0.3);
        transform: scale(0.95);
    }
    100% {
        box-shadow: 0 0 16px rgba(0, 240, 255, 0.8);
        transform: scale(1.05);
    }
}

@keyframes blink {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

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

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

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-grid {
        gap: 2rem;
    }
    .about-grid {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    section {
        padding: 5rem 0;
    }
    .hero {
        min-height: auto;
        padding: 8rem 0 4rem 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-content {
        align-items: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-stats {
        order: 2;
    }
    .about-content {
        order: 1;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: rgba(7, 9, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        transition: var(--transition-slow);
        z-index: 99;
        border-top: 1px solid rgba(0, 240, 255, 0.05);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Toggle active state */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: var(--clr-cyan);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
        background-color: var(--clr-cyan);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .archive-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-wrapper {
        max-width: 100%;
    }
    
    .sort-wrapper {
        justify-content: space-between;
    }
    
    .modal-body {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .modal-detail-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .btn {
        width: 100%;
    }
    .hero-buttons {
        width: 100%;
    }
    .stat-box {
        padding: 1.5rem 1rem;
    }
    .stat-num {
        font-size: 2.5rem;
    }
}
