:root {
    --main-bg: #1e1e1e;
    --card-bg: #2c2c2c;
    --text-light: #ffffff;
    --accent: #e63946;
    --highlight: #f1c40f;
}

.ct-container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    background-color: var(--main-bg);
    margin-top: 10px;
    box-shadow: rgba(200, 161, 37) 0px 0 20px -2px,
        rgba(200, 161, 37, 0.2) 0px 3px 13px -3px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 25px;
}
/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    .ct-container {
        padding: 0.5rem;
        border-radius: 12px;
        box-shadow: rgba(200, 161, 37, 0.6) 0px 0 12px -2px;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) */
@media (min-width: 480px) and (max-width: 768px) {
    .ct-container {
        padding: 0.75rem;
        border-radius: 16px;
        box-shadow: rgba(200, 161, 37, 0.8) 0px 0 16px -2px;
    }
}
.ct-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ct-cover {
    flex: 1 1 300px;
}

.ct-cover img {
    width: 100%;
    border-radius: 8px;
}

.ct-info {
    flex: 2 1 400px;
}

.ct-info h1 {
    font-size: 2.5rem;
    color: var(--highlight);
    margin-bottom: 1rem;
}

.ct-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

.ct-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.ct-btn {
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.ct-btn:hover {
    background: #b02a37;
}

.ct-episode-list {
    margin-bottom: 2rem;
}

.ct-more {
    text-align: center;
    margin: 30px 0;
}

.ct-episode-list h2,
.ct-related h2 {
    margin-bottom: 1rem;
    color: var(--highlight);
    font-size: 1.5rem;
}

.ct-episode {
    background: var(--card-bg); /* giữ nền tối */
    color: var(--text-light); /* chữ sáng */
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}
/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    .ct-episode-list h2,
    .ct-related h2 {
        font-size: 1.2rem;
        margin: 10px;
    }

    .ct-episode {
        display: flex;
        font-size: 0.9rem;
        padding: 0.75rem;
        align-items: center;
        flex-direction: row;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) */
@media (min-width: 480px) and (max-width: 768px) {
    .ct-episode-list h2,
    .ct-related h2 {
        font-size: 1.4rem;
    }

    .ct-episode {
        font-size: 0.95rem;
        padding: 0.9rem;
    }
}
.ct-related {
    margin-top: 2rem;
}

.ct-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.ct-related-card {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.ct-related-card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* @media (max-width: 768px) {
    .ct-detail {
        flex-direction: column;
    }
} */
/* Dưới 480px (mobile nhỏ) */
@media (max-width: 479px) {
    .ct-info h1 {
        font-size: 1.8rem;
        margin: 10px;
    }

    .ct-meta {
        font-size: 0.8rem;
        margin: 10px;
    }

    .ct-info p {
        font-size: 0.9rem;
        margin: 10px;
    }

    .ct-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
        margin: 10px;
    }
}

/* Từ 480px đến 768px (tablet và mobile lớn) */
@media (min-width: 480px) and (max-width: 768px) {
    .ct-info h1 {
        font-size: 2.2rem;
    }

    .ct-meta {
        font-size: 0.85rem;
    }

    .ct-info p {
        font-size: 1rem;
    }

    .ct-btn {
        padding: 0.45rem 0.9rem;
        font-size: 1rem;
    }
}
.see-more-container {
    text-align: center;
    margin-top: 20px;
}

.see-more-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #4d586b;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.see-more-button:hover {
    background-color: #4d586b;
    transform: scale(1.05);
}

.see-more-button i {
    transition: transform 0.3s ease;
}

.see-more-button:hover i {
    transform: translateX(5px);
}

/* Mobile nhỏ (dưới 480px) */
@media (max-width: 479px) {
    .see-more-button {
        padding: 10px 18px;
        font-size: 14px;
        margin-bottom: 10px;
    }
}

/* Tablet (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
    .see-more-button {
        padding: 11px 22px;
        font-size: 15px;
    }
}
