/* Основные стили */
:root {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --text-color: #1f2937;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

/* Градиенты и эффекты */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
}

.section-glow {
    position: relative;
}

.section-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 70%),
                radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.1), transparent 70%);
    pointer-events: none;
}

/* Кнопки */
.neon-button {
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
}

.neon-button:hover {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
    transform: translateY(-2px);
}

/* Карточки */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

/* Стили для контента */
.content-section {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Стили для плана урока */
.lesson-section {
    background-color: #f0f4ff;
    border-left: 4px solid #365ddf;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
    color: var(--text-color);
}

.lesson-title {
    font-weight: bold;
    font-size: 20px;
    color: #365ddf;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.lesson-title .emoji {
    margin-right: 10px;
    font-size: 24px;
}

.lesson-content {
    margin-left: 10px;
    color: var(--text-color);
}

/* Стили для различных блоков */
.teacher-speech {
    background-color: #e9f7fe;
    border-left: 3px solid #4dabf7;
    padding: 15px;
    margin: 15px 0;
    font-style: italic;
    border-radius: 4px;
    color: var(--text-color);
}

.illustration {
    background-color: #fff8e6;
    border-left: 3px solid #ffd43b;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    color: var(--text-color);
}

.group-task {
    background-color: #f3f0ff;
    border-left: 3px solid #7950f2;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    color: var(--text-color);
}

.conclusion {
    background-color: #e6fcf5;
    border-left: 3px solid #20c997;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    font-weight: bold;
    color: var(--text-color);
}

.homework {
    background-color: #fff5f5;
    border-left: 3px solid #ff6b6b;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    color: var(--text-color);
}

/* Стили для переключателя форматов */
.format-switcher {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}

.format-button {
    padding: 10px 20px;
    border: 2px solid #365ddf;
    background: var(--bg-white);
    color: #365ddf;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.format-button.active {
    background: #365ddf;
    color: var(--bg-white);
}

/* Стили для онлайн-версии */
.online-specific {
    background-color: #f8f9fa;
    border-left: 4px solid #20c997;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    color: var(--text-color);
}

.zoom-instructions {
    background-color: #e9f7fe;
    border-left: 3px solid #4dabf7;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
    color: var(--text-color);
}

/* Утилиты */
.hidden {
    display: none;
}

/* Специфичные стили для header */
.nav-link {
    position: relative;
    color: #4b5563;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #3b82f6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #3b82f6;
}

.nav-link.active::after {
    width: 100%;
} 