body {
    margin: 0;
    padding: clamp(1.5rem, 3vw, 3rem) clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 4rem);
    font-family: system-ui, sans-serif;
    background: #111;
    color: #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
    min-height: 100vh;
    box-sizing: border-box;
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding: 0.5rem;
    width: min(1100px, 100%);
    margin: 0 auto;
}

.text-block {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 560px;
    align-items: center;
}

h1 {
    font-size: clamp(2.4rem, 3vw + 1.5rem, 3.4rem);
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
}

p {
    margin: 0;
    font-size: clamp(1rem, 1vw + 0.9rem, 1.2rem);
    line-height: 1.7;
}

.cta-line {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.steam-link {
    color: #cfdfff;
    font-weight: 600;
    text-decoration: none;
}

.steam-link:hover {
    color: #e5ecff;
    text-decoration: underline;
}

.steam-link .cta-icon {
    display: block;
}

.cta-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    background: #0a1a30;
}

.hero-image {
    width: min(90vw, 520px);
    max-height: 65vh;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.screenshots {
    width: min(1100px, 100%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.screenshots h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2vw + 1rem, 2.1rem);
}

/* Multilingual Section Styles */
.multilingual {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    line-height: 1.75;
}

.multilingual h2 {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.multilingual h3 {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: #ffd46b; /* highlight language headers */
}

.multilingual p {
    font-size: 1rem;
    color: #ddd;
    margin: 0.5rem 0 1rem;
    max-width: 900px;
}

.multilingual hr {
    margin: 2.5rem 0;
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-content: center;
    gap: 1rem;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    object-fit: cover;
}

.video-section {
    width: min(100%, 900px);
    margin: 0 auto;
    text-align: center;
    display: block;
}

.video-section h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.6rem, 2vw + 1rem, 2.1rem);
}

.video-wrapper {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.description {
    width: min(900px, 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    line-height: 1.7;
    margin: clamp(1.75rem, 3vw, 3rem) auto 0;
    padding: 0 0.5rem;
}

.description h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2vw + 1rem, 2.1rem);
    text-align: center;
}

.kit-embed {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1.5rem 1rem 0;
    font-size: 0.82rem;
    color: #b5b5b5;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: inherit;
    color: inherit;
}

@media (min-width: 900px) {
    .content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 3rem;
    }

    .text-block {
        align-items: flex-start;
    }

    .hero-image {
        width: clamp(360px, 30vw, 480px);
    }
}

@media (max-width: 540px) {
    body {
        padding: 1.25rem 1rem 2rem;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .hero-image {
        width: min(94vw, 520px);
    }
}
