* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #0b0b0b;
    color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================
   1. NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    transition: background 0.4s ease;
}

.navbar.scrolled {
    background-color: #111111;
    border-bottom: 1px solid #1f1f1f;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #e50914;
    text-decoration: none;
}

.logo span {
    color: #ffffff;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #b5b5b5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
    font-weight: 700;
}

.search-box input {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid #333;
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    outline: none;
    font-size: 13px;
    transition: all 0.3s;
}

.search-box input:focus {
    border-color: #e50914;
    width: 220px;
    background: #181818;
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
}

/* ==========================================
   2. HERO BANNER (INDEX.HTML)
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    padding: 0 4%;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(77deg, rgba(11,11,11,0.95) 0%, rgba(11,11,11,0.5) 60%, rgba(11,11,11,0) 100%),
                linear-gradient(180deg, transparent 60%, #0b0b0b 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
}

.badge-featured {
    background: #e50914;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 15px 0;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 15px;
    line-height: 1.5;
    color: #d2d2d2;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s, background 0.2s;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-play {
    background-color: #e50914;
    color: #ffffff;
}

.btn-play:hover {
    background-color: #b80710;
    transform: scale(1.04);
}

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

.btn-more:hover {
    background-color: rgba(109, 109, 110, 0.4);
    transform: scale(1.04);
}

/* ==========================================
   3. MOVIES & TV GRID
   ========================================== */
.main-content {
    padding: 20px 4% 60px 4%;
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.movie-row-section {
    margin-bottom: 40px;
}

.row-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.movie-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #181818;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    border: 1px solid #222;
}

.movie-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9);
    border-color: #333;
    z-index: 30;
}

.movie-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

.card-info {
    padding: 10px;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #a3a3a3;
}

.card-rating {
    color: #46d369;
    font-weight: 700;
}

.card-hd-badge {
    background: #252525;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    color: #ddd;
    border: 1px solid #333;
}

/* ==========================================
   4. WATCH PAGE & CINEMA STYLES
   ========================================== */
.watch-body {
    background-color: #0b0b0b;
}

.back-link {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

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

.cinema-container {
    max-width: 1100px;
    margin: 85px auto 50px auto;
    padding: 0 20px;
}

.telemetry-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #121212;
    border: 1px solid #222;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.telemetry-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-emerald {
    width: 8px;
    height: 8px;
    background-color: #46d369;
    border-radius: 50%;
    box-shadow: 0 0 10px #46d369;
    animation: livePulseEmerald 1.4s infinite;
}

@keyframes livePulseEmerald {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.telemetry-live-text {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #e5e5e5;
}

.telemetry-live-text strong {
    color: #46d369;
}

.telemetry-right {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.telemetry-chip {
    background: #181818;
    border: 1px solid #282828;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.5px;
}

.chip-highlight {
    color: #46d369;
    border-color: rgba(70, 211, 105, 0.35);
    background: rgba(70, 211, 105, 0.05);
}

.player-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Ratio */
    height: 0;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.95);
    border: 1px solid #222;
}

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

#play-trigger-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 50;
    transition: background 0.3s;
}

#play-trigger-overlay:hover {
    background: rgba(0, 0, 0, 0.55);
}

.play-trigger-content {
    text-align: center;
}

.big-play-icon {
    width: 80px;
    height: 80px;
    background: #e50914;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    color: white;
    box-shadow: 0 0 35px rgba(229, 9, 20, 0.85);
    transition: transform 0.2s;
}

#play-trigger-overlay:hover .big-play-icon {
    transform: scale(1.1);
}

.play-trigger-content h3 {
    font-size: 22px;
    font-weight: 800;
}

.play-trigger-content p {
    font-size: 13px;
    color: #bbb;
    margin-top: 5px;
}

/* ==========================================
   5. PHOTO 3 EXACT LOCKER (VIEWPORT FIXED)
   ========================================== */
#ogads-locker-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(16px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.photo3-card {
    background: #141414;
    border: 1px solid #333;
    border-radius: 12px;
    max-width: 480px;
    width: 100%;
    padding: 22px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(229, 9, 20, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shield-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid #e50914;
    color: #e50914;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.photo3-card h2 {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.2;
}

.photo3-desc {
    font-size: 12px;
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.4;
}

.photo3-offers-box {
    width: 100%;
    height: 230px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.photo3-offers-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.photo3-red-btn {
    display: block;
    width: 100%;
    background: #e50914;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.photo3-red-btn:hover {
    background: #b80710;
    transform: scale(1.01);
}

.photo3-note {
    font-size: 11px;
    color: #888888;
}

/* ==========================================
   6. SERVERS BAR
   ========================================== */
.servers-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.server-label {
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

.server-btn {
    background: #181818;
    border: 1px solid #333;
    color: #ddd;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.server-btn:hover, .server-btn.active {
    background: #e50914;
    border-color: #e50914;
    color: white;
}

/* ==========================================
   7. TV SERIES EPISODES BROWSER (OPTION C)
   ========================================== */
.tv-series-panel {
    margin-top: 25px;
    background: #121212;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.tv-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #202020;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 14px;
}

.ep-section-tag {
    font-size: 11px;
    font-weight: 800;
    color: #e50914;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.panel-header-left h3 {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
}

.season-select-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.season-select-wrap label {
    font-size: 12px;
    color: #aaa;
    font-weight: 600;
}

.season-select-wrap select {
    background: #181818;
    border: 1px solid #333;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.season-select-wrap select:focus {
    border-color: #e50914;
}

/* Episodes Grid */
.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 5px;
}

.episodes-loading {
    color: #888;
    font-size: 13px;
    padding: 20px 0;
    text-align: center;
    grid-column: 1 / -1;
}

.episode-card {
    background: #161616;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}

.episode-card:hover {
    border-color: #e50914;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.6);
}

.episode-card.active {
    border-color: #e50914;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
    background: #1b1314;
}

.ep-thumb-wrap {
    position: relative;
    width: 100%;
    height: 130px;
    background: #0f0f0f;
}

.ep-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ep-number-tag {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.episode-card.active .ep-number-tag {
    background: #e50914;
    border-color: #e50914;
}

.ep-meta {
    padding: 12px;
    flex: 1;
}

.ep-title {
    font-size: 13px;
    font-weight: 700;
    color: #eee;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ep-overview {
    font-size: 11px;
    line-height: 1.4;
    color: #888;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================
   8. MEDIA DETAILS
   ========================================== */
.movie-details-card {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    background: #121212;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #222;
}

.detail-poster {
    width: 140px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.details-right {
    flex: 1;
}

.details-right h1 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 12px;
}

.genres-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.genre-badge {
    background: #262626;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #ddd;
}

.overview-text {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

/* ==========================================
   9. LUXURY SOCIAL PROOF DASHBOARD
   ========================================== */
.proof-dashboard {
    margin-top: 35px;
    background: #121212;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.proof-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid #202020;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.proof-sub-title {
    font-size: 11px;
    font-weight: 800;
    color: #e50914;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.proof-header-left h3 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.proof-header-left p {
    font-size: 12px;
    color: #888888;
}

.proof-score-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #171717;
    border: 1px solid #282828;
    padding: 10px 18px;
    border-radius: 8px;
}

.score-number {
    font-size: 28px;
    font-weight: 900;
    color: #46d369;
    line-height: 1;
}

.score-number span {
    font-size: 14px;
    color: #777;
    font-weight: 600;
}

.score-details {
    display: flex;
    flex-direction: column;
}

.score-status {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.score-stat {
    font-size: 11px;
    color: #888;
    font-weight: 600;
}

.review-compose-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.review-compose-bar input {
    flex: 1;
    background: #171717;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    padding: 13px 18px;
    border-radius: 8px;
    outline: none;
    font-size: 13px;
    transition: all 0.25s;
}

.review-compose-bar input:focus {
    border-color: #e50914;
    background: #1b1b1b;
    box-shadow: 0 0 12px rgba(229, 9, 20, 0.25);
}

.review-compose-bar button {
    background: #e50914;
    color: #ffffff;
    border: none;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
}

.review-compose-bar button:hover {
    background: #b80710;
    transform: translateY(-1px);
}

.reviews-grid-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 14px;
}

.review-card-item {
    background: #161616;
    border: 1px solid #242424;
    padding: 18px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s;
}

.review-card-item:hover {
    border-color: #383838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.user-identity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.user-handle-wrap {
    display: flex;
    flex-direction: column;
}

.user-handle {
    font-size: 13px;
    font-weight: 700;
    color: #eeeeee;
}

.verified-tag {
    color: #46d369;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.timestamp-text {
    font-size: 11px;
    color: #666666;
}

.card-comment-text {
    font-size: 13px;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 12px;
}

.card-comment-text strong {
    color: #ffffff;
}

.card-footer-tags {
    display: flex;
    gap: 6px;
}

.meta-chip-clean {
    background: #1f1f1f;
    border: 1px solid #2d2d2d;
    font-size: 9px;
    font-weight: 700;
    color: #888888;
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

/* ==========================================
   10. FOOTER
   ========================================== */
.footer {
    text-align: center;
    padding: 30px 4%;
    color: #757575;
    font-size: 13px;
    border-top: 1px solid #1c1c1c;
}

.disclaimer {
    margin-top: 5px;
    font-size: 11px;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content h1 { font-size: 30px; }
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 10px;
    }
    .movie-card img { height: 190px; }
    .movie-details-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .detail-poster { width: 120px; }
    .detail-meta, .genres-list { justify-content: center; }

    .telemetry-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .telemetry-right { width: 100%; }

    .tv-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .season-select-wrap {
        width: 100%;
        justify-content: space-between;
    }
    .episodes-grid {
        grid-template-columns: 1fr;
    }

    .proof-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .proof-score-box {
        width: 100%;
        justify-content: space-between;
    }
    .review-compose-bar {
        flex-direction: column;
    }
    .review-compose-bar button {
        padding: 13px;
    }
    .reviews-grid-panel {
        grid-template-columns: 1fr;
    }

    .photo3-card {
        padding: 15px;
        max-width: 95%;
        border: 1px solid #444;
    }
    .photo3-card h2 { font-size: 16px; margin-bottom: 4px; }
    .photo3-desc { font-size: 11px; margin-bottom: 10px; }
    .photo3-offers-box { height: 210px; }
    .photo3-red-btn { font-size: 13px; padding: 11px; }
}