:root {
    --bg: #0b0b0d;
    --card: #16161a;
    --text: #ffffff;
    --muted: #a1a1aa;
    --accent: #4ade80;
}

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

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, #0b0b0d, #111115);
    color: var(--text);
    line-height: 1.6;
}

.hero {
    text-align: center;
    padding: 80px 20px 60px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.tagline {
    max-width: 680px;
    margin: 0 auto 40px;
    color: var(--muted);
    font-size: 1.1rem;
}
.video-container {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 74px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.description {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
    color: var(--muted);
}

.games {
    padding: 60px 20px 80px;
}

.games h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: var(--card);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.game-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    margin-bottom: 12px;
}

.game-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.game-card .screenshot {
    width: 100%;
    border-radius: 12px;
    margin-top: 8px;
}

.coming-soon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--muted);
    font-style: italic;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
    font-size: 0.9rem;
}


/* App Store CTA */
.appstore-cta {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.appstore-button {
    text-decoration: none;
    background: linear-gradient(180deg, #2c2c30, #1a1a1e);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 16px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.appstore-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.badge-text {
    font-size: 0.7rem;
    color: #d4d4d8;
    letter-spacing: 0.03em;
}

.badge-store {
    font-size: 1.2rem;
    font-weight: 600;
}
