@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #111;
    color: white;
    overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    width: 90%;
    max-width: 1400px;

    margin: auto;

    display: flex;
    align-items: center;

    justify-content: flex-start; /* IMPORTANT */

    gap: 2.5rem;

    height: 90px;
}

.logo img {
    height: 128px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;

    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
        font-size: 0.7rem;
font-family: "Press Start 2P", system-ui;
    position: relative;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: #63d471;
}

/* underline animation */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background: #63d471;
    transition: 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    margin-left: auto;
    display: flex;
    gap: 1rem;
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.btn {
    display: inline-block;

    text-decoration: none;
    color: #fff;

    padding: 0.9rem 1.5rem;
    border-radius: 12px;

    font-weight: 700;
    transition: 0.3s ease;
}

/* base icon button */
.icon-btn {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.2s ease;

    backdrop-filter: blur(8px);
}

.icon-btn img {
    width: 20px;
    height: 20px;
}

/* hover effects */
.icon-btn:hover {
    transform: translateY(-2px);
}

/* platform colors */
.icon-btn.youtube:hover {
    background: rgba(196, 48, 43, 0.2);
    border-color: rgba(196, 48, 43, 0.5);
}

.icon-btn.discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
}

.primary { background: #63d471; color: #000; }
.secondary { border: 2px solid #fff; }

.secondary:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;
    letter-spacing: 2px;

    background-image:
        linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.72)),
        url('../img/backgrounds/landing-hero.jpg');

    background-size: cover;
    background-position: center;
}

.hero-content {
    width: 90%;
    max-width: 1400px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 4rem;
}

.hero-left {
    flex: 1;

    background: rgba(0,0,0,0.45);

    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    padding: 3rem;
    border-radius: 24px;
}

.hero-left h1 {
    font-size: 3rem;
    font-weight: 900;

    font-family: "Press Start 2P", system-ui;
    margin-bottom: 1rem;
}

.hero-left h2 {
    font-size: 2rem;
    color: #63d471;
    margin-bottom: 1.5rem;
}

.hero-left p {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.primary:hover,
.secondary:hover,
.youtube-btn:hover,
.discord-btn:hover {
    transform: translateY(-3px);
}

.hero-right img {
    width: 100%;
    max-width: 600px;

    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.1);

    box-shadow: 0 0 40px rgba(99,212,113,0.2);
}

/* =========================
   ABOUT
========================= */

.about {
    padding: 8rem 0;
    background: #181818;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;

    font-family: "Press Start 2P", system-ui;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
}

.feature-grid {
    width: 90%;
    max-width: 1400px;

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 20px;
    padding: 2rem;

    text-align: center;

    backdrop-filter: blur(10px);

    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 80px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* =========================
   SEASON SHOWCASE
========================= */

.season-showcase {
    padding: 8rem 0;

    background:
        linear-gradient(to bottom, #181818, #101010);
}

.season-container {
    width: 90%;
    max-width: 1400px;

    margin: auto;

    display: flex;
    align-items: center;
    gap: 4rem;
}

.season-image,
.season-info {
    flex: 1;
}

.season-image img {
    width: 100%;
    border-radius: 24px;

    box-shadow: 0 0 40px rgba(99,212,113,0.15);
}

.season-tag {
    display: inline-block;

    padding: 0.5rem 1rem;
    margin-bottom: 1rem;

    background: rgba(99,212,113,0.15);
    color: #63d471;

    border-radius: 999px;
    font-weight: 700;
}

.season-info h2 {
    font-size: 3rem;
    font-weight: 900;

    font-family: "Press Start 2P", system-ui;
    margin-bottom: 1.5rem;
}

/* =========================
   VALUE STRIP
========================= */

.value-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;

    padding: 2rem;
    background: #101010;

    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.value-item {
    color: #cfcfcf;
    font-weight: 600;
}

/* =========================
   MINI ABOUT
========================= */

.mini-about {
    padding: 5rem 0;
    text-align: center;
    background: #181818;
}

.mini-about p {
    max-width: 700px;
    margin: auto;

    color: #cfcfcf;
    line-height: 1.8;
}

/* =========================
   VOICE ACTORS
========================= */

.va-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.va-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 20px;
    padding: 2rem;

    text-align: center;
    transition: 0.3s ease;
}

.va-card:hover {
    transform: translateY(-5px);
}

.va-skin {
    width: 96px;
    height: 96px;

    margin-bottom: 1rem;
    image-rendering: pixelated;
}

.role {
    color: #63d471;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.links a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 0.9rem;
}

.links a:hover {
    color: #63d471;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 4rem 0 2rem;
}

/* grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* column styling */
.footer-col h3 {
    font-family: "Press Start 2P", system-ui;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #63d471;
}

/* text */
.footer-col p {
    color: #bdbdbd;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* links */
.footer-col a {
    display: block;
    color: #cfcfcf;
    text-decoration: none;

    margin-bottom: 0.6rem;

    transition: 0.2s ease;
}

.footer-col a:hover {
    color: #63d471;
}

/* small print */
.small {
    font-size: 0.85rem;
    color: #8a8a8a;
}

/* responsive */
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =========================
   GLOBAL CONTAINER
========================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

