body {
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


.header {
    background-color: #1a1a1a;
    color: white;
    padding: 1rem 0;
    position: sticky; 
    top: 0;
    z-index: 1000;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; 
    justify-content: center;
    gap: 30px;
}

.nav-menu li a {
    color: #b3b3b3;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 15px;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ffffff;
    background-color: #cc0000; 
    text-decoration: underline;
}

.main-title, .section-title {
    text-align: center;
    color: #cc0000;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 20px;
}

.section {
    margin-bottom: 40px;
}

.card {
    background-color: #1c1c1c;
    border-left: 5px solid #cc0000;
    border-right: 5px solid #cc0000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.character-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.character-card {
    background-color: #1c1c1c;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #cc0000;
    border-right: 5px solid #cc0000;
}

.character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.5);
}

.character-card img {
    width: 100%;
    height: auto;
    display: block;
}

.character-card h3 {
    color: #cc0000;
    margin-top: 15px;
}

.character-card p {
    font-size: 0.9em;
    padding: 0 15px 15px;
}

.episode-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.episode-item {
    background-color: #1c1c1c;
    border-left: 5px solid #cc0000;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.episode-item h3 {
    margin: 0 0 10px;
    color: #e0e0e0;
}

.watch-now-container {
    text-align: center;
    margin-top: 40px;
}

.watch-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #cc0000;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.watch-button:hover {
    background-color: #ff3333;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.comment-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #e0e0e0;
}

.comment-form input[type="text"],
.comment-form textarea {
    padding: 10px;
    border: 1px solid #555;
    background-color: #2a2a2a;
    color: #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.comment-form input[type="text"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #cc0000;
    box-shadow: 0 0 5px rgba(204, 0, 0, 0.5);
}

.comment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    align-self: flex-start;
    padding: 12px 25px;
    background-color: #cc0000;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background-color: #ff3333;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    color: #888;
    margin-top: 40px;
}

/*responsive*/

@media screen and (max-width: 768px) {
  .content {
    padding: 10px; 
  }
  .character-section {
    justify-content: center;
  }
}

@media screen and (min-width: 769px) {
  .nav-menu li a {
    font-size: 1.2rem;
  }
}