/* ===== ОБЩИЕ НАСТРОЙКИ ===== */
* {
    box-sizing: border-box;
}

:root {
    --accent-color: #c00; /* Красный по умолчанию */
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: radial-gradient(circle at top, #1a1a1a, #000);
    color: #d0d0d0;
    line-height: 1.7;
}

h1, h2 {
    letter-spacing: 2px;
}

/* ===== ШАПКА ===== */
header {
    padding: 60px 20px 40px;
    text-align: center;
    background: linear-gradient(to bottom, #111, #000);
    border-bottom: 1px solid #300;
}

header h1 {
    font-size: 3rem;
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

header p {
    font-style: italic;
    opacity: 0.8;
}

/* ===== НАВИГАЦИЯ (ВКЛАДКИ) ===== */
nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #050505;
    border-bottom: 1px solid #400;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav a {
    padding: 15px 20px;
    text-decoration: none;
    color: #aaa;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Линия под вкладкой */
nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

/* Цвет при наведении */
nav a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

nav a:hover::after {
    width: 100%;
}

/* Активная вкладка */
nav a.active {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

nav a.active::after {
    width: 100%;
}

/* ===== КОНТЕНТ ===== */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    color: var(--accent-color);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    padding-left: 12px;
}

section p {
    margin-bottom: 16px;
}

/* ===== ЦИТАТЫ ===== */
.quote {
    margin: 30px 0;
    padding: 20px;
    border-left: 3px solid var(--accent-color);
    background: rgba(100, 0, 0, 0.15);
    font-style: italic;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

/* ===== КНОПКА НАВЕРХ ===== */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    padding: 12px 16px;
    font-size: 18px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    display: none;
    transition: background 0.3s ease;
}

.scroll-top:hover {
    background: var(--accent-color);
    opacity: 0.9;
}

/* ===== ФУТЕР ===== */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
    border-top: 1px solid #300;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 700px) {
    nav {
        flex-wrap: wrap;
    }

    header h1 {
        font-size: 2.2rem;
    }
}
