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

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    min-height: 100vh;
    background: var(--bg-page);
}

.site-wrapper {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 24px 32px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.site-header {
    text-align: center;
    margin-bottom: 40px;
}

.site-logo {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 3px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.site-tagline {
    font-size: 15px;
    color: var(--text-tertiary);
    font-weight: 700;
}

/* Games section */
.section-title {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.games-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: var(--bg-card);
    border: 2.5px solid var(--border-card);
    border-radius: 20px;
    box-shadow: var(--shadow-subtle);
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.game-card:active {
    transform: translateY(0);
}

.game-card.coming-soon {
    opacity: 0.55;
    cursor: default;
    border-style: dashed;
}

.game-card.coming-soon:hover {
    transform: none;
    box-shadow: var(--shadow-subtle);
}

.game-card-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface-alt);
    border-radius: 14px;
}

.game-card-body {
    flex: 1;
    min-width: 0;
}

.game-card-body h3 {
    font-size: 16px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.game-card-body p {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 600;
    line-height: 1.4;
}

.player-count {
    display: inline-block;
    margin-top: 4px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-purple-dark);
    background: var(--accent-purple-bg);
    border-radius: 50px;
}

.game-card-arrow {
    font-size: 20px;
    color: var(--accent-purple-light);
    flex-shrink: 0;
    font-weight: 900;
    transition: transform 0.15s, color 0.15s;
}

.game-card:hover .game-card-arrow {
    transform: translateX(4px);
    color: var(--accent-purple);
}

/* Footer */
.site-footer {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.feedback-link {
    padding: 10px 24px;
    border: 1.5px solid var(--border-accent);
    border-radius: 50px;
    background: var(--bg-overlay-soft);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, transform 0.12s;
}
.feedback-link:hover {
    background: var(--bg-card);
    color: var(--text-primary);
    transform: scale(1.04);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-copy);
    font-weight: 700;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 640px) {
    .site-wrapper { padding: 32px 16px 24px; }
    .site-logo { font-size: 44px; }
    .site-tagline { font-size: 13px; }
    .game-card { padding: 16px 18px; gap: 12px; }
    .game-card-body h3 { font-size: 15px; }
}
