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

/* BASE */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0b0f;
    color: #e0e0e0;
    line-height: 1.7;
}

h1, h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #000, #111 60%, #1a1a2e);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, #000);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 6rem;
    color: #7f5af0;
}

.tagline {
    font-size: 1.3rem;
    margin: 20px 0;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid #7f5af0;
    color: #7f5af0;
    transition: 0.3s;
}

.btn:hover {
    background: #7f5af0;
    color: #000;
}

/* NAV */
.main-nav {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(6px);
    z-index: 10;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.main-nav li {
    margin: 15px;
}

.main-nav a {
    color: #aaa;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #7f5af0;
}

/* SECTIONS */
.section {
    padding: 100px 20px;
}

.section.dark {
    background: #0b0b0f;
}

.section.city {
    background: linear-gradient(180deg, #0b0b0f, #111122);
}

.section.enemy {
    background: linear-gradient(180deg, #111122, #1a0f1f);
}

.section.legacy {
    background: radial-gradient(circle at top, #1a1a2e, #000);
}

.container {
    max-width: 1100px;
    margin: auto;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.quote blockquote {
    font-size: 2rem;
    font-style: italic;
    color: #7f5af0;
}

/* LISTS */
.traits {
    list-style: none;
    margin: 30px 0;
}

.traits li {
    margin: 10px 0;
    font-size: 1.1rem;
}

/* TIMELINE */
.timeline .event {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.timeline span {
    color: #7f5af0;
    font-weight: bold;
}

/* FOOTER */
.footer {
    padding: 40px 20px;
    text-align: center;
    background: #050507;
}

.footer .small {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .split {
        grid-template-columns: 1fr;
    }
}
