﻿/* =============================================
   WATCH PAGE STYLES
   ============================================= */

/* ----------------------------------------------
   AUTO-NEXT EPISODE
   ---------------------------------------------- */
.watch-autonext {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    pointer-events: none;
}

.watch-autonext-body {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(13, 11, 19, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: auto;
    animation: autoNextSlide 0.35s ease-out;
}

@keyframes autoNextSlide {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.watch-autonext-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

.watch-autonext-label b {
    color: var(--color-accent);
    font-weight: 700;
}

.watch-autonext-progress-wrap {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    min-width: 60px;
}

.watch-autonext-progress {
    height: 100%;
    width: 100%;
    background: var(--color-accent);
    border-radius: 4px;
}

.watch-autonext-cancel {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.watch-autonext-cancel:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@media (max-width: 600px) {
    .watch-autonext-body {
        flex-wrap: wrap;
        gap: 0.6rem;
        padding: 0.6rem 0.8rem;
    }
    .watch-autonext-label {
        font-size: 0.9rem;
    }
    .watch-autonext-cancel {
        font-size: 0.78rem;
        padding: 0.3rem 0.7rem;
    }
    .watch-autonext-progress-wrap {
        min-width: 40px;
    }
}

/* ----------------------------------------------
   WATCH HEADER
   ---------------------------------------------- */
.watch-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(13, 11, 19, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0 2rem;
}

.watch-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 6rem;
}

.watch-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-heading);
    text-decoration: none;
}

.watch-logo:hover {
    color: var(--color-heading);
}

.watch-back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.6rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-link);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.watch-back:hover {
    background: rgba(123, 77, 255, 0.1);
    border-color: rgba(123, 77, 255, 0.2);
    color: var(--color-heading);
}

/* ----------------------------------------------
   MAIN LAYOUT
   ---------------------------------------------- */
.watch-main {
    position: relative;
    margin-top: 6rem;
    min-height: calc(100vh - 6rem);
    background: var(--color-dark);
    overflow: hidden;
}

.watch-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 0;
}

/* ----------------------------------------------
   DECORATIVE BACKGROUND
   ---------------------------------------------- */
.watch-grid-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    max-width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(124, 92, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 92, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.watch-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.watch-blob-1 {
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle, rgba(123, 77, 255, 0.08), transparent);
    top: -10rem;
    left: -10rem;
    animation: watchBlobFloat 8s ease-in-out infinite alternate;
}

.watch-blob-2 {
    width: 50rem;
    height: 50rem;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06), transparent);
    bottom: -15rem;
    right: -10rem;
    animation: watchBlobFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes watchBlobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(4rem, -3rem) scale(1.1); }
}

/* ----------------------------------------------
   INFO SECTION
   ---------------------------------------------- */
.watch-info-section {
    margin-bottom: 2rem;
    position: relative;
    scroll-margin-top: 7rem;
}

.watch-backdrop-bg {
    position: absolute;
    inset: 0;
    border-radius: 1.6rem;
    background-size: cover;
    background-position: center top;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
}

.watch-info-card {
    display: flex;
    gap: 2.4rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.6rem;
    padding: 2rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.15);
}

.watch-info-poster {
    flex-shrink: 0;
    width: 12rem;
}

.watch-info-poster img {
    width: 100%;
    border-radius: 1rem;
    display: block;
    box-shadow: 0 0.6rem 2.4rem rgba(0, 0, 0, 0.5);
}

.watch-info-body {
    flex: 1;
    min-width: 0;
}

.watch-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-heading);
    margin: 0 0 0.4rem;
    line-height: 1.2;
}

.watch-meta {
    font-size: 1.2rem;
    color: rgba(196, 152, 255, 0.85);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.watch-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.watch-genre-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(123, 77, 255, 0.12);
    border: 1px solid rgba(123, 77, 255, 0.18);
    border-radius: 999px;
}

.watch-runtime {
    font-size: 1.1rem;
    color: var(--color-link);
    margin-bottom: 0.6rem;
}

/* ----------------------------------------------
   STAR RATING
   ---------------------------------------------- */
.watch-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.watch-stars {
    display: inline-flex;
    gap: 0.2rem;
    direction: rtl;
}

.watch-stars .star {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.15s ease;
    user-select: none;
}

.watch-stars .star.active,
.watch-stars .star.active ~ .star {
    color: #f6b83d;
}

.watch-stars .star:hover,
.watch-stars .star:hover ~ .star {
    color: #f6b83d;
    transform: scale(1.2);
}

.watch-rating-count {
    font-size: 1.1rem;
    color: var(--color-link);
}

/* ----------------------------------------------
   DETAILS (Director, Budget, Language)
   ---------------------------------------------- */
.watch-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.6rem;
    margin-bottom: 0.8rem;
}

.watch-detail-item {
    font-size: 1.05rem;
    color: var(--color-link);
}

.watch-detail-item strong {
    color: var(--color-heading);
    font-weight: 600;
}

.watch-overview {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-body);
    margin: 0;
}

.watch-actions {
    margin-top: 1.2rem;
}

.watch-trailer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #5a2dcc);
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    box-shadow: 0 0.4rem 1.2rem rgba(123, 77, 255, 0.25);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, filter 0.2s ease;
}

.watch-trailer-btn:hover {
    transform: translateY(-0.3rem) scale(1.03);
    box-shadow: 0 0.8rem 2.4rem rgba(123, 77, 255, 0.4);
    filter: brightness(1.1);
}

.watch-trailer-btn:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 0.2rem 0.6rem rgba(123, 77, 255, 0.2);
}

/* ----------------------------------------------
   TRAILER MODAL
   ---------------------------------------------- */
.watch-trailer-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.watch-trailer-modal.active {
    opacity: 1;
    visibility: visible;
}

.watch-trailer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.watch-trailer-wrap {
    position: relative;
    width: 90%;
    max-width: 90rem;
    background: #000;
    border-radius: 1.2rem;
    overflow: hidden;
    z-index: 1;
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.watch-trailer-modal.active .watch-trailer-wrap {
    transform: scale(1);
}

.watch-trailer-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
}

.watch-trailer-close:hover {
    background: rgba(123, 77, 255, 0.6);
}

.watch-trailer-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.watch-trailer-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ----------------------------------------------
   PLAYER SECTION
   ---------------------------------------------- */
.watch-player-section {
    margin-bottom: 4rem;
}

.watch-player {
    position: relative;
    background: #000;
    border-radius: 1.2rem;
    overflow: hidden;
    z-index: 1;
    scroll-margin-top: 7rem;
}

.watch-player::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(124, 92, 255, 0.35), transparent 30%,
        transparent 70%, rgba(180, 94, 255, 0.25));
    z-index: -1;
    animation: watchBorderBreathe 6s ease-in-out infinite alternate;
}

@keyframes watchBorderBreathe {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.watch-player-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.watch-player-inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ----------------------------------------------
   FLAG HINT IN PLAYER BAR
   ---------------------------------------------- */
.watch-flag-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 0.4rem;
    width: auto;
    height: auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
    font-family: inherit;
}

.watch-flag-hint:hover {
    color: var(--color-primary);
}

/* ----------------------------------------------
   REPORT BANNER
   ---------------------------------------------- */
.watch-report-banner {
    margin-bottom: 2rem;
}

.watch-report-banner-body {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.8rem;
}

.watch-report-banner-icon {
    flex-shrink: 0;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 77, 255, 0.1);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.watch-report-banner-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--color-link);
    line-height: 1.4;
}

.watch-report-banner-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.watch-report-banner-link:hover {
    color: #a78bfa;
    text-decoration: underline;
}

.watch-player-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ----------------------------------------------
   EPISODE PICKER
   ---------------------------------------------- */
.watch-episode-picker {
    display: none;
    align-items: center;
    gap: 0.8rem;
    background: rgba(13, 11, 19, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
}

.watch-episode-picker.visible {
    display: flex;
}

/* --- Display "S01 E03" --- */
.watch-ep-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    min-width: 6.2rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.watch-ep-title {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.02em;
    max-width: 140px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Controls row (nav buttons + fields) --- */
.watch-ep-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* --- Prev / Next buttons --- */
.watch-ep-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-link);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    padding: 0;
}

.watch-ep-nav:hover {
    background: rgba(123, 77, 255, 0.1);
    color: var(--color-primary);
    border-color: rgba(123, 77, 255, 0.2);
}

.watch-ep-nav:active {
    transform: scale(0.92);
}

/* --- Season nav buttons (skip) --- */
.watch-ep-nav[title*="Season"] {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.watch-ep-nav[title*="Season"]:hover {
    color: var(--color-primary);
    background: rgba(123, 77, 255, 0.06);
    border-color: rgba(123, 77, 255, 0.15);
}

/* --- Fields container --- */
.watch-ep-fields {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.watch-ep-field {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.watch-ep-field-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-link);
}

/* --- Separator dot --- */
.watch-ep-sep {
    font-size: 0.3rem;
    color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
}

/* --- Input --- */
.watch-ep-input {
    width: 3.4rem;
    height: 2.8rem;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-heading);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    font-family: inherit;
}

.watch-ep-input:focus {
    border-color: var(--color-primary);
    background: rgba(123, 77, 255, 0.1);
}

.watch-ep-input::-webkit-inner-spin-button,
.watch-ep-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.watch-ep-input[type=text] {
    -moz-appearance: textfield;
}

/* --- Help button --- */
.watch-ep-help {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.2rem;
    color: var(--color-link);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    padding: 0;
}

.watch-ep-help:hover {
    color: var(--color-primary);
    background: rgba(123, 77, 255, 0.08);
    border-color: rgba(123, 77, 255, 0.2);
    box-shadow: 0 0 1.2rem rgba(123, 77, 255, 0.15);
}

.watch-ep-help:active {
    transform: scale(0.92);
}

/* ----------------------------------------------
   EPISODE HELP MODAL
   ---------------------------------------------- */
.watch-ep-help-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.watch-ep-help-modal.active {
    opacity: 1;
    visibility: visible;
}

.watch-ep-help-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.watch-ep-help-wrap {
    position: relative;
    width: 90%;
    max-width: 44rem;
    background: #1a1723;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.4rem;
    padding: 2.8rem 2.4rem 2.4rem;
    z-index: 1;
    transform: scale(0.93) translateY(1.2rem);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.watch-ep-help-modal.active .watch-ep-help-wrap {
    transform: scale(1) translateY(0);
}

.watch-ep-help-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-link);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.watch-ep-help-close:hover {
    background: rgba(123, 77, 255, 0.15);
    color: var(--color-primary);
}

.watch-ep-help-wrap h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-heading);
    margin: 0 0 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.watch-ep-help-wrap h3 i {
    color: var(--color-primary);
}

.watch-ep-help-sub {
    font-size: 1rem;
    color: var(--color-link);
    margin: 0 0 2rem;
}

.watch-ep-help-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.watch-ep-help-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 0.8rem;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.watch-ep-help-item:hover {
    background: rgba(123, 77, 255, 0.05);
    border-color: rgba(123, 77, 255, 0.08);
}

.watch-ep-help-icon {
    flex-shrink: 0;
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 77, 255, 0.1);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 0.9rem;
}

.watch-ep-help-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.watch-ep-help-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-heading);
}

.watch-ep-help-text span {
    font-size: 0.9rem;
    color: var(--color-link);
    line-height: 1.4;
}

.watch-ep-help-tip {
    margin: 1.6rem 0 0;
    font-size: 0.9rem;
    color: var(--color-link);
    line-height: 1.5;
    padding: 1rem;
    background: rgba(123, 77, 255, 0.04);
    border-left: 2px solid var(--color-primary);
    border-radius: 0 0.6rem 0.6rem 0;
}

.watch-ep-help-tip kbd {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--color-heading);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

/* ----------------------------------------------
   WATCH SERVERS SECTION
   ---------------------------------------------- */
.watch-servers-section {
    margin-bottom: 3rem;
}

.watch-servers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.watch-servers-header span:first-child {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.watch-servers-header span:first-child i {
    color: var(--color-primary);
}

.watch-servers-active {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(123, 77, 255, 0.08);
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(123, 77, 255, 0.12);
    transition: opacity 0.3s ease;
}

.watch-servers-list {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.watch-server-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-link);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    font-family: inherit;
}

.watch-server-btn:hover {
    background: rgba(123, 77, 255, 0.06);
    color: var(--color-heading);
    border-color: rgba(123, 77, 255, 0.15);
    transform: translateY(-1px);
}

.watch-server-btn:active {
    transform: translateY(0);
}

.watch-server-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #6c3bff);
    border-color: transparent;
    box-shadow: 0 0.2rem 1rem rgba(123, 77, 255, 0.25);
}

.watch-server-btn .server-icon {
    font-size: 0.85rem;
    opacity: 0.6;
}

.watch-server-btn.active .server-icon {
    opacity: 1;
}

.watch-server-btn .server-check {
    display: none;
    font-size: 0.75rem;
}

.watch-server-btn.active .server-check {
    display: inline-block;
}

.watch-server-btn .server-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.watch-server-btn.active .server-dot {
    background: #fff;
}

.watch-fullscreen-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-link);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.watch-fullscreen-btn:hover {
    background: rgba(123, 77, 255, 0.1);
    color: var(--color-primary);
    border-color: rgba(123, 77, 255, 0.2);
}

/* ----------------------------------------------
   RELATED SECTION (NETFLIX STYLE)
   ---------------------------------------------- */
.watch-related-section {
    position: relative;
    z-index: 2;
    padding: 0 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.watch-related-header {
    margin-bottom: 1.6rem;
    text-align: left;
}

.watch-related-label {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-heading);
    letter-spacing: -0.02em;
    position: relative;
}

.watch-related-label::after {
    content: '';
    position: absolute;
    bottom: -0.4rem;
    left: 0;
    width: 3rem;
    height: 0.3rem;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    border-radius: 999px;
}

.watch-series-label::after {
    background: linear-gradient(90deg, #f6b83d, transparent);
    width: 3.6rem;
}

.watch-related-wrapper {
    position: relative;
}

/* --- ARROWS --- */
.watch-related-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 5;
    width: 4rem;
    border: none;
    background: linear-gradient(90deg, rgba(13,11,19,1) 0%, rgba(13,11,19,0) 100%);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.35;
    transition: opacity 0.25s ease;
    padding: 0;
}

.watch-related-arrow.right {
    right: 0;
    background: linear-gradient(270deg, rgba(13,11,19,1) 0%, rgba(13,11,19,0) 100%);
}

.watch-related-arrow.hidden {
    opacity: 0 !important;
    pointer-events: none;
}

.watch-related-arrow:hover {
    opacity: 1;
}

.watch-related-wrapper:hover .watch-related-arrow {
    opacity: 1;
}

.watch-related-arrow:hover {
    opacity: 1 !important;
}

/* --- TRACK --- */
.watch-related-track {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.4rem 0 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.watch-related-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.watch-related-track::-webkit-scrollbar {
    display: none;
}

/* --- CARD --- */
.watch-related-card {
    flex: 0 0 auto;
    width: 14rem;
    text-decoration: none;
    border-radius: 0.6rem;
    overflow: visible;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    position: relative;
    z-index: 1;
}

.watch-related-card:hover {
    transform: scale(1.12);
    box-shadow: 0 0.6rem 2rem rgba(123, 77, 255, 0.25);
    z-index: 10;
}

.watch-related-card-inner {
    position: relative;
    border-radius: 0.6rem;
    overflow: hidden;
}

.watch-related-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    border-radius: 0.6rem;
}

/* --- BADGE --- */
.watch-related-card-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 3;
    padding: 0.2rem 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,0.55);
    border-radius: 0.4rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.watch-related-card:hover .watch-related-card-badge {
    opacity: 1;
}

/* --- PLAY BUTTON OVERLAY --- */
.watch-related-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 4.4rem;
    height: 4.4rem;
    background: rgba(123, 77, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    pointer-events: none;
    box-shadow: 0 0.4rem 1.6rem rgba(123, 77, 255, 0.3);
}

.watch-related-card:hover .watch-related-card-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* --- OVERLAY (Netflix style) --- */
.watch-related-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 1rem 1rem;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.9) 100%);
    opacity: 0;
    transform: translateY(0.8rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.watch-related-card:hover .watch-related-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.watch-related-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.watch-related-card-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ----------------------------------------------
   LOADING STATE
   ---------------------------------------------- */
.watch-loading {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.watch-skeleton-pulse {
    height: 3rem;
    background: linear-gradient(90deg, rgba(255,255,255,0.02) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.02) 75%);
    background-size: 200% 100%;
    border-radius: 1rem;
    animation: watchShimmer 1.5s ease-in-out infinite;
}

.watch-skeleton-pulse:first-child {
    height: 26rem;
}

@keyframes watchShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ----------------------------------------------
   ERROR STATE
   ---------------------------------------------- */
.watch-error {
    position: relative;
    z-index: 2;
    max-width: 48rem;
    margin: 8rem auto;
    text-align: center;
    padding: 2rem;
}

.watch-error i {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 1.6rem;
    opacity: 0.6;
}

.watch-error h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 0.8rem;
}

.watch-error p {
    font-size: 1.4rem;
    color: var(--color-link);
    margin-bottom: 2rem;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.4rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #6c3bff);
    border: none;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.watch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0.4rem 1.6rem rgba(123, 77, 255, 0.35);
    color: #fff;
}

/* ----------------------------------------------
   FOOTER
   ---------------------------------------------- */
.watch-footer {
    position: relative;
    z-index: 2;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.watch-footer p {
    font-size: 1.2rem;
    color: var(--color-link);
    margin: 0;
}

/* ----------------------------------------------
   SCROLL TO TOP
   ---------------------------------------------- */
.watch-scroll-top {
    position: fixed;
    bottom: 2.4rem;
    right: 2.4rem;
    z-index: 999;
    width: 4.4rem;
    height: 4.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #6c3bff);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0.4rem 1.2rem rgba(123, 77, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(1.6rem);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.watch-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.watch-scroll-top:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 0.8rem 2rem rgba(123, 77, 255, 0.45);
}

.watch-scroll-top:active {
    transform: translateY(0);
}

/* ----------------------------------------------
   RESPONSIVE
   ---------------------------------------------- */
@media (max-width: 768px) {
    .watch-header {
        padding: 0 1rem;
    }

    .watch-header-inner {
        height: 5rem;
    }

    .watch-logo {
        font-size: 1.8rem;
    }

    .watch-back span {
        display: none;
    }

    .watch-main {
        margin-top: 5rem;
    }

    .watch-content {
        padding: 3rem 1rem 0;
    }

    .watch-info-card {
        flex-direction: column;
        gap: 1.2rem;
        padding: 1.4rem;
    }

    .watch-info-poster {
        width: 10rem;
    }

    .watch-title {
        font-size: 1.6rem;
    }

    .watch-meta {
        font-size: 1.1rem;
    }

    .watch-overview {
        font-size: 1.1rem;
    }

    .watch-player-section {
        margin-bottom: 2rem;
    }

    .watch-related-section {
        padding: 0 1rem 3rem;
    }

    .watch-servers-section {
        margin-bottom: 2rem;
    }

    .watch-servers-header span:first-child {
        font-size: 1.05rem;
    }

    .watch-server-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .watch-related-header {
        margin-bottom: 1.2rem;
    }

    .watch-related-label {
        font-size: 1.3rem;
    }

    .watch-related-card {
        width: 12rem;
    }

    .watch-related-arrow {
        width: 2.8rem;
        font-size: 1.4rem;
    }

    .watch-trailer-wrap {
        width: 95%;
    }

    .watch-trailer-close {
        top: 0.4rem;
        right: 0.4rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.4rem;
    }

    .watch-loading {
        padding: 2rem 1rem;
    }

    .watch-error {
        margin: 4rem auto;
        padding: 1.6rem;
    }

    .watch-error h2 {
        font-size: 1.8rem;
    }

    .watch-episode-picker {
        gap: 0.4rem;
        padding: 0.3rem 0.6rem;
    }

    .watch-ep-display {
        font-size: 1rem;
        min-width: 4.8rem;
    }

    .watch-ep-nav {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.85rem;
    }

    .watch-ep-nav[title*="Season"] {
        font-size: 0.7rem;
    }

    .watch-ep-fields {
        gap: 0.3rem;
    }

    .watch-ep-field-label {
        display: none;
    }

    .watch-ep-input {
        width: 2.8rem;
        height: 2.4rem;
        font-size: 0.9rem;
    }

    .watch-ep-help {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1.05rem;
    }

    .watch-ep-help-wrap {
        padding: 2rem 1.6rem 1.6rem;
    }

    .watch-ep-help-wrap h3 {
        font-size: 1.3rem;
    }

    .watch-ep-help-item {
        padding: 0.6rem 0.8rem;
        gap: 0.8rem;
    }

    .watch-ep-help-icon {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 0.8rem;
    }

    .watch-details {
        gap: 0.2rem 1rem;
    }

    .watch-detail-item {
        font-size: 0.95rem;
    }

    .watch-scroll-top {
        bottom: 1.6rem;
        right: 1.6rem;
        width: 3.8rem;
        height: 3.8rem;
        font-size: 1.4rem;
    }
}

/* ----------------------------------------------
   IFRAME LOADING OVERLAY
   ---------------------------------------------- */
.watch-player-loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    background: #0a0a0f;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.watch-player-loading.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.watch-player-spinner {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.04);
    border-top-color: var(--color-primary);
    animation: watchSpin 0.8s linear infinite;
}

@keyframes watchSpin {
    to { transform: rotate(360deg); }
}

.watch-player-loading-text {
    font-size: 1.2rem;
    color: var(--color-link);
    font-weight: 500;
}

.watch-player-loading-text::after {
    content: '';
    animation: watchDots 1.5s steps(4, end) infinite;
}

@keyframes watchDots {
    0% { content: ''; }
    25% { content: ' .'; }
    50% { content: ' ..'; }
    75% { content: ' ...'; }
    100% { content: ''; }
}

/* ----------------------------------------------
   CAST SECTION
   ---------------------------------------------- */
.watch-cast {
    margin: 0.8rem 0;
}

.watch-cast-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-heading);
    margin: 0 0 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.watch-cast-title i {
    color: var(--color-primary);
    font-size: 0.95rem;
}

.watch-cast-track {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.watch-cast-track::-webkit-scrollbar {
    display: none;
}

.watch-cast-item {
    flex: 0 0 auto;
    text-align: center;
    width: 5.6rem;
}

.watch-cast-photo {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 0.3rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.watch-cast-photo-fallback {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.3rem;
    background: rgba(123,77,255,0.1);
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 700;
    border: 1px solid rgba(123,77,255,0.15);
}

.watch-cast-name {
    font-size: 0.8rem;
    color: var(--color-link);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ----------------------------------------------
   KEYBOARD HINT
   ---------------------------------------------- */
.watch-key-hint {
    display: inline-flex;
    align-items: center;
    margin-left: 0.4rem;
    opacity: 0.35;
    transition: opacity 0.25s ease;
}

.watch-key-hint kbd {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--color-link);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    line-height: 1.4;
}

.watch-key-hint:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .watch-key-hint {
        display: none;
    }
    .watch-flag-hint {
        display: none;
    }
}

@media (max-width: 480px) {
    .watch-info-poster {
        width: 8rem;
    }

    .watch-servers-header span:first-child {
        font-size: 0.95rem;
    }

    .watch-server-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .watch-servers-section {
        margin-bottom: 1.6rem;
    }

    .watch-related-header {
        margin-bottom: 1rem;
    }

    .watch-related-label {
        font-size: 1.1rem;
    }

    .watch-related-card {
        width: 10rem;
    }

    .watch-related-arrow {
        width: 2.4rem;
        font-size: 1.2rem;
    }

    .watch-related-card-play {
        width: 3.2rem;
        height: 3.2rem;
        font-size: 1.2rem;
    }

    .watch-related-card-overlay {
        padding: 0.8rem 0.6rem 0.6rem;
    }

    .watch-related-card-title {
        font-size: 0.95rem;
    }

    .watch-related-card-meta {
        font-size: 0.8rem;
    }

    .watch-stars .star {
        font-size: 1.4rem;
    }

    .watch-ep-display {
        font-size: 0.85rem;
        min-width: 4rem;
    }

    .watch-ep-nav {
        width: 2rem;
        height: 2rem;
        font-size: 0.75rem;
    }

    .watch-ep-nav[title*="Season"] {
        font-size: 0.6rem;
    }

    .watch-ep-input {
        width: 2.4rem;
        height: 2.2rem;
        font-size: 0.8rem;
    }

    .watch-ep-help {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 0.95rem;
    }

    .watch-ep-help-wrap {
        padding: 1.6rem 1.2rem 1.2rem;
    }

    .watch-ep-help-wrap h3 {
        font-size: 1.1rem;
    }

    .watch-ep-help-sub {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .watch-ep-help-item {
        padding: 0.5rem 0.6rem;
        gap: 0.6rem;
    }

    .watch-ep-help-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.7rem;
    }

    .watch-ep-help-text strong {
        font-size: 0.85rem;
    }

    .watch-ep-help-text span {
        font-size: 0.8rem;
    }

    .watch-ep-help-tip {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
}

/* ----------------------------------------------
   TAGLINE
   ---------------------------------------------- */
.watch-tagline {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    margin: 0.3rem 0 0.6rem;
    line-height: 1.4;
}

/* ----------------------------------------------
   CERTIFICATION BADGE
   ---------------------------------------------- */
.watch-cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.watch-cert-badge.\31 8\+ {
    border-color: rgba(231, 76, 60, 0.5);
    color: #e74c3c;
}

/* ----------------------------------------------
   SHARE & WATCHLIST BUTTONS
   ---------------------------------------------- */
.watch-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.watch-action-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
}

.watch-watchlist-btn.in-list {
    color: var(--color-accent);
    border-color: rgba(123, 77, 255, 0.25);
    background: rgba(123, 77, 255, 0.08);
}

.watch-watchlist-btn.in-list:hover {
    background: rgba(123, 77, 255, 0.15);
    border-color: rgba(123, 77, 255, 0.35);
}

/* ----------------------------------------------
   SHARE MODAL
   ---------------------------------------------- */
.watch-share-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}

.watch-share-modal.open {
    display: flex;
}

.watch-share-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.watch-share-wrap {
    position: relative;
    background: rgba(22, 19, 32, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 2rem 1.8rem 1.6rem;
    max-width: 320px;
    width: 90%;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    animation: shareModalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shareModalIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.watch-share-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.35);
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.watch-share-close:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.watch-share-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.2rem;
    text-align: center;
}

.watch-share-heading i {
    margin-right: 0.4rem;
    color: var(--color-accent);
}

.watch-share-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
}

.watch-share-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0.3rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-align: center;
}

.watch-share-opt i {
    font-size: 1.3rem;
    transition: color 0.2s ease;
}

.watch-share-opt:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

.watch-share-opt[data-share="twitter"]:hover i { color: #1da1f2; }
.watch-share-opt[data-share="facebook"]:hover i { color: #1877f2; }
.watch-share-opt[data-share="whatsapp"]:hover i { color: #25d366; }
.watch-share-opt[data-share="telegram"]:hover i { color: #0088cc; }
.watch-share-opt[data-share="reddit"]:hover i { color: #ff4500; }
.watch-share-opt[data-share="copy"]:hover i { color: var(--color-accent); }

@media (max-width: 480px) {
    .watch-share-wrap {
        padding: 1.6rem 1.2rem 1.4rem;
    }
    .watch-share-grid {
        gap: 0.4rem;
    }
    .watch-share-opt {
        padding: 0.6rem 0.2rem;
        font-size: 0.65rem;
    }
    .watch-share-opt i {
        font-size: 1.1rem;
    }
}

/* ----------------------------------------------
   TOAST
   ---------------------------------------------- */
.watch-toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.watch-toast {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    background: rgba(13, 11, 19, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    animation: toastIn 0.3s ease-out;
}

.watch-toast.hiding {
    animation: toastOut 0.25s ease-in forwards;
}

@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(0);    opacity: 1; }
    to   { transform: translateX(100%); opacity: 0; }
}

@media (max-width: 480px) {
    .watch-toast-container {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    .watch-tagline {
        font-size: 1.05rem;
    }
    .watch-action-btn {
        padding: 0.45rem 0.9rem;
        font-size: 0.75rem;
    }
    .watch-cert-badge {
        font-size: 0.65rem;
        padding: 0.1rem 0.4rem;
    }
}

/* ----------------------------------------------
   REPORT MODAL
   ---------------------------------------------- */
.watch-report-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.watch-report-modal.active {
    opacity: 1;
    visibility: visible;
}

.watch-report-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.watch-report-wrap {
    position: relative;
    width: 90%;
    max-width: 44rem;
    max-height: 90vh;
    overflow-y: auto;
    background: #1a1723;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.4rem;
    padding: 2.8rem 2.4rem 2.4rem;
    z-index: 1;
    transform: scale(0.93) translateY(1.2rem);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.watch-report-modal.active .watch-report-wrap {
    transform: scale(1) translateY(0);
}

.watch-report-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-link);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.watch-report-close:hover {
    background: rgba(123, 77, 255, 0.15);
    color: var(--color-primary);
}

.watch-report-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-heading);
    margin: 0 0 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.watch-report-heading i {
    color: var(--color-primary);
}

.watch-report-sub {
    font-size: 1rem;
    color: var(--color-link);
    margin: 0 0 1.6rem;
}

.watch-report-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.watch-report-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.watch-report-field label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-heading);
}

.watch-report-required {
    color: #e74c3c;
}

.watch-report-field select,
.watch-report-field input,
.watch-report-field textarea {
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--color-heading);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.6rem;
    padding: 0.7rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.watch-report-field select:focus,
.watch-report-field input:focus,
.watch-report-field textarea:focus {
    border-color: var(--color-primary);
    background: rgba(123, 77, 255, 0.06);
}

.watch-report-field textarea {
    resize: vertical;
    min-height: 6rem;
}

.watch-report-field select option {
    background: #1a1723;
    color: var(--color-heading);
}

.watch-report-info {
    font-size: 0.9rem;
    color: var(--color-link);
    padding: 0.6rem 0.8rem;
    background: rgba(123, 77, 255, 0.06);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.watch-report-info i {
    color: var(--color-primary);
}

.watch-report-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #6c3bff);
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.watch-report-submit:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 1.6rem rgba(123, 77, 255, 0.35);
    filter: brightness(1.1);
}

.watch-report-submit:active {
    transform: translateY(0);
}

.watch-report-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.watch-report-success {
    text-align: center;
    padding: 2rem 0;
}

.watch-report-success i {
    font-size: 3.6rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.watch-report-success h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-heading);
    margin: 0 0 0.6rem;
}

.watch-report-success p {
    font-size: 1rem;
    color: var(--color-link);
    margin: 0 0 1.4rem;
}

.watch-report-ok {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #6c3bff);
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.watch-report-ok:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0.4rem 1.6rem rgba(123, 77, 255, 0.35);
}

.watch-report-success-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-body);
    text-align: left;
    margin: 0 0 1.2rem;
}

.watch-report-success-links {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.watch-report-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-heading);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.6rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.watch-report-success-btn:hover {
    background: rgba(123, 77, 255, 0.1);
    color: var(--color-primary);
    border-color: rgba(123, 77, 255, 0.2);
}

.watch-report-success-footer {
    font-size: 0.9rem;
    color: var(--color-link);
    font-style: italic;
    margin: 0 0 1.2rem;
}

@media (max-width: 600px) {
    .watch-report-wrap {
        padding: 2rem 1.4rem 1.6rem;
    }
    .watch-report-heading {
        font-size: 1.3rem;
    }
    .watch-report-field select,
    .watch-report-field input,
    .watch-report-field textarea {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    .watch-report-submit {
        font-size: 0.95rem;
        padding: 0.7rem 1.2rem;
    }
}
