:root {
    --bg: #000000;
    --surface: #747485;
    --border: rgba(152, 58, 58, 0.635);
    --text: #f4f4f6;
    --muted: #8e8e99;
    --accent: #ff5601;
    --accent-glow: rgba(255, 86, 1, 0.4);
    user-select: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Bricolage Grotesque", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9990;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: linear-gradient(to bottom, rgba(8, 8, 10, 0.9) 0%, transparent 100%);
    pointer-events: none;
}

.top-bar>* {
    pointer-events: auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: 0.25s ease;
}

.badge:hover {
    border-color: rgba(255, 86, 1, 0.45);
    background: rgba(255, 86, 1, 0.12);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent);
}

.eye-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.eye-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 0 28px var(--accent-glow);
}

.eye-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 20px;
    line-height: 1;
}

.menu-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 0 28px var(--accent-glow);
}

.menu-box {
    position: fixed;
    top: 70px;
    right: 22px;
    width: 200px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    z-index: 200;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.96);
    transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.menu-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
}

.menu-item:hover {
    background: rgba(255, 86, 1, 0.15);
    color: var(--accent);
}

.menu-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.hero {
    position: relative;
    width: 100%;
    height: 68vh;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -20px;
    background: url("./Season9.jpg") center / cover no-repeat;
    filter: blur(18px) brightness(0.7);
    transform: scale(1.15);
}

.tooltip {
    position: fixed;
    background: rgba(0, 0, 0, 0.88);
    color: #fff;
    padding: 7px 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(12px);
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    opacity: 0;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.tooltip.show {
    opacity: 1;
}

.tooltip img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(8, 8, 10, 0.3) 0%,
            rgba(8, 8, 10, 0.1) 35%,
            rgba(8, 8, 10, 0.65) 70%,
            var(--bg) 100%);
}

.hero-card {
    position: relative;
    z-index: 2;
    width: min(60%, 580px);
    border-radius: 8.4px;
    overflow: hidden;
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.hero-card:hover {
    transform: translateY(-12px) scale(1.025);
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(255, 86, 1, 0.3),
        0 0 50px rgba(255, 86, 1, 0.18);
}

.gradient-text {
    background: linear-gradient(90deg, #bd0279, #f65cbd, #fa9ace);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s linear infinite;
}

.hero-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.content {
    max-width: 680px;
    margin: 0 auto;
    padding: 10px 24px 90px;
}

.section {
    padding: 42px 0;
    border-bottom: 1px solid var(--border);
}

.section:last-child {
    border-bottom: none;
}

.label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

h1 {
    font-size: clamp(1.85rem, 5vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 12px;
}

.section p {
    font-size: 15.5px;
    color: var(--muted);
    max-width: 460px;
    line-height: 1.65;
}

.section a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.section a:hover {
    color: #ff7a3d;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 11px 16px;
    background: rgba(255, 86, 1, 0.1);
    border: 1px solid rgba(255, 86, 1, 0.25);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ff8f55;
}

.cta a {
    background: var(--accent);
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    transition: 0.25s;
}

.cta a:hover {
    background: #ff6a1f;
    box-shadow: 0 0 22px var(--accent-glow);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: min(92%, 460px);
    max-height: 85vh;
    overflow-y: auto;
    background: #000000;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 34px 28px 26px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.65);
    text-align: center;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal h2 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.modal p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.modal a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.modal .author {
    font-size: 12.5px;
    color: #666;
    font-style: italic;
}

.close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: 0.2s;
    line-height: 1;
}

.close:hover {
    color: #fff;
    border-color: var(--accent);
    background: rgba(255, 86, 1, 0.12);
}

@media (max-width: 600px) {
    .hero {
        height: 54vh;
        min-height: 320px;
    }

    .content {
        padding: 6px 18px 70px;
    }

    .section {
        padding: 34px 0;
    }

    h1 {
        font-size: 1.7rem;
    }

    .top-bar {
        padding: 14px 16px;
    }

    .modal {
        padding: 28px 20px 22px;
    }

    .menu-box {
        right: 16px;
        top: 64px;
    }
}

.battle-pass {
    width: 60px;
    height: 60px;
    position: absolute;
    margin-top: -10px;
    border: transparent;
    -webkit-appearance: none;
    -webkit-user-drag: none;
}