*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:
        linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
        url('../images/background-map.png') center/150% auto;
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

.landing {
    max-width: 800px;
    width: 100%;
    padding: 60px 24px;
    text-align: center;
    flex: 1;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Title */
.landing h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25em;
}

.landing .subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 48px;
}

/* Steam wishlist button */
.steam-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(to bottom, #4d8ab5 0%, #376b8f 50%, #2a5576 51%, #1a3a52 100%);
    color: #c6d4df;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 12px 28px;
    border-radius: 4px;
    border: 1px solid #1b2c3c;
    margin-bottom: 48px;
    transition: filter 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.steam-btn:hover {
    filter: brightness(1.15);
    color: #fff;
}

.steam-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Screenshot Carousel */
.carousel {
    position: relative;
    margin: 0 auto 48px;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    border: 1px solid #222;
}

.carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    z-index: 2;
}

.carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.carousel-dot.active {
    background: #fff;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    display: block;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 600px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* Platform icons */
.platforms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 64px;
}

.platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
    text-decoration: none;
}

.platform:hover {
    color: #fff;
}

.platform svg,
.platform img {
    width: 40px;
    height: 40px;
}

/* FAQ */
.faq {
    text-align: left;
    margin-bottom: 64px;
}

.faq h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    text-align: center;
}

.faq-item {
    border-top: 1px solid #222;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid #222;
}

.faq-item summary {
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #555;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item .answer {
    margin-top: 12px;
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item .answer a {
    color: #6bf;
    text-decoration: none;
}

.faq-item .answer a:hover {
    text-decoration: underline;
}

/* What's New subsections */
.answer .whatsnew-section {
    margin-top: 24px;
}

.answer .whatsnew-section:first-child {
    margin-top: 4px;
}

.answer h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid #2a2a2a;
}

.answer h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ccc;
    margin-top: 14px;
    margin-bottom: 6px;
}

.answer p {
    margin-bottom: 12px;
}

.answer blockquote {
    margin: 16px 0 8px;
    padding: 8px 16px;
    border-left: 3px solid #444;
    color: #ccc;
    font-style: italic;
}

.answer blockquote p {
    margin-bottom: 0;
}

.answer blockquote em {
    font-style: italic;
    color: #ddd;
}

.answer ul {
    margin-left: 20px;
    margin-bottom: 8px;
}

.answer ul ul {
    margin-top: 4px;
    margin-bottom: 4px;
}

.answer li {
    margin-bottom: 3px;
    color: #aaa;
}

/* Footer */
.footer {
    text-align: center;
    padding: 24px;
    color: #444;
    font-size: 0.8rem;
    border-top: 1px solid #111;
    width: 100%;
}

.footer a {
    color: #666;
    text-decoration: none;
}

.footer a:hover {
    color: #aaa;
}

/* Responsive */
@media (max-width: 600px) {
    .landing {
        padding: 40px 16px;
    }

    .landing h1 {
        font-size: 2.5rem;
    }

    .landing .subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .platforms {
        gap: 20px;
    }

    .platform svg,
    .platform img {
        width: 32px;
        height: 32px;
    }
}
