* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0d0c;
    color: #e7e9e6;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}


/* ---------------- NAVIGATION ---------------- */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 30px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo,
.footer-logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
}

.logo span,
.footer-logo span {
    color: #8fa37c;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #9b9f9b;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #ffffff;
}


/* ---------------- HERO ---------------- */

.hero {
    min-height: 100vh;
    max-width: 1200px;
    margin: auto;

    padding: 180px 30px 100px;

    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: #8fa37c;
    font-size: 12px;
    letter-spacing: 4px;
    font-weight: bold;
    margin-bottom: 25px;
}

h1 {
    font-size: clamp(60px, 10vw, 125px);
    line-height: 0.85;
    letter-spacing: -5px;
    font-weight: 900;
}

h1 span {
    color: #8fa37c;
    display: block;
}

.hero-text {
    max-width: 600px;
    margin-top: 35px;

    color: #9b9f9b;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.button {
    display: inline-block;
    padding: 14px 25px;

    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;

    transition: 0.2s;
}

.primary {
    background: #8fa37c;
    color: #0b0d0c;
}

.primary:hover {
    background: #a9ba98;
}

.secondary {
    border: 1px solid #454a46;
    color: #d9ddd8;
}

.secondary:hover {
    border-color: #8fa37c;
}


/* Decorative crosshair */

.hero-decoration {
    position: absolute;
    right: -100px;
    width: 500px;
    height: 500px;

    border: 1px solid #252a27;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0.6;
}

.crosshair {
    width: 230px;
    height: 230px;
    border: 1px solid #303630;
    border-radius: 50%;

    position: relative;
}

.crosshair::before {
    content: "";
    position: absolute;

    width: 1px;
    height: 100%;

    background: #303630;

    left: 50%;
}

.crosshair::after {
    content: "";
    position: absolute;

    width: 100%;
    height: 1px;

    background: #303630;

    top: 50%;
}


/* ---------------- SECTIONS ---------------- */

.section {
    max-width: 1200px;
    margin: auto;
    padding: 130px 30px;

    border-top: 1px solid #202421;

    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 70px;
}

.section-label {
    color: #687068;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: bold;
}

.section-content {
    max-width: 750px;
}

.section h2 {
    font-size: clamp(40px, 6vw, 75px);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 35px;
}

.section p {
    color: #969b96;
    max-width: 700px;
    margin-bottom: 20px;
}


/* ---------------- GAME ---------------- */

.game-card {
    min-height: 420px;

    padding: 60px;

    border: 1px solid #303530;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    background:
        linear-gradient(
            135deg,
            rgba(143, 163, 124, 0.08),
            transparent 50%
        );
}

.game-info {
    max-width: 650px;
}

.game-category {
    color: #8fa37c !important;
    font-size: 11px !important;
    letter-spacing: 2px;
    font-weight: bold;
}

.game-card h2 {
    margin: 10px 0 20px;
    font-size: clamp(45px, 7vw, 85px);
}

.game-card p {
    margin-bottom: 30px;
}

.game-number {
    color: #303630;
    font-size: 100px;
    font-weight: 900;
}


/* ---------------- PHILOSOPHY ---------------- */

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.philosophy-grid div {
    border-top: 1px solid #3b403c;
    padding-top: 25px;
}

.philosophy-grid span {
    color: #8fa37c;
    font-size: 12px;
    letter-spacing: 2px;
}

.philosophy-grid h3 {
    margin: 20px 0 15px;
    font-size: 17px;
    letter-spacing: 1px;
}

.philosophy-grid p {
    font-size: 14px;
}


/* ---------------- CONTACT ---------------- */

.contact-content {
    max-width: 750px;
}

.contact h2 span {
    color: #8fa37c;
}

.email {
    display: inline-block;
    margin-top: 20px;

    color: #8fa37c;
    font-size: 18px;
    text-decoration: none;

    border-bottom: 1px solid #8fa37c;
    padding-bottom: 5px;
}


/* ---------------- FOOTER ---------------- */

footer {
    max-width: 1200px;
    margin: auto;
    padding: 40px 30px;

    border-top: 1px solid #202421;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    color: #626762;
    font-size: 12px;
}


/* ---------------- MOBILE ---------------- */

@media (max-width: 700px) {

    .navbar {
        padding: 25px 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 10px;
    }

    .hero {
        padding: 150px 20px 80px;
    }

    h1 {
        letter-spacing: -3px;
    }

    .hero-decoration {
        right: -250px;
        opacity: 0.25;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 90px 20px;
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .game-card {
        padding: 30px;
        min-height: 350px;
    }

    .game-number {
        display: none;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 30px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}