@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');

/* =========================
   BASE
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #111;
    color: #fff;
    overflow-x: hidden;
}

/* =========================
   LAYOUT CONTAINER (FIXED)
   IMPORTANT: NO FLEX HERE ANYMORE
========================= */

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================
   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);
}

/* =========================
   CONTACT PAGE BASE
========================= */

/* HERO */
.contact-hero {
    padding: 10rem 0 6rem;
    text-align: center;
}

.contact-hero h1 {
    font-family: "Press Start 2P", system-ui;
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    color: #cfcfcf;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* DISCORD CTA */
.discord-cta {
    display: inline-block;
    margin-bottom: 3rem;

    padding: 0.9rem 1.4rem;
    border-radius: 12px;

    background: #5865f2;
    color: white;
    text-decoration: none;

    font-weight: 700;
    transition: 0.2s ease;
}

.discord-cta:hover {
    transform: translateY(-2px);
}

/* EMAIL BOXES */
.email-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;

    max-width: 600px;
    margin: 0 auto;
}

.email-list div {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    padding: 1rem;
    border-radius: 12px;

    color: #cfcfcf;
}

.email-list span {
    color: #63d471;
    font-weight: 700;
}

/* FORM SECTION */
.contact-form-section {
    padding: 6rem 0 10rem;
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: "Press Start 2P", system-ui;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #cfcfcf;
}

/* FORM */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    color: white;

    padding: 1rem;
    border-radius: 12px;

    font-family: 'Inter', sans-serif;
}

.contact-form textarea {
    min-height: 180px;
    margin-bottom: 1.5rem;
    resize: vertical;
}

/* button */
.contact-form button {
    width: 100%;
    padding: 1rem;

    background: #63d471;
    color: black;

    border: none;
    border-radius: 12px;

    font-weight: 800;
    cursor: pointer;

    transition: 0.2s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .email-list {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }
}

/* =========================
   FORM SECTION
========================= */

.contact-form-section {
    padding: 4rem 0 6rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);

    padding: 2rem;
    border-radius: 18px;
}

/* grid inputs */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

input, select, textarea {
    width: 100%;

    padding: 0.9rem 1rem;
    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.4);

    color: #fff;

    outline: none;
}

textarea {
    min-height: 160px;
    resize: vertical;
    margin-bottom: 1rem;
}

/* button */
button {
    width: 100%;
    padding: 1rem;

    border: none;
    border-radius: 12px;

    background: #63d471;
    color: #000;

    font-weight: 800;
    cursor: pointer;

    transition: 0.2s ease;
}

button:hover {
    transform: translateY(-2px);
    background: #52c162;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 800px) {

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }
}

/* =========================
   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;
    }
}