/* ==========================================================================
   DRAMA NEO - MASTER STYLESHEET
   ========================================================================== */

:root {
    --bg-dark: #0b0d14;
    --bg-surface: #141722;
    --bg-surface-hover: #1f2330;
    --bg-card: #191c28;
    
    --primary: #ff2d55;
    --primary-hover: #e02347;
    --primary-glow: rgba(255, 45, 85, 0.35);
    
    --gold: #f5b800;
    --gold-hover: #d99a00;
    --gold-glow: rgba(245, 184, 0, 0.4);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.15);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.hidden {
    display: none !important;
}

.text-accent {
    color: var(--primary);
}

/* ==========================================================================
   TOP HEADER NAVBAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(11, 13, 20, 0.95) 0%, rgba(11, 13, 20, 0.75) 70%, rgba(11, 13, 20, 0) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    padding: 10px 0;
}

.navbar.scrolled {
    background: rgba(11, 13, 20, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 6px 0;
}

.navbar-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT: LOGO & BRAND TEXT BELOW LOGO */
.navbar-left {
    display: flex;
    align-items: center;
    min-width: 160px;
}

.brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.brand-box:hover {
    transform: scale(1.04);
}

.logo-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
}

.brand-logo-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-full);
    filter: drop-shadow(0 2px 10px rgba(245, 184, 0, 0.5));
    transition: var(--transition);
}

.brand-box:hover .brand-logo-img {
    filter: drop-shadow(0 4px 16px rgba(245, 184, 0, 0.8));
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #ff2d55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

/* CENTER: MAIN MENU (BERANDA & KATEGORI) */
.navbar-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.menu-link {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.menu-link i {
    font-size: 15px;
}

.menu-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
}

.menu-link.active {
    color: var(--text-main);
    background: rgba(255, 45, 85, 0.15);
    border: 1px solid rgba(255, 45, 85, 0.3);
    box-shadow: 0 0 15px rgba(255, 45, 85, 0.2);
}

.menu-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--primary);
}

/* RIGHT: MENU (VIP, BAHASA, MASUK) */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Search Box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-main);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--primary);
}

.search-box input {
    width: 0;
    opacity: 0;
    visibility: hidden;
    padding: 8px 0;
    border: none;
    background: transparent;
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.search-box.open {
    background: rgba(20, 23, 34, 0.95);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    padding: 0 14px;
}

.search-box.open input {
    width: 180px;
    opacity: 1;
    visibility: visible;
    padding: 8px;
    outline: none;
}

.trending-search-empty {
    padding: 28px;
    border: 1px dashed var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    text-align: center;
}

/* VIP Badge Button */
.vip-badge-btn {
    background: linear-gradient(135deg, #f5b800 0%, #ff9100 100%);
    color: #0b0d14;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition);
}

.vip-badge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 184, 0, 0.6);
}

/* Language Selector Dropdown */
.lang-dropdown-wrapper {
    position: relative;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-light);
}

.lang-btn .arrow-icon {
    font-size: 10px;
    transition: transform 0.2s;
}

.lang-dropdown-wrapper.open .arrow-icon {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 190px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    padding: 6px;
    display: none;
    flex-direction: column;
    z-index: 1050;
}

.lang-dropdown-wrapper.open .lang-dropdown-menu {
    display: flex;
}

.lang-dropdown-menu li {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.lang-dropdown-menu li:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

.lang-dropdown-menu li.active {
    background: rgba(255, 45, 85, 0.15);
    color: var(--primary);
    font-weight: 700;
}

/* Login Button */
.login-btn {
    background: var(--primary);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition);
}

.login-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.5);
}

.register-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.register-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 45, 85, 0.08);
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    padding-top: 130px;
    padding-bottom: 60px;
    margin-top: 40px;
    transition: background 0.5s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 13, 20, 0.3) 0%, rgba(11, 13, 20, 0.8) 60%, var(--bg-dark) 100%),
                linear-gradient(90deg, rgba(11, 13, 20, 0.95) 0%, rgba(11, 13, 20, 0.4) 50%, rgba(11, 13, 20, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
    padding: 0 32px;
    margin-left: max(24px, calc((100vw - 1320px) / 2));
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.badge-vip {
    background: linear-gradient(135deg, #f5b800 0%, #ff9100 100%);
    color: #0b0d14;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.badge-rating {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #ffca28;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-ep {
    background: rgba(255, 45, 85, 0.2);
    color: #ff6b81;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 45, 85, 0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 500;
}

.hero-description {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 28px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-main);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: var(--text-main);
    font-size: 18px;
    border: 1px solid var(--border-light);
}

.btn-icon:hover {
    background: rgba(255, 45, 85, 0.2);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-icon.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==========================================================================
   SUB-NAVIGATION FOR MENU BERANDA (BERANDA, TRENDING, LANJUTKAN TONTON, DAFTAR SAYA, DISUKAI)
   ========================================================================== */

.beranda-subnav-section {
    position: relative;
    z-index: 20;
    margin-top: -30px;
    margin-bottom: 40px;
}

.subnav-bar {
    background: rgba(20, 23, 34, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    overflow-x: auto;
    scrollbar-width: none;
}

.subnav-bar::-webkit-scrollbar {
    display: none;
}

.subnav-item {
    flex: 1;
    min-width: 140px;
    padding: 12px 18px;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
}

.subnav-item i {
    font-size: 16px;
}

.subnav-item:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
}

.subnav-item.active {
    color: var(--text-main);
    background: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.badge-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--radius-full);
}

.subnav-item.active .badge-count {
    background: #ffffff;
    color: var(--primary);
}

/* ==========================================================================
   MAIN CONTENT & ROWS
   ========================================================================== */

.main-content {
    padding-bottom: 80px;
}

.content-row-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subtitle-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.see-all-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.see-all-link:hover {
    gap: 10px;
    color: #ff6b81;
}

/* CATEGORY FILTERS */
.category-filter-section {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 40px;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cat-pill {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.cat-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border-color: var(--border-light);
}

.cat-pill.active {
    background: var(--primary);
    color: var(--text-main);
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* ==========================================================================
   DRAMA CARDS & GRID
   ========================================================================== */

.drama-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 24px;
}

.drama-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.drama-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 45, 85, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.card-poster-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #111420;
}

.card-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.drama-card:hover .card-poster-img {
    transform: scale(1.08);
}

.card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

.card-badge-vip {
    background: linear-gradient(135deg, #f5b800 0%, #ff9100 100%);
    color: #0b0d14;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.card-badge-ep {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: #a7f3d0;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(167, 243, 208, 0.2);
}

.card-overlay-actions {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.85) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: opacity 0.3s ease;
    z-index: 6;
}

.drama-card:hover .card-overlay-actions {
    opacity: 1;
}

.card-play-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: transform 0.2s;
}

.card-play-btn:hover {
    transform: scale(1.15);
}

.card-btn-mini {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.card-btn-mini:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--primary);
}

.card-btn-mini.active {
    color: var(--primary);
    background: #fff;
}

.card-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

.card-rating {
    color: #f5b800;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* CONTINUE WATCHING CARD WITH PROGRESS BAR */
.continue-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.continue-card .card-poster-wrapper {
    aspect-ratio: 16/9;
}

.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.continue-info-tag {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* TRENDING SCROLL WITH TOP RANKING NUMBERS #1-#10 */
.trending-scroll-container {
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
}

.trending-flex-wrapper {
    display: flex;
    gap: 28px;
    min-width: max-content;
}

.trending-flex-wrapper.vertical-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    min-width: 100%;
}

.trending-card-item {
    position: relative;
    width: 210px;
    display: flex;
    align-items: flex-end;
}

.trending-flex-wrapper.vertical-list .trending-card-item {
    width: 100%;
}

.rank-number {
    display: none;
}

.trending-card-item .drama-card {
    width: 100%;
    margin-left: 0;
}

.trending-expanded {
    padding-bottom: 20px;
}

.trending-expanded .trending-flex-wrapper.vertical-list .trending-card-item .drama-card {
    max-width: 100%;
}

/* TRENDING PAGE (FULL VERTICAL LIST) */
.trending-page-shell {
    padding-top: 40px;
    padding-bottom: 80px;
}

.trending-hero {
    position: relative;
    margin-top: 96px;
    padding: 56px 0 32px;
    background: linear-gradient(120deg, rgba(15, 15, 27, 0.96) 0%, rgba(25, 12, 24, 0.88) 45%, rgba(11, 13, 20, 0.96) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trending-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at left center, rgba(255, 45, 85, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(245, 184, 0, 0.12), transparent 30%);
}

.trending-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 32px;
    align-items: end;
}

.trending-hero-copy {
    max-width: 760px;
}

.trending-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 45, 85, 0.14);
    border: 1px solid rgba(255, 45, 85, 0.3);
    color: #ffd0d9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.trending-hero-copy h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
}

.trending-hero-copy p {
    color: var(--text-muted);
    max-width: 620px;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.trending-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trending-filter-pills span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.trending-filter-pills .active {
    background: linear-gradient(135deg, #ff2d55 0%, #ff5d6a 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 28px rgba(255, 45, 85, 0.22);
}

.trending-hero-panel {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.32);
    padding: 22px 22px 18px;
    backdrop-filter: blur(14px);
}

.trending-top-rank {
    display: inline-block;
    background: rgba(245, 184, 0, 0.18);
    color: #ffd975;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(245, 184, 0, 0.35);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.trending-panel-title {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 18px;
}

.trending-panel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
}

.trending-panel-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.trending-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 12px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition);
}

.back-link:hover {
    background: rgba(255, 45, 85, 0.12);
    border-color: rgba(255, 45, 85, 0.35);
    color: #fff;
}

.trending-page-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.trending-page-item {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.trending-rank-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,45,85,0.18), rgba(245,184,0,0.15));
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.trending-page-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    background: linear-gradient(180deg, rgba(25, 28, 40, 0.98) 0%, rgba(18, 20, 30, 0.96) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.trending-page-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 45, 85, 0.4);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.trending-page-poster {
    width: 100%;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
    display: block;
}

.trending-page-content {
    padding: 22px 22px 22px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trending-page-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.trending-page-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #f5b800 0%, #ff9100 100%);
    color: #0b0d14;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trending-page-badge.neutral {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.trending-page-score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f5b800;
    font-weight: 700;
    font-size: 13px;
}

.trending-page-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 10px;
}

.trending-page-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.trending-page-description {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.trending-page-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.trending-page-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #ff2d55 0%, #ff5f7d 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(255, 45, 85, 0.38);
}

.trending-page-genre {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .trending-hero {
        margin-top: 84px;
        padding-top: 36px;
    }

    .trending-hero-inner {
        grid-template-columns: 1fr;
    }

    .trending-page-item {
        grid-template-columns: 1fr;
    }

    .trending-rank-pill {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .trending-page-card {
        grid-template-columns: 1fr;
    }

    .trending-page-content {
        padding: 18px;
    }

    .trending-page-poster {
        min-height: 220px;
    }
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-color);
}

.empty-state i {
    font-size: 48px;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ==========================================================================
   MODALS (PLAYER, VIP, LOGIN)
   ========================================================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 12, 0.85);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* VIDEO PLAYER MODAL */
.modal-player-container {
    position: relative;
    width: 100%;
    max-width: 1080px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

.video-screen-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
}

.fake-video-player {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(circle at center, #1b2030 0%, #080a10 100%);
    overflow: hidden;
}

.video-overlay-info {
    padding: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 10;
}

.playing-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.playing-ep {
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: var(--radius-sm);
}

.video-placeholder-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main-play-icon {
    font-size: 72px;
    color: var(--primary);
    filter: drop-shadow(0 0 20px var(--primary-glow));
    transition: transform 0.3s;
}

.video-placeholder-art:hover .main-play-icon {
    transform: scale(1.15);
}

.custom-video-controls {
    padding: 16px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.ctrl-btn {
    color: #fff;
    font-size: 16px;
    padding: 6px;
    transition: color 0.2s;
}

.ctrl-btn:hover {
    color: var(--primary);
}

.time-slider-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-text {
    font-size: 12px;
    color: var(--text-muted);
    font-family: monospace;
}

.seek-bar {
    flex: 1;
    height: 4px;
    accent-color: var(--primary);
    cursor: pointer;
}

.player-details-row {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    background: var(--bg-surface);
}

.player-drama-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.player-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.tag-item {
    font-size: 12px;
    background: rgba(255,255,255,0.08);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

.player-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.player-episodes-selector h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 4px;
}

.ep-btn.locked {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 215, 0, 0.25);
}

.ep-btn.locked i {
    margin-left: 4px;
    color: #f7c948;
    font-size: 0.7em;
}

.ep-btn {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ep-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.ep-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* VIP & LOGIN CARDS */
.modal-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.vip-header, .login-header {
    text-align: center;
    margin-bottom: 28px;
}

.vip-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #f5b800 0%, #ff9100 100%);
    color: #0b0d14;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px var(--gold-glow);
}

.vip-header h2, .login-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.vip-header p, .login-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.vip-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.plan-card {
    background: linear-gradient(180deg, rgba(21, 24, 35, 0.96) 0%, rgba(15, 18, 27, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 22px 18px 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 184, 0, 0.35);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.plan-card.active {
    border-color: rgba(245, 184, 0, 0.8);
    box-shadow: 0 0 0 1px rgba(245, 184, 0, 0.25), 0 20px 38px rgba(245, 184, 0, 0.12);
    background: linear-gradient(180deg, rgba(36, 29, 12, 0.98) 0%, rgba(18, 18, 20, 0.98) 100%);
}

.plan-tag {
    position: absolute;
    top: -12px;
    right: 14px;
    background: linear-gradient(135deg, #f5b800 0%, #ff9100 100%);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1.1;
}

.plan-price span {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-card ul {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-card li {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.plan-card li i {
    color: #10b981;
    font-size: 11px;
}

.btn-gold {
    background: linear-gradient(135deg, #f5b800 0%, #ff9100 100%);
    color: #0b0d14;
    font-weight: 800;
}

.plan-card .btn {
    margin-top: auto;
}

.btn-block {
    width: 100%;
}

.payment-methods {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.payment-methods > p {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.payment-method-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.payment-method-list span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
}

.payment-method-list i {
    color: var(--gold);
    font-size: 10px;
}

/* LOGIN FORM */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-divider {
    text-align: center;
    position: relative;
    margin: 10px 0;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.form-divider span {
    position: relative;
    background: var(--bg-surface);
    padding: 0 12px;
    font-size: 12px;
    color: var(--text-dim);
}

.social-logins {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-social {
    padding: 10px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.12);
}

.floating-chat-btn {
   position: fixed;
   right: 26px;
   bottom: 26px;
   z-index: 1500;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 14px 18px;
   border-radius: 999px;
   background: linear-gradient(135deg, #ff2d55 0%, #ff5f7d 100%);
   color: #fff;
   border: 1px solid rgba(255,255,255,0.15);
   box-shadow: 0 18px 34px rgba(255, 45, 85, 0.35);
   font-family: var(--font-heading);
   font-size: 14px;
   font-weight: 700;
   transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-chat-btn:hover {
   transform: translateY(-3px) scale(1.02);
   box-shadow: 0 22px 40px rgba(255, 45, 85, 0.42);
}

.floating-chat-btn i {
   font-size: 16px;
}

.chat-widget {
   position: fixed;
   right: 24px;
   bottom: 92px;
   width: min(360px, calc(100vw - 28px));
   background: rgba(17, 20, 28, 0.96);
   border: 1px solid var(--border-light);
   border-radius: 22px;
   box-shadow: 0 24px 48px rgba(0, 0, 0, 0.48);
   overflow: hidden;
   z-index: 1600;
   opacity: 0;
   visibility: hidden;
   transform: translateY(18px) scale(0.98);
   transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.chat-widget.active {
   opacity: 1;
   visibility: visible;
   transform: translateY(0) scale(1);
}

.chat-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 14px 16px;
   background: linear-gradient(135deg, rgba(255,45,85,0.2), rgba(255,255,255,0.04));
   border-bottom: 1px solid rgba(255,255,255,0.07);
}

.chat-header-title {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 14px;
   font-weight: 700;
   font-family: var(--font-heading);
}

.chat-status-dot {
   width: 9px;
   height: 9px;
   border-radius: 50%;
   background: #28c76f;
   box-shadow: 0 0 0 6px rgba(40, 199, 111, 0.18);
}

.chat-close-btn {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: rgba(255,255,255,0.08);
   color: #fff;
   font-size: 22px;
   line-height: 1;
}

.chat-body {
   max-height: 320px;
   overflow-y: auto;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: rgba(12, 15, 22, 0.85);
}

.chat-message {
   display: flex;
   max-width: 82%;
}

.chat-message span {
   display: inline-block;
   padding: 10px 12px;
   border-radius: 14px;
   font-size: 13px;
   line-height: 1.5;
}

.chat-message.admin {
   justify-content: flex-start;
}

.chat-message.admin span {
   background: rgba(255,255,255,0.06);
   border: 1px solid rgba(255,255,255,0.06);
   color: var(--text-main);
}

.chat-message.user {
   justify-content: flex-end;
   margin-left: auto;
}

.chat-message.user span {
   background: linear-gradient(135deg, #ff2d55 0%, #ff5f7d 100%);
   color: #fff;
}

.chat-form {
   display: flex;
   align-items: center;
   gap: 8px;
   padding: 12px 14px 14px;
   background: rgba(12, 15, 22, 0.95);
   border-top: 1px solid rgba(255,255,255,0.06);
}

.chat-form input {
   flex: 1;
   background: rgba(255,255,255,0.05);
   border: 1px solid var(--border-color);
   border-radius: 12px;
   padding: 10px 12px;
   color: var(--text-main);
   font-size: 13px;
   outline: none;
}

.chat-form button {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   background: linear-gradient(135deg, #ff2d55 0%, #ff5f7d 100%);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
   background: #07080f;
   border-top: 1px solid var(--border-color);
   padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 420px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: var(--text-dim);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .navbar-center .main-menu {
        gap: 20px;
    }
    .player-details-row {
        grid-template-columns: 1fr;
    }
    .vip-plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .vip-plans {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 16px;
    }
    .main-menu {
        gap: 12px;
    }
    .menu-link span {
        display: none;
    }
    .menu-link {
        padding: 8px 12px;
    }
    .hero-section {
        height: 60vh;
        margin-top: 50px;
    }
    .hero-title {
        font-size: 28px;
    }
    .subnav-item span {
        font-size: 12px;
    }
    .drama-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 14px;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}
