/* ODY // ANTI-SLOP DESIGN SYSTEM */
:root {
    --bg-color: #050505;
    --text-primary: #E0E0E0;
    --text-secondary: #666666;
    --accent: #FF3300;
    /* International Orange */
    --accent-dim: #4a1205;
    --grid-line: #1a1a1a;

    --font-display: 'Unbounded', cursive;
    --font-mono: 'JetBrains Mono', monospace;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--accent);
    color: var(--bg-color);
}

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

/* BACKGROUND FX */
.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* CHANGE THIS PATH TO YOUR IMAGE */
    background-image: url('../assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
    opacity: 0.15;
    /* Low opacity to blend with black background */
    filter: grayscale(100%);
    /* Optional: keep it street/monochrome */
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    opacity: 0.5;
    pointer-events: none;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: -1;
}

/* NAV CORNERS */
.nav-corners {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    padding: 30px;
}

.corner {
    position: absolute;
    pointer-events: auto;
}

.top-left {
    top: 30px;
    left: 30px;
}

.top-right {
    top: 30px;
    right: 30px;
}

.bottom-left {
    bottom: 30px;
    left: 30px;
}

.bottom-right {
    bottom: 30px;
    right: 30px;
}

.logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.nav-link {
    font-family: var(--font-mono);
    text-decoration: none;
    color: var(--text-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--accent);
    text-decoration: line-through;
}

.status-indicator {
    font-size: 0.8rem;
    color: var(--accent);
    animation: blink 2s infinite;
}

.scroll-down {
    writing-mode: vertical-rl;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-center {
    text-align: center;
    z-index: 2;
    mix-blend-mode: exclusion;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 8vw;
    line-height: 0.8;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -4px;
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 2px var(--text-primary);
}

.hero-meta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* MARQUEE */
.marquee-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%) rotate(-5deg) scale(1.2);
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.marquee-content {
    font-family: var(--font-display);
    font-size: 15vh;
    font-weight: 900;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
section {
    padding: 150px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.line {
    width: 100%;
    height: 1px;
    background: var(--text-secondary);
    opacity: 0.3;
}

/* ROSTER LIST */
.roster-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Tight packing */
}

.roster-item {
    border-top: 1px solid #222;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.roster-item:hover {
    padding-left: 50px;
    background: #0a0a0a;
}

.roster-item:last-child {
    border-bottom: 1px solid #222;
}

.member-name {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    transition: color 0.3s;
}

.roster-item:hover .member-name {
    color: var(--accent);
}

.member-role {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* DOWNLOAD GRID */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    background: #222;
    /* Creates borders via gap */
    border: 1px solid #222;
}

.dl-card {
    background: var(--bg-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    text-decoration: none;
    color: var(--text-primary);
    transition: background 0.3s;
    position: relative;
}

.dl-card:hover {
    background: #0a0a0a;
}

.dl-card.card-accent {
    background: #0f0f0f;
}

.dl-card.card-accent:hover {
    background: var(--accent-dim);
}

.dl-header {
    font-family: var(--font-mono);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dl-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1;
}

.dl-content p {
    color: var(--text-secondary);
}

.dl-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.dl-action {
    color: var(--accent);
}

/* FOOTER */
footer {
    margin-top: 100px;
    border-top: 1px solid #222;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.marquee-content-slow {
    font-family: var(--font-display);
    font-size: 5rem;
    color: #111;
    white-space: nowrap;
    animation: scroll 40s linear infinite reverse;
}

.footer-links {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.footer-links a:hover {
    color: var(--accent);
}

/* ANIMATIONS */
.reveal-text {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: transform 1.5s var(--ease-out-expo), opacity 1.5s, clip-path 1.5s var(--ease-out-expo);
}

.reveal-text.active {
    transform: translateY(0);
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 15vw;
    }

    .roster-list {
        gap: 10px;
    }

    .roster-item {
        padding: 20px 0;
        border: none;
    }

    .member-name {
        font-size: 2rem;
    }

    .nav-corners .corner {
        display: none;
    }

    .nav-corners .top-left {
        display: block;
        left: 20px;
        top: 20px;
    }
}