* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: #0a1a2a; /* Тёмно‑синий фон */
    color: #e0d0b0; /* Бежевый текст */
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 20px;
}

/* Фон с луной */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 80% 20%, #1a2a4a 0%, #050a15 70%);
}

.moon {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f0e68c; /* Цвет луны */
    box-shadow: 0 0 40px rgba(240, 230, 140, 0.5);
    z-index: -1;
}

/* Шапка */
.header {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(10, 26, 42, 0.8);
    border-bottom: 1px solid #8b4513;
}

.header h1 {
    color: #8b0000; /* Тёмно‑красный */
    font-size: 2.2rem;
    text-shadow: 0 0 10px rgba(139, 0, 0, 0.3);
}

.header h2 {
    color: #d4af37; /* Золотой */
    font-size: 1.6rem;
    margin-top: 0.5rem;
}

/* Основной контент */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Предупреждение */
.warning-box {
    background: rgba(139, 0, 0, 0.1);
    padding: 1.2rem;
    border-left: 4px solid #8b0000;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

/* Заголовки разделов */
h3 {
    color: #d4af37;
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
    position: relative;
}

h3::before {
    content: '✦';
    position: absolute;
    left: -1.5rem;
    color: #8b0000;
}

/* Списки */
ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

li {
    margin-bottom: 0.6rem;
}

/* Шаги ритуала */
.step {
    background: rgba(20, 30, 40, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(139, 69, 19, 0.4);
    margin-bottom: 1.5rem;
}

.step h4 {
    color: #ff6b1f; /* Оранжевый */
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

/* Цитата */
blockquote {
    font-style: italic;
    padding: 1rem 1.5rem;
    background: rgba(30, 40, 50, 0.5);
    border-left: 3px solid #8b4513; /* Коричневый */
    margin: 1rem 0;
    line-height: 1.7;
}

/* Нумерованный список подготовки */
ol li {
    position: relative;
}

ol {
    counter-reset: step-counter;
}

ol li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    background: #8b0000;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Футер */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(10, 26, 42, 0.9);
    border-top: 1px solid #8b4513;
    color: #a0a0a0;
    font-style: italic;
    margin-top: 2rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .header h2 {
        font-size: 1.3rem;
    }
    
    .content {
        padding: 1.5rem 0.8rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .step {
        padding: 1.2rem;
    }
}