* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #ffffff;
    line-height: 1.5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #e50914);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo span {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #e50914;
}

.filters {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    font-size: 12px;
    color: #aaa;
    letter-spacing: 0.5px;
}

.filter-group select {
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: #1a1a2e;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #e50914, #b00710);
    border: none;
    padding: 8px 24px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229,9,20,0.4);
}

/* Hero Banner */
.hero-banner {
    background-size: cover;
    background-position: center 30%;
    padding: 100px 0;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    background: #e50914;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #ccc;
}

.hero-content p {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 30px;
}

.btn-watch-now {
    background: #e50914;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}

.btn-watch-now:hover {
    transform: scale(1.05);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #e50914;
    font-size: 26px;
}

.clear-filters {
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    transition: background 0.2s;
}

.clear-filters:hover {
    background: rgba(255,255,255,0.2);
}

/* Slider Section */
.slider-section {
    margin: 50px 0;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-prev, .slider-next {
    background: rgba(255,255,255,0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background: #e50914;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.slide-card {
    min-width: 220px;
    background: #13131f;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.slide-thumb {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.slide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.slide-card:hover .slide-thumb img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.slide-card:hover .slide-overlay {
    opacity: 1;
}

.play-overlay-btn {
    background: #e50914;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-info {
    padding: 12px;
}

.slide-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: #e50914;
    width: 25px;
    border-radius: 10px;
}

/* Video Grid */
.video-grid-section {
    padding: 40px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.video-card {
    background: #13131f;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.video-thumb {
    position: relative;
    height: 280px;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .hover-play {
    opacity: 1;
}

.play-video {
    background: #e50914;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.episode-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #e50914;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.status-badge.ongoing {
    background: #ff9800;
    color: #000;
}

.status-badge.completed {
    background: #4caf50;
}

.video-info {
    padding: 12px;
}

.video-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #aaa;
    margin-bottom: 8px;
}

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags span {
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
}

/* No results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #13131f;
    border-radius: 20px;
}

.no-results i {
    font-size: 50px;
    color: #e50914;
    margin-bottom: 20px;
}

/* Articles Section */
.articles-section {
    background: #0d0d12;
    padding: 60px 0;
    margin-top: 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.article-card {
    background: #13131f;
    padding: 24px;
    border-radius: 20px;
    transition: transform 0.3s;
    position: relative;
}

.article-card:hover {
    transform: translateY(-3px);
}

.article-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    opacity: 0.2;
    color: #e50914;
}

.article-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    padding-right: 40px;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 15px;
}

.article-card p {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.read-more {
    color: #e50914;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    gap: 10px;
}

/* Footer */
.footer {
    background: #06060a;
    text-align: center;
    padding: 25px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: #888;
}

/* Watch Page Layout */
.watch-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin: 30px 0;
}

.sidebar-videos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-card {
    display: flex;
    gap: 10px;
    background: #1a1a2e;
    border-radius: 8px;
    padding: 8px;
    text-decoration: none;
    color: white;
}

.sidebar-card img {
    width: 70px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .header .container {
        flex-direction: column;
        align-items: stretch;
    }
    .filters {
        flex-wrap: wrap;
    }
    .hero-content h2 {
        font-size: 32px;
    }
    .section-title {
        font-size: 24px;
    }
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    .slide-card {
        min-width: 180px;
    }
    .slide-thumb {
        height: 250px;
    }
    .watch-layout {
        grid-template-columns: 1fr;
    }
}