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

:root {
    --bg-primary: #0d1329;
    --bg-secondary: #1a2140;
    --bg-card: #252b4a;
    --accent-pink: #ff3b6f;
    --accent-pink-dark: #cc2f59;
    --accent-blue: #4a6cf7;
    --accent-orange: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: #8892b0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #0a0f1f 100%);
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
}

.app {
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
}

.menu-screen {
    padding: 40px 20px;
    min-height: 100vh;
}

.menu-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.games-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.game-card {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.game-card:hover {
    transform: translateX(4px);
    background: var(--bg-card);
}

.game-card:active {
    transform: scale(0.98);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.card-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 16px;
}

.card-icon {
    font-size: 36px;
}

/* Game-specific backgrounds */
.shlyapa-bg {
    background: linear-gradient(135deg, #ff6b6b 0%, #c92a2a 100%);
}

.kto-iz-nas-bg {
    background: linear-gradient(135deg, #ff922b 0%, #e8590c 100%);
}

.zayac-bg {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.heads-up-bg {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.five-seconds-bg {
    background: linear-gradient(135deg, #ff9500 0%, #e68600 100%);
}

.taboo-bg {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
}

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

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Responsive */
@media (max-height: 600px) {
    .menu-screen {
        padding: 20px 16px;
    }

    .menu-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .card-image {
        width: 64px;
        height: 64px;
    }

    .card-icon {
        font-size: 28px;
    }
}
