/* Общие стили для тренажера */

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

:root {
    --primary: #e67e22;
    --success: #6b8e23;
    --error: #c0392b;
    --warning: #f59e0b;
    --bg-light: #fdfbf7;
    --bg-dark: #2b2b2b;
    --border: #dcd9d0;
    --text: #2b2b2b;
    --text-light: #666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f3ef 0%, #f0ebe5 100%);
    color: var(--text);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Экран меню */
.menu-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.menu-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.menu-card h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--primary);
}

.menu-card > p {
    font-size: 1.1em;
    color: var(--text-light);
    margin-bottom: 40px;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateX(5px);
}

.menu-btn:hover .btn-desc {
    color: rgba(255, 255, 255, 0.8);
}

.btn-title {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.btn-desc {
    font-size: 0.9em;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.menu-btn.stats-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}

.menu-btn.stats-btn,
.menu-btn.stats-btn .btn-title,
.menu-btn.stats-btn .btn-desc {
    color: white;
}

/* Адаптивность */
@media (max-width: 600px) {
    .menu-card {
        padding: 20px;
    }

    .menu-card h1 {
        font-size: 1.8em;
    }

    .menu-btn {
        padding: 15px;
    }
}
