/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #f2f2f2;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #ff6347;
    color: white;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

p {
    font-size: 1.2em;
}

nav {
    background-color: #333;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

#home {
    text-align: center;
    margin-bottom: 40px;
}

.banner {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 99, 71, 0.8);
    transition: transform 0.3s;
}

.banner:hover {
    transform: scale(1.03);
}

h2 {
    font-size: 2em;
    color: #ffcc00;
    margin-bottom: 20px;
    text-align: center;
}

#news {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.news-item {
    background-color: #333;
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 99, 71, 0.8);
}

.news-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #ffcc00;
}

.news-content {
    font-size: 1em;
    margin-bottom: 10px;
}

.news-date {
    font-size: 0.9em;
    color: #ccc;
}

.characters {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.character {
    text-align: center;
    margin: 10px;
    padding: 15px;
    background-color: #444;
    border-radius: 10px;
    width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.character img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.character:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
}

.episodes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.episode {
    background-color: #555;
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

form label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
}

form button {
    background-color: #ff6347;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
}

form button:hover {
    background-color: #e5533d;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #ccc;
}
