:root {
    --primary-color: #ff6600;
    --background-color: #121212;
    --text-color: #ffffff;
    --secondary-color: #333;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--background-color);
    color: var(--text-color);
}

nav {
    background: var(--primary-color);
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
}

section {
    padding: 50px;
    text-align: center;
}

.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.anime-item {
    text-align: center;
    transition: transform 0.2s ease-in-out;
    width: 100%;
}

.anime-item:hover {
    transform: scale(1.05);
}

.anime-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.anime-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    word-wrap: break-word;
}