* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
}

.header {
    background-color: #4a76b5;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.header img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    object-fit: cover;
}

.header-text {
    display: flex;
    flex-direction: column;
}

.header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.back-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.season-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.season {
    display: flex;
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.season-image {
    flex: 0 0 120px;
    margin-right: 20px;
}

.season-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.season-content {
    flex: 1;
}

.season-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.season-title h2 {
    font-size: 18px;
    margin-right: 10px;
}

.star-rating {
    display: inline-block;
    background-color: #2a5caa;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 12px;
    margin-right: 10px;
}

.episode-count {
    color: #666;
    font-size: 14px;
}

.release-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 768px) {
    .season {
        flex-direction: column;
    }
    
    .season-image {
        display: none;
    }
}

.season-title h2 a{
    color: #4a76b5;
    text-decoration: none;
}

.release-date a{
    color: #01b4e4;
    text-decoration: none;
}

.placeholder-img a{
    color: #01b4e4;
    text-decoration: none;
}