@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);
}

/* =========================
   GLOBAL CONTAINER
========================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================
   PAGE HERO
========================= */

.page-hero {
    padding: 6rem 1rem 4rem;
    text-align: center;
}

.page-hero {
    padding-top: 12rem;
}

.va-section {
    padding: 4rem 0 6rem;
}

.page-hero h1 {
    font-family: "Press Start 2P", system-ui;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: #cfcfcf;
    line-height: 1.7;
}

/* =========================
   VA SECTION WRAPPER
========================= */

.va-section {
    padding: 4rem 0 7rem;
}

/* each team block */
.va-team {
    margin-bottom: 5rem;
}

/* team title block */
.va-team-title {
    text-align: center;
    margin-bottom: 2rem;
}

.va-team-title h2 {
    font-family: "Press Start 2P", system-ui;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.va-team-title p {
    color: #cfcfcf;
}

/* =========================
   PLAYER GRID (IMPORTANT FIX)
========================= */

.va-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

/* =========================
   PLAYER CARD
========================= */

.va-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 18px;
    padding: 1.5rem;

    text-align: center;

    transition: 0.25s ease;
}

.va-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,212,113,0.3);
}

/* avatar */
.va-skin {
    width: 90px;
    height: 90px;

    border-radius: 12px;
    margin-bottom: 1rem;

    image-rendering: pixelated;
}

/* name */
.va-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

/* role */
.role {
    color: #63d471;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* =========================
   LINKS (CLEAN BUTTON STYLE)
========================= */

.links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.links a {
    text-decoration: none;

    padding: 0.4rem 0.7rem;
    border-radius: 8px;

    font-size: 0.85rem;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);

    color: #fff;

    transition: 0.2s ease;
}

.links a:hover {
    background: rgba(99,212,113,0.15);
    border-color: rgba(99,212,113,0.4);
}

/* =========================
   RESPONSIVE FIX
========================= */

@media (max-width: 900px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .va-team-grid {
        grid-template-columns: 1fr;
    }
}

.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;
    }
}