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

        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, -apple-system, sans-serif;
            background: #eef2f7;
            color: #1f2e3f;
            line-height: 1.4;
            padding-top: 10px;
        }

        /* ========= ШАПКА ========= */
        .header {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(6px);
            box-shadow: 0 1px 12px rgba(0, 0, 0, 0.03);
            padding: 12px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
            position: relative;
            z-index: 10;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .logo-link img {
            height: 120px;
            width: auto;
            display: block;
            transition: 0.2s;
        }

        .company-details {
            line-height: 1.3;
        }
        .company-name {
            font-weight: 800;
            font-size: 1.1rem;
            color: #1f2e3f;
        }
        .company-license {
            font-size: 0.7rem;
            color: #5f6f82;
        }
        .company-tagline {
            font-size: 0.75rem;
            font-weight: 500;
            color: #225AA6;
            margin-top: 4px;
        }

        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .nav-link, .phone-link, .max-badge, .contact-btn {
            transition: 0.2s;
            text-decoration: none;
        }
        .nav-link {
            background: #225AA6;
            color: white;
            padding: 8px 18px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        .nav-link:hover { background: #15447a; transform: scale(1.02);}

        .phone-link {
            background: linear-gradient(135deg, #FF9A6E, #FF6B3D);
            color: white;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: bold;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(255,107,61,0.2);
        }
        .phone-link:hover { background: #e55a2c; transform: scale(1.02);}

        .max-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #f0f2f5;
            padding: 6px 14px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.85rem;
            color: #1f2e3f;
        }
        .max-badge:hover { background: #e0e4e9; transform: scale(1.02);}
        .max-badge svg { width: 20px; height: 20px; }

        .contact-btn {
            background: #225AA6;
            color: white;
            padding: 8px 20px;
            border-radius: 12px;
            font-weight: 500;
        }
        .contact-btn:hover { background: #15447a; }

        /* Бургер */
        .fixed-burger {
            display: none;
            position: fixed;
            top: 16px;
            right: 16px;
            z-index: 1100;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(8px);
            border: none;
            padding: 12px;
            border-radius: 14px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.1);
        }
        .fixed-burger span {
            width: 26px;
            height: 3px;
            background: #1f2e3f;
            border-radius: 3px;
            transition: 0.3s;
        }

        .mobile-nav-panel {
            position: fixed;
            top: 0;
            right: -80%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: #ffffff;
            box-shadow: -8px 0 28px rgba(0,0,0,0.1);
            z-index: 1050;
            transition: right 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
            padding: 90px 24px 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            overflow-y: auto;
        }
        .mobile-nav-panel.open {
            right: 0;
        }
        .mobile-nav-panel a {
            display: block;
            text-align: center;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 14px;
            border-radius: 40px;
            text-decoration: none;
        }
        .mobile-nav-panel .nav-link {
            background: #225AA6;
            color: white;
        }
        .mobile-nav-panel .phone-link {
            background: #FF6B3D;
            color: white;
        }
        .mobile-nav-panel .max-badge {
            background: #f0f2f5;
            color: #1f2e3f;
            justify-content: center;
        }
        .mobile-nav-panel .contact-btn {
            background: #225AA6;
            color: white;
        }

        .overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.25);
            z-index: 1040;
            transition: opacity 0.3s;
        }
        .overlay.show {
            display: block;
        }

        @media (max-width: 800px) {
            .desktop-nav {
                display: none;
            }
            .fixed-burger {
                display: flex;
            }
            .header {
                padding: 12px 20px;
                justify-content: center;
            }
            .header-left {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 10px;
            }
            .logo-link img {
                height: 180px;
            }
            .company-details {
                margin-top: -60px;
            }
        }

        /* ========= СЛОГАН ========= */
        .hero {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin: 36px 5% 12px;
        }
        .hero-logo img {
            height: 70px;
            width: auto;
            display: block;
        }
        .hero-text {
            display: flex;
            align-items: baseline;
            gap: 6px;
            font-size: 1.9rem;
            font-weight: 800;
        }
        .hero-dash {
            color: #2c3e66;
            font-size: 1.9rem;
            font-weight: 700;
        }
        .hero-slogan-main {
            color: #225AA6;
            font-size: 1.9rem;
            font-weight: 800;
            background: transparent;
        }
        .hero-subline {
            text-align: center;
            font-size: 1.3rem;
            font-weight: 700;
            background: linear-gradient(135deg, #2C3E50, #4CA1AF);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 5px 5% 20px;
            letter-spacing: 0.3px;
        }
        @media (max-width: 700px) {
            .hero-text, .hero-dash, .hero-slogan-main {
                font-size: 1.5rem;
            }
            .hero-subline {
                font-size: 1rem;
            }
            .hero-logo img {
                height: 55px;
            }
        }

        /* ========= КАРУСЕЛЬ (ШИРОКАЯ, БЕЗ ПЕРЕКРЫТИЯ КНОПКАМИ) ========= */
        .carousel-block {
            max-width: 1200px;
            margin: 30px auto 50px;
            padding: 0 5%;
        }
        .carousel {
            position: relative;
            overflow: hidden;
            border-radius: 36px;
            background: transparent;
        }
        .slides-wrapper {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        .slide {
            flex: 0 0 100%;
            padding: 40px 30px;
            text-align: center;
            font-size: 1.4rem;
            font-weight: 500;
            line-height: 1.5;
            color: #1e3a4d;
            border-radius: 36px;
            background: white;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            border-left: 6px solid #225AA6;
        }
        .slide strong {
            color: #225AA6;
        }
        /* Кнопки карусели — полупрозрачные, не перекрывают текст */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(8px);
            border: none;
            font-size: 2.2rem;
            cursor: pointer;
            padding: 5px 18px;
            border-radius: 60px;
            color: #225AA6;
            font-weight: bold;
            transition: 0.2s;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .carousel-btn:hover {
            background: #225AA6;
            color: white;
        }
        .prev {
            left: 15px;
        }
        .next {
            right: 15px;
        }
        /* На мобильных кнопки чуть меньше и ещё более прозрачные */
        @media (max-width: 700px) {
            .carousel-btn {
                font-size: 1.8rem;
                padding: 4px 14px;
                background: rgba(255,255,255,0.7);
            }
            .slide {
                padding: 30px 20px;
                font-size: 1.1rem;
            }
        }
        .dots {
            text-align: center;
            margin: 20px 0 10px;
        }
        .dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #cbd5e0;
            border-radius: 20px;
            margin: 0 6px;
            cursor: pointer;
            transition: 0.2s;
        }
        .dot.active {
            background: #225AA6;
            width: 28px;
        }

        /* ========= МАРАФОН (без подложки, просто текст) ========= */
        .marathon-section {
            text-align: center;
            margin: 20px 5% 30px;
        }
        .marathon-title {
            display: inline-block;
            font-weight: 800;
            font-size: 1.7rem;
            color: #1f2e3f;
            background: transparent;
            padding: 0;
        }
        .marathon-title .arrow {
            font-size: 1.6rem;
            color: #225AA6;
            display: inline-block;
            animation: flagPulse 0.8s ease-in-out infinite alternate;
        }
        @keyframes flagPulse {
            from { transform: scale(1); }
            to { transform: scale(1.2); }
        }
        @media (max-width: 600px) {
            .marathon-title { font-size: 1.2rem; }
            .marathon-title .arrow { font-size: 1.2rem; }
        }

        /* ========= ВИДЕО-СЕКЦИЯ (два видео) ========= */
        .video-section {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 0 5%;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        .video-container {
            flex: 1 1 420px;
            background: #ffffff;
            border-radius: 36px;
            padding: 20px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.05);
            border: 1px solid #eef2f6;
        }
        .video-title {
            font-weight: 700;
            font-size: 1.2rem;
            color: #225AA6;
            margin-bottom: 15px;
            text-align: center;
            border-bottom: 2px solid #e2e8f0;
            padding-bottom: 10px;
        }
        .video-placeholder {
            background: #f0f4fc;
            border-radius: 24px;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .video-placeholder iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .coming-soon {
            font-weight: 600;
            color: #225AA6;
            text-align: center;
        }

        /* ========= БЛОК УРОКОВ (ДЕНЬ 1, МОДУЛЬНЫЕ ШАГИ) ========= */
        .daily-lesson {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 5% 40px;
        }
        .lesson-day-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 800;
            color: #225AA6;
            margin-bottom: 35px;
            letter-spacing: -0.5px;
        }
        /* Каждый шаг — независимый контейнер */
        .step-block {
            background: white;
            border-radius: 40px;
            padding: 30px 32px;
            margin-bottom: 48px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            border: 1px solid #eef2f8;
        }
        .step-title {
            font-weight: 800;
            font-size: 1.6rem;
            margin-bottom: 12px;
            color: #225AA6;
            text-align: left;
            border-left: 5px solid #225AA6;
            padding-left: 20px;
        }
        .step-sub {
            font-weight: 600;
            font-size: 1.15rem;
            color: #2c3e66;
            margin-bottom: 15px;
            text-align: left;
        }
        .step-goal {
            background: #eef2fc;
            border-radius: 60px;
            padding: 8px 22px;
            display: inline-block;
            margin: 0 0 20px 0;
            font-weight: 500;
            color: #225AA6;
        }
        .step-description {
            font-size: 1rem;
            color: #2c3e50;
            margin-bottom: 25px;
            text-align: left;
        }
        /* Универсальный контейнер для любого контента (видео, аудио, iframe, текст) */
        .step-content {
            margin-top: 20px;
        }
        .step-content iframe,
        .step-content video,
        .step-content audio {
            max-width: 100%;
            border-radius: 24px;
        }
        .step-content p, .step-content ul {
            margin-bottom: 1rem;
        }
        /* Для аудио-плеера */
        audio {
            width: 100%;
            margin: 10px 0;
        }
        /* Кнопка завершения дня (зелёная) */
        .complete-day-btn {
            display: flex;
            justify-content: center;
            margin: 40px 0 20px;
        }
        .day-complete {
            background: #2ecc71;
            color: white;
            padding: 16px 48px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            transition: 0.2s;
            box-shadow: 0 8px 20px rgba(46,204,113,0.3);
            border: none;
            cursor: pointer;
            display: inline-block;
        }
        .day-complete:hover {
            background: #27ae60;
            transform: scale(1.02);
            box-shadow: 0 12px 24px rgba(46,204,113,0.4);
        }

        /* Мобильное центрирование заголовков шагов */
        @media (max-width: 680px) {
            .step-title, .step-sub, .step-goal, .step-description {
                text-align: center;
            }
            .step-title {
                border-left: none;
                padding-left: 0;
                text-align: center;
            }
            .step-goal {
                display: block;
                margin-left: auto;
                margin-right: auto;
                width: fit-content;
            }
        }

        /* Кнопка записи на урок (внизу) */
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #FF9A6E, #FF6B3D);
            color: white;
            padding: 14px 44px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            margin: 20px auto 60px;
            box-shadow: 0 12px 24px rgba(255,107,61,0.3);
            transition: 0.2s;
        }
        .cta-button:hover { transform: scale(1.02); box-shadow: 0 18px 30px rgba(255,107,61,0.4); }

        /* Стили для будущих игр (Drag & Drop) — сохранены */
        .game-container, .words-grid, .word, .drop-zone, .sentences, .action-bar, .check-btn, .reset-btn {
            /* стили остаются для будущих блоков */
        }
    
    /* ========= СТИЛИ ДЛЯ DRAG & DROP ИГРЫ ========= */
.game-container {
    background: transparent;
    padding: 0;
    margin: 0;
}

.words-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    background: #fef9e8;
    padding: 20px 18px;
    border-radius: 48px;
    margin-bottom: 30px;
    border: 2px solid #ffe6c7;
    box-shadow: inset 0 1px 4px #0001, 0 6px 12px -8px rgba(0,0,0,0.1);
    justify-content: center;
    min-height: 110px;
}

.word {
    background: white;
    border: none;
    padding: 10px 20px;
    border-radius: 100px;
    cursor: grab;
    user-select: none;
    transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    font-weight: 600;
    font-size: 1rem;
    color: #1f3b4c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #ffe0b5;
}
.word:active { cursor: grabbing; }
.word.dragging {
    opacity: 0.4;
    cursor: grabbing;
}
.word:hover {
    transform: translateY(-3px);
    background: #fff5e6;
    border-color: #f7b05e;
    box-shadow: 0 12px 16px -10px rgba(0,0,0,0.15);
}

.sentences {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 38px;
    margin: 20px 0 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}
.sentence {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.5;
    color: #1f2e3a;
    background: #fdfdfd;
    padding: 8px 12px;
    border-radius: 28px;
    transition: 0.1s;
    border: 1px solid #eef2f6;
}

.drop-zone {
    display: inline-block;
    min-width: 105px;
    height: 32px;
    border-bottom: 3px solid #3498db;
    background: #f0f7fe;
    margin: 0 6px;
    vertical-align: middle;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 20px;
    padding: 0 10px;
    color: #1e4663;
    transition: all 0.15s;
    box-shadow: inset 0 0 0 1px #ffffff80, 0 1px 2px rgba(0,0,0,0.02);
}
.drop-zone.hover {
    background: #cfe7ff;
    border-bottom: 3px dashed #f39c12;
    transform: scale(1.02);
}
.drop-zone.correct {
    color: #2c6e2c !important;
    border-bottom: 3px solid #2ecc71 !important;
    background: #e0f7e8 !important;
}
.drop-zone.wrong {
    color: #c0392b !important;
    border-bottom: 3px solid #e74c3c !important;
    background: #ffe6e5 !important;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.action-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.check-btn, .reset-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    font-family: inherit;
}
.check-btn {
    background: #3498db;
    color: white;
}
.check-btn:hover {
    background: #217dbb;
    transform: scale(1.02);
}
.reset-btn {
    background: #f39c12;
    color: #2c3e2f;
}
.reset-btn:hover {
    background: #e67e22;
    color: white;
    transform: scale(1.02);
}

.info-message {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: #4a627a;
    background: #ecf5fc;
    display: inline-block;
    width: auto;
    padding: 6px 18px;
    border-radius: 50px;
}

@media (max-width: 620px) {
    .word { padding: 6px 14px; font-size: 0.85rem; }
    .drop-zone { min-width: 80px; font-size: 0.8rem; }
    .sentence { font-size: 0.9rem; }
}

/* Убираем излишние отступы и ограничения ширины на мобильных */
@media (max-width: 768px) {
  .daily-lesson,
  .step-block,
  .mode-box,
  .match-game-container,
  .flashcard-area,
  .test-question {
    max-width: 100% !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .flip-card2 {
    max-width: 100% !important;
  }
  .match-tile {
    max-width: 100% !important;
  }
}
/* фото на карточках */

.day1step6-card-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}