/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e) fixed;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.1) 0, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== HEADER & NAVIGATION ========== */
.header {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 25, 15, 0.95), rgba(20, 20, 20, 0.95));
    backdrop-filter: blur(15px);
    border-bottom: 3px solid #d4af37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0, #d4af37 20%, #f4d03f 50%, #d4af37 80%, transparent 100%);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.3s;
}

.logo-container:hover {
    transform: scale(1.05);
    background: rgba(212, 175, 55, 0.1);
}

.wolf-emblem {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.logo-text {
    font-family: Cinzel, Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 600;
    font-family: Cinzel, Georgia, serif;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.nav-link:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(40, 25, 15, 0.98), rgba(20, 20, 20, 0.98));
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    padding: 15px 0;
    margin-top: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    list-style: none;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ecf0f1;
    text-decoration: none;
    font-family: Cinzel, Georgia, serif;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    color: #d4af37;
    padding-left: 30px;
    background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-toggle {
    display: none;
}

/* ========== MAIN CONTENT ========== */
.main-content {
    margin-top: 80px;
    flex: 1;
    padding: 60px 0;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    background: radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.1) 0, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(52, 152, 219, 0.1) 0, transparent 50%),
                url('../witcher_poster.jpg') center/cover;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #e74c3c, #f39c12, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: heroGlow 3s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ecf0f1;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(45deg, #c0392b, #e74c3c);
}

/* ========== SECTIONS ========== */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    color: #bdc3c7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ========== HOMEPAGE EPISODES SHOWCASE ========== */
.episodes-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.season-showcase {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.season-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.season-showcase-title {
    font-size: 2rem;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.season-view-all {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #3498db;
    border-radius: 10px;
}

.season-view-all:hover {
    background: #3498db;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.episodes-grid-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.episode-card-showcase {
    background: linear-gradient(135deg, #1a1a2e, #0f0f23);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    text-decoration: none;
    color: #fff;
    display: block;
    border: 2px solid transparent;
}

.episode-card-showcase:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #d4af37;
}

.episode-poster-showcase {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.episode-poster-showcase img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.episode-overlay-showcase {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.episode-card-showcase:hover .episode-overlay-showcase {
    opacity: 1;
}

.play-icon-showcase {
    font-size: 3rem;
    color: #d4af37;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.episode-rating-showcase {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 700;
    color: #f39c12;
}

.episode-info-showcase {
    padding: 20px;
}

.episode-number-showcase {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.episode-title-showcase {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.episode-meta-showcase {
    display: flex;
    gap: 15px;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* ========== WHY WATCH SECTION ========== */
.why-watch-section {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0, rgba(155, 89, 182, 0.05) 100%);
    padding: 80px 0;
    position: relative;
}

.why-watch-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-watch-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #e74c3c, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-text-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-text-container h3 {
    color: #3498db;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.seo-text-container p {
    color: #ecf0f1;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.why-watch-conclusion {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0, rgba(231, 76, 60, 0.1) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    border: 2px solid rgba(52, 152, 219, 0.3);
}

.why-watch-cta {
    display: inline-block;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.why-watch-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

/* ========== SEASONS GRID ========== */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.season-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #d4af37;
}

.season-poster {
    position: relative;
    padding-top: 133%;
    overflow: hidden;
    background: #000;
}

.season-poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.season-card:hover .season-poster img {
    transform: scale(1.05);
}

.season-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.season-card:hover .season-overlay {
    opacity: 1;
}

.play-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.9);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.play-button:hover {
    background: #d4af37;
    transform: scale(1.05);
}

.season-info {
    padding: 25px;
}

.season-title {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.season-episodes {
    color: #7f8c8d;
    margin-bottom: 10px;
}

.season-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* ========== EPISODES GRID ========== */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.episode-card {
    background: linear-gradient(135deg, #1a1a2e 0, #0f0f23 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.episode-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: #d4af37;
}

.episode-link {
    text-decoration: none;
    color: #fff;
    display: block;
}

.episode-poster {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
}

.episode-poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.episode-card:hover .episode-poster img {
    transform: scale(1.1);
}

.episode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.episode-card:hover .episode-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    transition: 0.3s;
}

.episode-card:hover .play-icon {
    transform: scale(1.1);
    background: rgba(244, 208, 63, 1);
}

.episode-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.episode-number-badge {
    background: rgba(52, 152, 219, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.episode-rating {
    background: rgba(0, 0, 0, 0.8);
    color: #f39c12;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(5px);
}

.episode-info {
    padding: 20px;
}

.episode-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ecf0f1;
    line-height: 1.4;
}

.episode-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.episode-number {
    color: #3498db;
    font-weight: 600;
}

.episode-description {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== EPISODE PAGE ========== */
.episode-content {
    display: grid;
    grid-template-columns: 1fr 362px;
    gap: 30px;
    margin-bottom: 40px;
}

.main-column {
    flex: 1;
}

.video-player {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.video-player iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: none;
}

.sidebar {
    width: 362px;
    flex-shrink: 0;
}

.poster-container {
    width: 362px;
    height: 204px;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    margin-bottom: 20px;
}

.episode-poster {
    width: 362px;
    height: 204px;
    object-fit: cover;
    display: block;
}

.poster-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 12px 15px;
}

.meta-item {
    display: inline-block;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.episode-navigation {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.nav-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
}

.nav-buttons {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.nav-button {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 13px;
}

.nav-button:hover {
    background: rgba(229, 9, 20, 0.8);
    border-color: rgba(229, 9, 20, 0.9);
    transform: translateY(-2px);
}

.nav-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    margin: 20px 0;
    padding: 15px 0;
}

.breadcrumbs-list {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs-item {
    position: relative;
    color: #7f8c8d;
}

.breadcrumbs-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -12px;
    color: #3498db;
}

.breadcrumbs-link {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumbs-link:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.breadcrumbs-current {
    color: #ecf0f1;
    font-weight: 600;
}

/* ========== NEWS SECTION ========== */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(229, 9, 20, 0.3);
    transform: translateY(-3px);
}

.news-category {
    display: inline-block;
    background: rgba(229, 9, 20, 0.8);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
}

.news-title {
    margin: 15px 0;
}

.news-title a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #e50914;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.news-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.read-more {
    display: inline-block;
    color: #e50914;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff4444;
}

.back-button {
    display: inline-block;
    color: #e50914;
    text-decoration: none;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #ff4444;
}

.single-news {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    margin-top: 30px;
}

.news-content-full {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-top: 30px;
}

.news-content-full p {
    margin-bottom: 20px;
}

.categories-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.category-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(229, 9, 20, 0.5);
}

.category-button.active {
    background: rgba(229, 9, 20, 0.8);
    border-color: rgba(229, 9, 20, 0.9);
}

/* ========== SEASON PAGE ========== */
.season-header {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.season-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.info-badge {
    background: rgba(229, 9, 20, 0.2);
    border: 1px solid rgba(229, 9, 20, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
}

.season-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ========== ANONS SECTION ========== */
.anons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.anons-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: block;
}

.anons-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: #e50914;
}

.anons-poster {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.anons-content {
    padding: 20px;
}

.anons-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.anons-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.anons-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 10px;
}

/* ========== SINGLE ANONS PAGE ========== */
.single-anons-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    margin: 40px 0;
}

.anons-main-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.anons-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.anons-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.anons-poster-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.anons-poster-title {
    color: #e50914;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.anons-poster-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.anons-episode-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.anons-info-title {
    color: #3498db;
    font-weight: bold;
    margin-bottom: 15px;
}

.anons-info-list {
    list-style: none;
    padding: 0;
}

.anons-info-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.anons-info-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.anons-watch-button {
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.anons-watch-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

/* ========== SEO CONTENT ========== */
.seo-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    margin-top: 60px;
}

.seo-content h2 {
    color: white;
    margin-bottom: 25px;
    font-size: 28px;
}

.seo-content h3 {
    color: #3498db;
    margin: 30px 0 15px;
    font-size: 22px;
}

.seo-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
    margin: 40px 0;
}

.reviews-title {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 30px;
    text-align: center;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.review:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name {
    color: #3498db;
    font-weight: 600;
    font-size: 1.1rem;
}

.review-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.review-text {
    color: #ecf0f1;
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98), rgba(30, 20, 10, 0.98), rgba(15, 15, 15, 0.98));
    color: #ecf0f1;
    padding: 50px 0 25px;
    margin-top: auto;
    border-top: 3px solid #d4af37;
    position: relative;
    backdrop-filter: blur(10px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0, #d4af37 20%, #f4d03f 50%, #d4af37 80%, transparent 100%);
    animation: shimmer 4s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 208, 63, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: 0.4s;
}

.footer-section:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: Cinzel, Georgia, serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 175, 55, 0.4);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 1px;
}

.footer-section p {
    color: rgba(236, 240, 241, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(236, 240, 241, 0.8);
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 8px 12px;
    border-left: 3px solid transparent;
    border-radius: 6px;
    font-family: Cinzel, Georgia, serif;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s;
}

.footer-links a:hover::before {
    left: 100%;
}

.footer-links a:hover {
    color: #d4af37;
    border-left-color: #d4af37;
    padding-left: 20px;
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(8px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 8px rgba(212, 175, 55, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: rgba(236, 240, 241, 0.7);
    position: relative;
}

.footer-bottom::before {
    content: '⚔️';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98), rgba(30, 20, 10, 0.98));
    padding: 0 15px;
    font-size: 1.2rem;
    color: #d4af37;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

.footer-bottom p {
    margin: 8px 0;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-bottom p:first-child {
    font-weight: 600;
    color: rgba(236, 240, 241, 0.9);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e74c3c, #3498db);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c0392b, #2980b9);
}

/* ========== ANIMATIONS ========== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .episode-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        width: 100%;
        max-width: 362px;
        margin: 0 auto;
        position: static;
    }
    
    .poster-container {
        margin: 0 auto 20px;
    }
    
    .single-anons-container {
        grid-template-columns: 1fr;
    }
    
    .anons-sidebar {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
        border: 2px solid rgba(212, 175, 55, 0.5);
        color: #d4af37;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px 12px;
        border-radius: 8px;
        transition: 0.3s;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    .mobile-menu-toggle:hover {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(244, 208, 63, 0.4));
        border-color: #d4af37;
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(20, 20, 20, 0.98), rgba(40, 25, 15, 0.98), rgba(20, 20, 20, 0.98));
        flex-direction: column;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        border-top: 2px solid rgba(212, 175, 55, 0.5);
        backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }
    
    .nav-menu.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        text-align: center;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(40, 25, 15, 0.8);
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu a {
        padding-left: 40px;
        font-size: 0.9rem;
        color: rgba(236, 240, 241, 0.8);
    }
    
    .dropdown-menu a:hover {
        padding-left: 50px;
    }
    
    .sidebar {
        width: 100%;
        max-width: 362px;
    }
    
    .poster-container {
        width: 100%;
        max-width: 362px;
        height: auto;
        aspect-ratio: 16/9;
    }
    
    .episode-poster {
        width: 100%;
        height: 100%;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .anons-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-filter {
        gap: 5px;
        flex-wrap: wrap;
    }
    
    .category-button {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .episodes-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .episodes-grid-showcase {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .seasons-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-section {
        padding: 15px;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .episode-title {
        font-size: 1.8rem;
    }
    
    .video-player iframe {
        height: 250px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .wolf-emblem {
        width: 30px;
        height: 30px;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .episodes-grid-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .episode-card {
        max-width: 100%;
    }
    
    .season-card {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-section {
        padding: 12px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a {
        text-align: center;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 8px 15px;
    }
    
    .footer-links a:hover {
        border-left: none;
        border-bottom-color: #d4af37;
        padding-left: 15px;
        transform: translateY(-2px);
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .breadcrumbs-list {
        font-size: 0.9rem;
    }
    
    .episode-title {
        font-size: 1.5rem;
    }
    
    .episode-content {
        padding: 15px;
    }
    
    .episode-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .episode-number-badge,
    .episode-rating {
        width: fit-content;
    }
    
    .poster-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .nav-buttons {
        flex-direction: column;
    }
    
    .nav-button {
        width: 100%;
    }
    
    .news-card {
        padding: 20px;
    }
    
    .news-title a {
        font-size: 18px;
    }
    
    .news-excerpt {
        font-size: 14px;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .categories-filter {
        padding: 0 10px;
    }
    
    .category-button {
        width: 45%;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .anons-card {
        padding: 15px;
    }
    
    .single-news {
        padding: 25px;
    }
    
    .news-content-full {
        font-size: 14px;
    }
    
    .seo-content {
        padding: 25px;
    }
    
    .seo-content h2 {
        font-size: 24px;
    }
    
    .seo-content p {
        font-size: 14px;
    }
    
    .review {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .page-title {
        font-size: 28px;
        padding: 0 10px;
    }
    
    .page-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
    
    .info-badge {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .season-info {
        flex-direction: column;
        align-items: center;
    }
    
    .season-description {
        padding: 0 10px;
        font-size: 14px;
    }
    
    .anons-poster-container {
        padding: 15px;
    }
    
    .anons-episode


.episode-title-small {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #ecf0f1;
}

.episode-number-small {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* ========== ALERTS ========== */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
}

.alert-success {
    background: linear-gradient(45deg, #27ae60, #229954);
    color: #fff;
}

.alert-error {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
}

/* ========== FORMS ========== */
.toggle-review-form {
    width: 100%;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.toggle-review-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.toggle-review-form.active {
    background: linear-gradient(45deg, #27ae60, #229954);
}

.review-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ecf0f1;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.required {
    color: #e74c3c;
}

.char-counter {
    text-align: right;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 5px;
}

.form-info {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
}

.form-info p {
    margin: 0;
    color: #ecf0f1;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.submit-button,
.cancel-button {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button {
    background: linear-gradient(45deg, #27ae60, #229954);
    color: #fff;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

.cancel-button {
    background: rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cancel-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.no-reviews {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-reviews p {
    color: #7f8c8d;
    margin: 10px 0;
}

.review-success-message {
    text-align: center;
    margin: 30px 0;
}

/* ========== WATCH BUTTON ========== */
.watch-button {
    display: block;
    width: 100%;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.watch-button:hover {
    background: linear-gradient(45deg, #c0392b, #e74c3c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}
