:root {
    --primary: #4A90E2;
    --primary-dark: #357ABD;
    --secondary: #7B68EE;
    --success: #50C878;
    --warning: #FFA500;
    --danger: #FF6B6B;
    --light: #F8F9FA;
    --dark: #343A40;
    --gray: #6C757D;
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
    color: var(--dark);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}

/* Exam Menu */
.exam-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    min-height: 100%;
    background: white;
}

.exam-header {
    text-align: center;
    margin-bottom: 40px;
}

.exam-header h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.exam-header p {
    font-size: 1.1rem;
    color: var(--gray);
    margin: 0;
}

.exam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 900px;
}

/* Mode selection */
.mode-selection {
    text-align: center;
    padding: 40px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mode-selection h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.mode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.mode-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.mode-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mode-card h3 {
    font-size: 1.4rem;
    margin: 0 0 12px 0;
    color: var(--dark);
}

.mode-card p {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

.exam-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.exam-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.exam-actions .btn {
    width: 100%;
    margin: 2px 0;
}

.exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.exam-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.exam-card h3 {
    font-size: 1.4rem;
    margin: 0 0 12px 0;
    color: var(--dark);
}

.exam-card p {
    font-size: 1rem;
    color: var(--gray);
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.exam-stats {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
    background: #f1f7ff;
    padding: 8px 15px;
    border-radius: 20px;
    width: 100%;
    text-align: center;
}

/* Main App */
.main-app {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Header */
.header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: white;
    padding: 20px 30px;
    text-align: center;
}

.header h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.stats-left {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.stats-right {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.test-mode-selector {
    display: flex;
    align-items: center;
}

.test-mode-selector select {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.test-mode-selector select:hover {
    background: rgba(255, 255, 255, 0.3);
}

.test-mode-selector select option {
    background: var(--dark);
    color: white;
}

.stat {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 30px;
}

/* Card */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin: 25px 0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid #e9ecef;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-front, .card-back {
    transition: var(--transition);
}

.hidden {
    display: none !important;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.category, .difficulty, .question-number {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category {
    background: #E3F2FD;
    color: var(--primary);
}

.difficulty {
    background: #FFF3CD;
    color: #856404;
}

.question-number {
    background: #E8F5E9;
    color: var(--success);
}

#question-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--dark);
}

#answer-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--dark);
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6C757D;
    color: white;
}

.btn-secondary:hover {
    background: #5A6268;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-warning {
    background: var(--warning);
    color: white;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.card-actions, .answer-actions, .controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Test Mode */
.options-container {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.test-actions {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.test-actions .btn {
    min-width: 150px;
}

.option {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 18px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    text-align: left;
}

.option:hover {
    background: #f8f9fa;
    border-color: var(--primary);
}

.option.selected {
    background: #E3F2FD;
    border-color: var(--primary);
    color: var(--primary-dark);
}

.option.correct {
    background: #D4EDDA;
    border-color: var(--success);
    color: #155724;
}

.option.incorrect {
    background: #F8D7DA;
    border-color: var(--danger);
    color: #721C24;
}

#test-feedback {
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 1.1rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.theme-list {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.theme-btn {
    padding: 12px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: left;
}

.theme-btn:hover {
    background: #e9ecef;
}

.theme-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
}

.progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    width: 0%;
    transition: width 0.5s ease;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0;
        min-height: 100vh;
    }

    .header, .main-content, .footer {
        padding: 15px;
    }

    .header {
        padding: 15px 10px;
        min-height: auto;
    }

    .header h1 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .header h1 i {
        margin-bottom: 5px;
    }

    .stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .stat {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .test-mode-selector {
        order: -1; /* Помещаем селект первым */
        margin-bottom: 10px;
    }

    .exam-header h1 {
        font-size: 1.8rem;
    }

    .exam-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 10px;
    }

    .question-container {
        padding: 15px 10px;
    }

    .question-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .category, .difficulty, .question-number {
        font-size: 0.75rem;
    }

    .card {
        padding: 20px 15px;
        min-height: 200px;
        margin: 15px 0;
    }

    #question-text {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    #answer-text {
        font-size: 1rem;
        padding: 15px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-height: 40px;
    }

    .btn i {
        margin-right: 5px;
    }

    .card-actions, .answer-actions, .controls {
        flex-direction: column;
        gap: 10px;
    }

    .controls {
        padding: 0 10px 15px;
    }

    .card-actions .btn, .answer-actions .btn, .controls .btn {
        width: 100%;
    }

    .options-container {
        gap: 10px;
        margin: 15px 0;
    }

    .option {
        padding: 12px;
        font-size: 1rem;
    }

    .test-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .test-actions .btn {
        width: 100%;
        margin-bottom: 5px;
    }

    .progress-bar {
        margin-bottom: 10px;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
    }

    .mode-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mode-card {
        min-height: 200px;
        padding: 20px;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 480px) {
    .container {
        font-size: 14px;
    }

    .header {
        padding: 10px 5px;
    }

    .header h1 {
        font-size: 1.1rem;
    }

    .stats {
        flex-wrap: wrap;
    }

    .stat, .test-mode-selector select {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .exam-grid {
        padding: 10px 5px;
        gap: 12px;
    }

    .exam-card, .mode-card {
        padding: 20px 15px;
    }

    .exam-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .exam-card h3, .mode-card h3 {
        font-size: 1.2rem;
        margin: 0 0 8px 0;
    }

    .exam-card p, .mode-card p {
        font-size: 0.9rem;
    }

    .card {
        padding: 15px;
        min-height: 180px;
    }

    #question-text {
        font-size: 1rem;
    }

    .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-height: 36px;
    }

    .option {
        padding: 10px;
        font-size: 0.95rem;
    }

    .question-header {
        gap: 6px;
    }

    .category, .difficulty, .question-number {
        font-size: 0.7rem;
        padding: 4px 8px;
    }

    .footer {
        padding: 15px 10px;
    }

    /* Убедимся, что контент не обрезается на маленьких экранах */
    body {
        margin: 0;
        overflow-x: hidden;
        min-height: 100vh;
    }

    .container {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden; /* Предотвращаем появление прокрутки */
    }

    .main-app {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 1px; /* Важно для корректной работы flex */
    }

    .main-content {
        flex: 1;
        min-height: 0; /* Позволяет контенту сжиматься */
        overflow-y: auto; /* Добавляем прокрутку, если контент большой */
    }

    /* Дополнительная адаптация для очень длинных текстов на мобильных */
    #question-text, #answer-text, #test-question {
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
    }

    /* Выпадающее меню для мобильных устройств */
    .more-options {
        position: relative;
    }

    .more-btn {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: white;
        font-size: 1.2rem;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        min-width: 200px;
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        display: block;
        padding: 12px 16px;
        text-decoration: none;
        color: var(--dark);
        border-bottom: 1px solid #eee;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background-color: #f8f9fa;
    }

    .dropdown-item i {
        margin-right: 10px;
        width: 16px;
        text-align: center;
    }

    /* Скрытие и отображение элементов в зависимости от размера экрана */
    .desktop-buttons {
        display: flex;
        gap: 10px;
    }

    .mobile-menu {
        display: none;
    }
}

/* Мобильные стили для выпадающего меню */
@media (max-width: 768px) {
    .desktop-buttons {
        display: none;
    }

    .mobile-menu {
        display: block;
        margin: 0 5px;
    }

    .stats {
        flex-wrap: wrap;
    }

    /* Делаем кнопку "Меню" компактнее на мобильных */
    #back-to-menu-btn {
        min-width: auto;
        padding: 8px 12px;
    }

    /* Исправляем позиционирование выпадающего меню на мобильных */
    .dropdown-menu {
        position: absolute;
        top: calc(100% + 5px); /* Располагаем под кнопкой */
        right: 0;
        min-width: 200px;
        max-width: 90vw;
        z-index: 1000;
    }

    /* На мобильных устройствах показываем меню по центру */
    @media (max-width: 768px) {
        .dropdown-menu {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 220px;
            max-width: 90%;
            max-height: 70vh;
            overflow-y: auto;
        }
    }
}

    #back-to-menu-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Убедимся, что на десктопе бургер-меню и его элементы скрыты */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }

    .desktop-toolbar {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: flex-end;
    }

    /* Убедимся, что все возможные элементы меню скрыты на десктопе */
    .mobile-dropdown-menu,
    .mobile-dropdown-item {
        display: none !important;
    }

    .toolbar-container {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .desktop-toolbar {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .mobile-menu {
        margin-left: 10px; /* Добавляем отступ для бургер-меню */
    }
}

/* Стили для мобильного бургер-меню */
.mobile-menu {
    position: relative;
    display: none;
}

.menu-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    margin-left: 10px;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 200px;
    display: none;
}

.mobile-dropdown-menu.show {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--dark);
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    background-color: #f8f9fa;
}

.mobile-dropdown-item i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

/* Стили для мобильной версии статистики */
.mobile-stats {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.mobile-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}

.mobile-mode-selector {
    margin: 0;
    flex: 1;
}

.mobile-mode-selector select {
    width: 100%;
}

/* Скрытие десктопных элементов и отображение мобильных на маленьких экранах */
@media (max-width: 768px) {
    .desktop-stats,
    .desktop-toolbar {
        display: none !important;
    }

    .mobile-stats {
        display: flex !important;
    }

    .mobile-menu {
        display: flex !important;
        margin-left: 5px;
    }

    .header-top-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 10px;
    }

    .mobile-controls-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 5px;
    }

    /* Стили для мобильного меню в заголовке */
    .header-mobile-menu {
        display: none;
    }

    /* Центрирование бургер-меню в мобильной версии для обоих режимов */
    @media (max-width: 768px) {
        .mobile-controls-row {
            justify-content: center;
            position: relative;
        }

        .mobile-menu {
            margin: 0 auto;
            justify-content: center;
        }

        /* Показываем мобильное меню в заголовке на мобильных устройствах */
        .header-mobile-menu {
            display: flex;
            margin: 0;
        }

        /* Скрываем десктопные кнопки в мобильной версии */
        .desktop-toolbar {
            display: none;
        }

        /* Скрываем прогресс в пользу мобильного формата */
        .desktop-stats {
            display: none;
        }

        /* Показываем мобильную статистику */
        .mobile-stats {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        /* Для заголовка убираем отступы и центрируем */
        .header {
            padding: 15px 10px;
            flex-direction: column;
            align-items: center;
        }

        .header-top-row {
            width: 100%;
            justify-content: space-between;
        }
    }

    /* Для мобильной версии убираем отступы в заголовке */
    .header {
        padding: 15px 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header h1 {
        align-self: center;
        width: 100%;
        text-align: center;
    }

    /* Специфичные стили для заголовка в мобильной версии */
    @media (max-width: 768px) {
        /* В мобильной версии для режима тестирования */
        .header-top-row {
            align-items: center;
        }

        .header-mobile-menu {
            order: 1; /* Размещаем справа */
        }

        /* Заголовок - слева */
        .header-top-row h1 {
            order: 0;
            flex: 1;
            text-align: left;
        }

        /* Выравнивание для заголовка в режиме обучения */
        .header-top-row h1 {
            margin: 0;
        }
    }

    /* Выравниваем элементы управления по ширине */
    .test-mode-selector {
        width: auto;
    }

    /* Делаем селектор режима компактнее на мобильных */
    .mobile-mode-selector select {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
}

@media (min-width: 769px) {
    .mobile-stats {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

    .desktop-stats {
        display: flex !important;
        align-items: center;
        gap: 10px;
    }

    .desktop-toolbar {
        display: flex !important;
    }

    /* Для десктопа сохраняем горизонтальное выравнивание */
    .stats {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}

    .desktop-dropdown-item {
        display: block;
        padding: 12px 16px;
        text-decoration: none;
        color: var(--dark);
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s;
    }

    .desktop-dropdown-item:last-child {
        border-bottom: none;
    }

    .desktop-dropdown-item:hover {
        background-color: #f8f9fa;
    }
}

/* На мобильных устройствах показываем бургер-меню */
@media (max-width: 768px) {
    .desktop-toolbar {
        display: none; /* Полностью скрываем тулбар в мобильной версии */
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
    }

    .mobile-menu {
        display: block !important;
        margin: 0 5px;
    }

    /* Располагаем бургер-меню справа */
    .toolbar-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
    }

    /* Показываем меню только при активации */
    .dropdown-menu:not(.show) {
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }
}