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

html {
    scroll-behavior: smooth;
}

body {
    background: #0f1115;
    color: #e4d6b0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

a {
    color: #d7b36a;
    text-decoration: none;
}

a:hover {
    color: #f2cf88;
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 40px;

    background: rgba(15,17,21,0.95);
    border-bottom: 1px solid #242932;
    backdrop-filter: blur(10px);
}

.logo a {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #d7b36a;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul a {
    color: #d8d8d8;
    transition: 0.2s;
}

nav ul a:hover {
    color: #d7b36a;
}

.hero {
    min-height: 85vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.75)
        ),
        url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee")
        center center / cover no-repeat;
}

.hero-content {
    max-width: 850px;
    padding: 20px;
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 20px;
    letter-spacing: 6px;
    color: #f0d08a;
}

.hero p {
    font-size: 22px;
    color: #e2e2e2;
    margin-bottom: 35px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;

    background: #d7b36a;
    color: #111;

    border-radius: 6px;
    font-weight: bold;

    transition: 0.2s;
}

.btn:hover {
    background: #f0cb7a;
    color: #000;
}

section {
    max-width: 1200px;
    margin: auto;
    padding: 70px 30px;
}

section h2 {
    color: #d7b36a;
    margin-bottom: 25px;
    font-size: 34px;
}

section p {
    color: #d8d8d8;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 24px;
    margin-top: 30px;
}

.card {
    background: #171c24;

    border: 1px solid #242932;
    border-radius: 10px;

    padding: 24px;

    transition: 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    border-color: #d7b36a;
}

.card h3 {
    color: #f0d08a;
    margin-bottom: 12px;
}

.card p {
    margin-bottom: 15px;
}

.characters {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 15px;
    margin-top: 25px;
}

.characters div {
    background: #171c24;
    border: 1px solid #242932;
    border-radius: 8px;

    padding: 16px;
    text-align: center;

    transition: 0.2s;
}

.characters div:hover {
    border-color: #d7b36a;
}

.updates {
    margin-top: 20px;
    padding-left: 25px;
}

.updates li {
    margin-bottom: 10px;
}

footer {
    margin-top: 60px;

    text-align: center;

    padding: 40px 20px;

    border-top: 1px solid #242932;

    color: #888;
}

footer p {
    margin-bottom: 10px;
}

@media (max-width: 900px) {

    nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .hero p {
        font-size: 18px;
    }

    section {
        padding: 50px 20px;
    }
}