:root {
    --bg: #0b0d10;
    --mut: #11151a;
    --card: #141a21;
    --txt: #e6edf3;
    --soft: #9fb0c0;
    --acc: #77b7ff;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--txt);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
}

header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #1f2530;
    position: sticky;
    top: 0;
    background: rgba(11, 13, 16, .8);
    backdrop-filter: blur(8px);
    z-index: 10;
}

.brand {
    font-weight: 600;
    font-size: 18px;
    color: var(--txt);
    text-decoration: none;
    transition: color 0.2s;
}

.brand:hover {
    color: var(--acc);
}

nav {
    margin-left: auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: var(--txt);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--acc);
    text-decoration: none;
    /* underline yok */
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
}

.cover {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #2a3646;
}

.facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 14px 0;
}

.fact {
    background: var(--mut);
    border: 1px solid #2a3646;
    border-radius: 10px;
    padding: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.grid img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #2a3646;
}

.foot {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #1f2530;
    margin-top: 24px;
    color: var(--soft);
    font-size: 14px;
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
    }

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

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

#long p {
    margin-bottom: 1em;
    line-height: 1.5;
}

#long ul {
    padding-left: 1.2em;
    margin-bottom: 1em;
}

#long ul li {
    list-style-type: disc;
    margin-bottom: 0.5em;
}

@media(max-width:640px) {
    .grid {
        grid-template-columns: 1fr;
    }
}