/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f3f3f3;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Заголовок */
h1 {
    color: #ff6b6b;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Стили списка аниме */
#anime-list {
    width: 100%;
    max-width: 600px;
}

#anime-items {
    list-style: none;
    padding: 0;
}

#anime-items li {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#anime-items li:hover {
    background-color: #ffebeb;
}

/* Стили деталей аниме */
#anime-details {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    display: none; /* Прячем, пока не выбрано аниме */
}

#anime-title {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 10px;
}

#anime-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

#anime-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

#anime-reviews {
    list-style: none;
    padding: 0;
}

#anime-reviews li {
    margin-bottom: 5px;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

/* Кнопка "Назад" */
button {
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e55757;
}
