* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Futuristic Color System */
    --primary-color: #0dcaf0;
    --primary-glow: rgba(13, 202, 240, 0.5);
    --secondary-color: #00e5ff;
    
    /* Dark Gradient Backgrounds */
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --bg-light: #101010;
    --bg-card: #121212;
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-overlay: rgba(255, 255, 255, 0.02);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #666666;
    
    /* Rating Colors */
    --rating-good: #00ff88;
    --rating-medium: #ffd700;
    --rating-bad: #ff4466;
    
    /* Shadows & Glows */
    --shadow-glow: 0 0 20px var(--primary-glow);
    --shadow-large: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-light) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.02em;
}

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

/* Utility Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.glow-text {
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Navbar - Glassmorphism */
.navbar {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(13, 202, 240, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 20px var(--primary-glow);
    transition: all 0.3s ease;
}

.logo:hover {
    text-shadow: 0 0 30px var(--primary-glow), 0 0 40px var(--primary-glow);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-menu a:hover::after {
    width: 100%;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: white;
    font-size: 14px;
    width: 300px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
    background: rgba(13, 202, 240, 0.05);
}

.search-form input::placeholder {
    color: var(--text-secondary);
}

.search-form button {
    padding: 12px 24px;
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    color: var(--bg-dark);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.search-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px var(--primary-glow);
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: 100vh;
}

/* Hero Section - Cinematic */
.hero {
    height: 75vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(10, 10, 10, 0.7) 50%,
        transparent 100%);
}

.hero-content {
    max-width: 700px;
    z-index: 1;
    position: relative;
    animation: fadeIn 1s ease-in;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px var(--primary-glow);
}

.hero-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    font-size: 17px;
    font-weight: 600;
    flex-wrap: wrap;
}

.hero-overview {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-secondary);
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Buttons - Futuristic with Glowing Effects */
.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px var(--primary-glow);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px var(--primary-glow), 0 0 60px var(--primary-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border-color: var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px var(--primary-glow);
    transform: scale(1.05);
}

/* Rating - Neon Style */
.rating {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    border: 1px solid;
}

.rating-good {
    background: rgba(0, 255, 136, 0.1);
    color: var(--rating-good);
    border-color: var(--rating-good);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.rating-medium {
    background: rgba(255, 215, 0, 0.1);
    color: var(--rating-medium);
    border-color: var(--rating-medium);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.rating-bad {
    background: rgba(255, 68, 102, 0.1);
    color: var(--rating-bad);
    border-color: var(--rating-bad);
    box-shadow: 0 0 15px rgba(255, 68, 102, 0.3);
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    position: relative;
}

.dark-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-dark) 100%);
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Movie Grid - Responsive with Hover Effects */
.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.movie-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.movie-card:hover {
    transform: scale(1.08) translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px var(--primary-glow), 
                0 20px 50px rgba(0, 0, 0, 0.7);
    z-index: 10;
}

.movie-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.movie-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.movie-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.98) 0%, 
        rgba(10, 10, 10, 0.8) 50%,
        transparent 100%);
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.movie-card:hover .movie-card-overlay {
    transform: translateY(0);
}

.movie-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    letter-spacing: -0.02em;
}

.card-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
}

/* Detail Pages - Cinematic Layout */
.detail-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    position: relative;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.3) 0%, 
        rgba(10, 10, 10, 0.9) 70%,
        var(--bg-dark) 100%);
}

.detail-header {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.detail-poster {
    width: 300px;
    border-radius: 16px;
    box-shadow: var(--shadow-large), 0 0 40px var(--primary-glow);
    border: 2px solid var(--glass-border);
    transition: all 0.4s ease;
}

.detail-poster:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-large), 0 0 60px var(--primary-glow);
}

.detail-info h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.year {
    color: var(--text-secondary);
    font-weight: 400;
}

.tagline {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 18px;
    text-shadow: 0 0 10px var(--primary-glow);
}

.detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 8px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.genres {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.genre-tag {
    padding: 10px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.genre-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--primary-glow);
}

.networks {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.network-logo {
    height: 45px;
    width: auto;
    background: white;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.network-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.overview-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
}

/* Player - Futuristic with Glow */
.player-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-large);
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
}

.player-wrapper:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-large), 0 0 40px var(--primary-glow);
}

.player-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    transition: opacity 0.3s ease;
}

.player-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.05em;
}

/* Episode Selector - Glass Effect */
.episode-selector {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.selector-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.selector-group label {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
}

.selector-group select {
    padding: 12px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    min-width: 200px;
    transition: all 0.3s ease;
}

.selector-group select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

.selector-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Episodes List - Enhanced Cards */
.episodes-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.episode-card {
    display: flex;
    gap: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
}

.episode-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateX(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
}

.episode-card.active {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px var(--primary-glow);
    background: rgba(13, 202, 240, 0.05);
}

.episode-card img {
    width: 280px;
    height: 160px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.episode-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.episode-info {
    padding: 25px;
    flex: 1;
}

.episode-info h4 {
    margin-bottom: 12px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.episode-date {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.episode-overview {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 14px;
}

.episode-rating {
    display: inline-block;
    padding: 6px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

/* Cast Grid - Modern Cards */
.cast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
}

.cast-card {
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 15px;
}

.cast-card:hover {
    transform: scale(1.08) translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow);
}

.cast-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.cast-card:hover img {
    transform: scale(1.05);
}

.cast-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.cast-info p {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Video Grid - Enhanced */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.video-card {
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.video-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--primary-glow);
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.video-card:hover img {
    filter: brightness(0.7);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--primary-glow);
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 50px var(--primary-glow);
}

.video-card h4 {
    padding: 18px;
    background: rgba(10, 10, 10, 0.95);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Providers - Modern Cards */
.providers-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.provider-country h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.provider-logos {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.provider-logo {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
}

.provider-logo:hover {
    transform: scale(1.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
}

.provider-card {
    text-align: center;
    padding: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--primary-glow);
}

.provider-logo-large {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.provider-card:hover .provider-logo-large {
    transform: scale(1.1);
}

.provider-card h4 {
    font-size: 14px;
    font-weight: 700;
}

/* Images Grid - Enhanced */
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer;
    border: 2px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image:hover {
    transform: scale(1.08);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
}

/* Reviews */
/* Reviews - Glassmorphism Cards */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.review-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 35px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), -4px 0 15px var(--primary-glow);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), -4px 0 25px var(--primary-glow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.review-rating {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--rating-medium);
    color: var(--rating-medium);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.review-content {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 15px;
}

/* Genre Grid - Neon Style */
.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.genre-card {
    padding: 35px;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--bg-dark);
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.genre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.genre-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px var(--primary-glow), 0 0 60px var(--primary-glow);
}

.genre-card:hover::before {
    opacity: 1;
}

.genre-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.genre-section {
    margin-bottom: 80px;
}

/* Search - Modern Design */
.search-header {
    margin-bottom: 50px;
}

.search-filters {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    color: white;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary-glow);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.search-result-card {
    display: flex;
    gap: 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-result-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateX(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
}

.search-result-card img {
    width: 160px;
    height: 240px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.search-result-card:hover img {
    transform: scale(1.05);
}

.search-result-info {
    padding: 25px;
    flex: 1;
}

.search-result-info h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.result-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 14px;
    flex-wrap: wrap;
}

.media-type {
    padding: 6px 14px;
    background: var(--primary-color);
    border-radius: 15px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--primary-glow);
}

.result-overview {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.no-results {
    text-align: center;
    padding: 120px 20px;
}

.no-results h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px var(--primary-glow);
    color: var(--primary-color);
}

/* Filter Panel - Glassmorphism */
.filter-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-group label {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
}

.filter-group select,
.filter-group input {
    padding: 12px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
}

.filter-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 10px;
}

/* Person Page */
.person-header {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.person-photo {
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.person-info {
    flex: 1;
}

.person-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.person-details {
    margin-bottom: 30px;
}

.person-details p {
    margin-bottom: 15px;
    font-size: 16px;
}

.person-biography h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.person-biography p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Pagination - Futuristic */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 80px;
}

.page-link {
    padding: 12px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 45px;
    text-align: center;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--primary-glow);
}

.page-dots {
    color: var(--text-secondary);
    font-weight: 700;
}

/* Info Box */
/* Info Box - Glassmorphism */
.info-box {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 16px;
    margin-top: 80px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), -4px 0 20px var(--primary-glow);
}

.info-box h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-color);
}

.info-box p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 15px;
}

/* Footer - Futuristic Style */
.footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    padding: 60px 0;
    margin-top: 120px;
    text-align: center;
    border-top: 2px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-glow);
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
    .detail-header,
    .person-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .search-form input {
        width: 200px;
    }
    
    .movie-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .detail-info h1 {
        font-size: 28px;
    }
    
    .search-result-card {
        flex-direction: column;
    }
    
    .search-result-card img {
        width: 100%;
        height: 300px;
    }
    
    .episode-card {
        flex-direction: column;
    }
    
    .episode-card img {
        width: 100%;
        height: 200px;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-overview {
        font-size: 14px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form input {
        width: 100%;
    }
}
