body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #141414;
    color: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand .logo {
    height: 40px;
}

.navbar-nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.nav-link:hover {
    color: #e50914;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-right i {
    font-size: 20px;
    cursor: pointer;
}

.profile-icon {
    height: 32px;
    border-radius: 4px;
}

.search-container {
    display: none;
    align-items: center;
}

.search-container.active {
    display: flex;
}

#searchInput {
    padding: 5px;
    border: none;
    border-radius: 4px;
    margin-left: 10px;
}

.witcher-section {
    margin-top: 80px;
    padding: 40px 0;
}

.witcher-header {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.witcher-banner {
    width: 300px;
    border-radius: 8px;
}

.witcher-info {
    flex: 1;
}

.witcher-title {
    font-size: 36px;
    margin: 0 0 10px;
}

.witcher-description {
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
}

.witcher-buttons .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-right: 10px;
}

.btn-play {
    background-color: #fff;
    color: #000;
}

.btn-more-info {
    background-color: rgba(109, 109, 110, 0.7);
    color: #fff;
}

.season-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.season-btn {
    padding: 10px 20px;
    background-color: #333;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.season-btn.active {
    background-color: #e50914;
}

.season-btn:hover {
    background-color: #e50914;
}

.episode-container {
    min-height: 400px;
}

.episode-list {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.episode-list.active {
    display: grid;
}

.episode-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.episode-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.episode-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.episode-title {
    font-size: 14px;
    margin: 0;
}

.play-episode-btn {
    background-color: #e50914;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-episode-btn i {
    color: #fff;
    font-size: 14px;
}

.footer {
    background-color: #000;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link i {
    color: #fff;
    font-size: 24px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #757575;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 20px;
}

.service-code {
    background: none;
    border: 1px solid #757575;
    color: #757575;
    padding: 8px 12px;
    cursor: pointer;
}

.copyright {
    color: #757575;
    font-size: 14px;
    margin-top: 10px;
}

.control-btn.more-btn {
    background: url('https://img.icons8.com/ios-filled/24/ffffff/info.png') no-repeat center;
    background-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #fff;
}

.control-btn.more-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}