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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 0;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

.letters-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.letter-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.letter-link:hover {
    background: #3498db;
    color: #fff;
    transform: scale(1.1);
}

.letter-link:active {
    transform: scale(0.95);
}

/* Страницы букв */
.letter-page {
    padding: 20px 0;
}

.letter-page h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.dreams-list {
    list-style: none;
}

.dreams-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.dreams-list li:hover {
    background: #e8f4f8;
}

.dreams-list a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
}

.dreams-list a:hover {
    color: #3498db;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    color: #3498db;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Секция о толковании снов */
.about-section {
    margin-top: 60px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.about-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.about-section p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* Страница толкования */
.dream-interpretation {
    padding: 20px 0;
}

.dream-interpretation h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    text-transform: capitalize;
}

.interpretation-text {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.interpretation-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.interpretation-text p:last-child {
    margin-bottom: 0;
}

.nav-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #3498db;
    text-decoration: none;
    padding: 10px 20px;
    background: #ecf0f1;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: #3498db;
    color: #fff;
}

/* Адаптивность для мобильных */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .letter-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .letter-page h2 {
        font-size: 1.5rem;
    }

    .dreams-list li {
        padding: 12px 15px;
    }

    .dreams-list a {
        font-size: 1rem;
    }
}
