:root {
    --text-primary: #101010;
    --text-muted: #777;
    --accent: #fea01c;
    --bg-dark: #000;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    background: #fff;
}

.container {
    width: min(1000px, 90%);
    margin: 0 auto;
}

.hero {
    background: var(--bg-dark);
    padding: 0;
    overflow: hidden;
}

.hero img {
    display: block;
    width: 100%;
    height: clamp(220px, 36vw, 520px);
    object-fit: cover;
    object-position: center;
}

.intro {
    max-width: 680px;
    margin: 7% auto 5%;
    text-align: center;
}

.intro h1 {
    margin: 0 0 1em;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.25;
}

.intro p {
    margin: 0;
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
}

.products {
    max-width: 680px;
    margin: 0 auto 8%;
}

.products h2 {
    margin: 0 0 3rem;
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.game-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 24px;
    align-items: start;
    max-width: 320px;
    margin: 0 auto;
}

.game-card__icon {
    margin: 0;
}

.game-card__icon img {
    display: block;
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 25%;
    margin: 0 auto;
}

.game-card__content h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.download-badge {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.download-badge img {
    display: block;
    height: 35px;
    width: auto;
}

.download-badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #080808;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

.support-link {
    margin: 12px 0 0;
}

.support-link a {
    color: var(--accent);
    text-decoration: none;
}

.support-link a:hover {
    text-decoration: underline;
}

.site-footer {
    border-top: 1px solid #efefef;
    padding: 24px 16px;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
}

.site-footer a {
    color: var(--text-muted);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .game-card {
        gap: 16px;
        grid-template-columns: 120px 1fr;
    }

    .download-badge img {
        height: 28px;
    }

    .download-badge-text {
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    .hero img {
        height: 52vw;
        min-height: 200px;
    }

    .products h2 {
        margin-bottom: 2rem;
    }

    .game-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .game-card__icon img {
        max-width: 150px;
    }

    .download-badge img {
        height: 42px;
        margin: 0 auto;
    }

    .download-badge-text {
        font-size: 14px;
    }
}