/* ===== Maya Player - Master Stylesheet ===== */
/* Extracted from index.html - DO NOT MODIFY DESIGN */

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}
::-webkit-scrollbar { width: 8px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary-red); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #b2070f; }

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg-dark); z-index: 99999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.8s ease;
}
.loader-logo { font-size: 3rem; font-weight: 800; color: var(--primary-red); letter-spacing: 2px; margin-bottom: 20px; }
.loader-progress { width: 200px; height: 4px; background: #222; border-radius: 10px; overflow: hidden; }
.loader-progress-bar { height: 100%; width: 0%; background: var(--primary-red); transition: width 0.5s ease; }

/* ===== APP LAYOUT ===== */
.app-wrapper { display: flex; height: 100vh; overflow: hidden; }

/* ===== SIDEBAR ===== */
.sidebar {
    width: 220px; background: #06080F; height: 100vh;
    position: fixed; left: 0; top: 0; z-index: 1100;
    display: flex; flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3);
}
.sidebar-logo { padding: 20px; font-size: 1.5rem; font-weight: 700; color: #fff; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.sidebar-logo span { color: var(--primary-red); }
.sidebar-menu { flex: 1; overflow-y: auto; padding: 15px 10px 40vh; color: #B0B8C5; }
.sidebar-menu::-webkit-scrollbar { display: none; }
.sidebar-item {
    display: flex; align-items: center; padding: 12px 15px;
    color: #B0B8C5 !important; text-decoration: none !important;
    border-radius: var(--radius-md); margin-bottom: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; cursor: pointer;
    font-size: 0.9rem; font-weight: 500;
    white-space: nowrap; overflow: visible;
    list-style: none;
}
.sidebar-item i { margin-right: 15px; font-size: 1.2rem; width: 24px; text-align: center; transition: transform 0.3s; }
.sidebar-item:hover { background: rgba(255, 255, 255, 0.08); color: #fff !important; transform: translateX(5px); }
.sidebar-item:hover i { transform: translateX(3px) scale(1.1); }
.sidebar-item.active {
    background: rgba(255, 45, 45, 0.2) !important; color: #fff !important;
    border-left: 4px solid var(--primary-red); border-radius: 0 12px 12px 0; box-shadow: 0 0 15px rgba(255, 45, 45, 0.3);
    font-weight: 600;
}
.sidebar-item.active i { transform: scale(1.15); color: var(--primary-red); }

/* ===== MAIN CONTENT ===== */
.main-content {
    flex: 1; margin-left: 220px; height: 100vh;
    overflow-y: auto; overflow-x: hidden;
    padding: 0 24px 100px 24px; position: relative;
}

/* ===== TOP BAR ===== */
.top-bar {
    position: sticky; top: 0; z-index: 900;
    background: rgba(10, 14, 26, 0.9); backdrop-filter: blur(15px);
    padding: 12px 0; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border-light); margin-bottom: 20px;
}
.search-box {
    display: flex; align-items: center; background: var(--bg-card);
    padding: 8px 15px; border-radius: 30px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease; width: 280px;
}
.search-box:focus-within { width: 400px; border-color: var(--primary-red); background: rgba(255, 255, 255, 0.1); box-shadow: 0 0 20px rgba(229, 9, 20, 0.1); }
.search-box i { color: var(--text-muted); font-size: 1.1rem; }
.search-box input { background: transparent; border: none; outline: none; color: #fff; width: 100%; padding: 0 10px; font-size: 0.9rem; }
.search-box input::placeholder { color: var(--text-muted); }
.search-box { position: relative; }
.search-suggestions {
    position: absolute; top: calc(100% + 5px); left: 0; right: 0;
    background: #0E1118; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; z-index: 1200; max-height: 400px; overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5); padding: 6px;
    opacity: 0; visibility: hidden; transform: translateY(-5px);
    transition: all 0.2s ease;
}
.search-suggestions.show { opacity: 1; visibility: visible; transform: translateY(0); }
.search-suggestion-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 8px; cursor: pointer;
    color: #B0B8C5; font-size: 0.85rem; transition: all 0.2s;
    text-decoration: none;
}
.search-suggestion-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.search-suggestion-item i { font-size: 1.1rem; width: 20px; text-align: center; color: var(--primary-red); }
.search-suggestion-item .ss-title { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-suggestion-item .ss-type { font-size: 0.7rem; color: var(--text-muted); background: rgba(255,255,255,0.08); padding: 2px 8px; border-radius: 10px; }
.search-suggestion-all { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 4px; padding-top: 10px; color: var(--primary-red) !important; }
.search-suggestion-all i { color: var(--primary-red); }

/* Mobile search overlay */
.mobile-search-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 1150;
    background: rgba(6,8,15,0.98); padding: 15px; align-items: center;
    justify-content: center; backdrop-filter: blur(10px);
}
.mobile-search-overlay.show { display: flex; }
.mobile-search-overlay .search-box { width: 100%; max-width: 500px; }
.top-actions { display: flex; align-items: center; gap: 20px; }
.top-actions .icon-btn { font-size: 1.3rem; color: var(--text-muted); cursor: pointer; transition: all 0.3s; position: relative; }
.top-actions .icon-btn:hover { color: #fff; transform: scale(1.1); }
.top-actions .profile-avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--primary-red); object-fit: cover; cursor: pointer; }
.top-actions .profile-avatar-letter { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary-red), #ff6b6b); color: #fff; font-weight: 700; font-size: 1.1rem; }
.avatar-dropdown-wrap { position: relative; }
.avatar-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: #0E1118; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; min-width: 180px; z-index: 1200;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4); padding: 6px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.2s ease;
}
.avatar-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }
.avatar-dropdown-header { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 4px; }
.avatar-dropdown-header .name { font-weight: 600; font-size: 0.85rem; color: #fff; }
.avatar-dropdown-header .email { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.avatar-dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 8px; cursor: pointer;
    color: #B0B8C5; font-size: 0.85rem; transition: all 0.2s;
    text-decoration: none;
}
.avatar-dropdown-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.avatar-dropdown-item i { font-size: 1.1rem; width: 20px; text-align: center; }
.avatar-dropdown-item.logout { color: #f87171; }
.avatar-dropdown-item.logout:hover { background: rgba(248,113,113,0.1); color: #fca5a5; }
.notification-dot { position: absolute; top: -2px; right: -2px; width: 8px; height: 8px; background: var(--primary-red); border-radius: 50%; }

/* ===== HERO BANNER ===== */
.hero-section { margin-bottom: 24px; border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.swiper-slide { position: relative; height: 380px; background-size: cover; background-position: center; border-radius: var(--radius-lg); overflow: hidden; }
.swiper-slide::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(10, 14, 26, 0.98) 0%, rgba(10, 14, 26, 0.6) 35%, rgba(10, 14, 26, 0.2) 60%, transparent 80%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 24px 30px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; max-width: 55%; }
.hero-content h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; line-height: 1.1; }
.hero-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.85rem; line-height: 1.5; }
.hero-content .btn-watch { background: var(--primary-red); color: #fff; padding: 10px 24px; border: none; border-radius: 30px; font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; width: fit-content; text-decoration: none; }
.hero-content .btn-watch:hover { background: #b2070f; transform: scale(1.05); box-shadow: 0 0 20px rgba(229, 9, 20, 0.5); }
.swiper-pagination-bullet-active { background: var(--primary-red) !important; }

/* ===== CATEGORY BUTTONS ===== */
.category-nav { display: flex; gap: 12px; flex-wrap: nowrap; margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }
.category-nav::-webkit-scrollbar { display: none; }
.cat-btn { flex: 1; min-width: 80px; background: var(--bg-card); padding: 14px 6px; border-radius: 16px; text-align: center; cursor: pointer; border: 1px solid var(--border-light); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cat-btn:hover { border-color: var(--primary-red); background: var(--bg-card-hover); }
.cat-btn i { font-size: 1.3rem; }
.cat-btn:nth-child(1) i { color: var(--primary-red); }
.cat-btn:nth-child(2) i { color: var(--secondary-blue); }
.cat-btn:nth-child(3) i { color: var(--purple-accent); }
.cat-btn:nth-child(4) i { color: var(--orange-accent); }
.cat-btn:nth-child(5) i { color: var(--primary-red); }
.cat-btn span { font-size: 0.7rem; font-weight: 500; color: var(--text-white); }

/* ===== CONTENT SECTIONS ===== */
.content-section { margin-bottom: 28px; position: relative; display: block; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.section-header h3 { font-size: 1.05rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.section-header .view-all { color: var(--text-muted); font-size: 0.85rem; text-decoration: none; transition: 0.3s; cursor: pointer; }
.section-header .view-all:hover { color: var(--primary-red); }

/* ===== CARDS ===== */
.scroll-container { display: flex; gap: 15px; overflow-x: auto; padding: 5px 2px 15px 2px; scroll-behavior: smooth; cursor: grab; scrollbar-width: none; }
.scroll-container::-webkit-scrollbar { display: none; }
.scroll-container:active { cursor: grabbing; }
.card-ott { flex: 0 0 140px; height: 200px; background: var(--bg-card); border-radius: 14px; overflow: hidden; position: relative; transition: border-color 0.3s ease; border: 1px solid var(--border-light); }
.card-ott:hover { border-color: rgba(255, 255, 255, 0.15); }
.card-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(10,14,26,0.98) 0%, rgba(10,14,26,0.7) 40%, transparent 80%); display: flex; flex-direction: column; justify-content: flex-end; padding: 8px 10px; pointer-events: none; }
.card-badge { position: absolute; top: 8px; left: 8px; background: var(--primary-red); color: #fff; font-size: 0.55rem; font-weight: 700; padding: 3px 7px; border-radius: 6px; text-transform: uppercase; z-index: 5; letter-spacing: 0.5px; }
.card-badge.live { background: #ff0000; box-shadow: 0 0 10px rgba(255,0,0,0.5); display: flex; align-items: center; gap: 5px; }
.live-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; }
.card-badge.movie { background: var(--secondary-blue); }
.card-badge.web { background: var(--purple-accent); }
.card-badge.episode { background: var(--orange-accent); }
.card-info { position: relative; z-index: 2; padding: 10px 0; }
.card-info h5 { font-size: 0.9rem; margin: 0; font-weight: 500; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-info p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }
.play-icon-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8); font-size: 3rem; color: #fff; opacity: 0; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 4; text-shadow: 0 4px 10px rgba(0,0,0,0.8); pointer-events: none; }
.card-ott:hover .play-icon-overlay { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.card-overlay h5 { font-size: 0.8rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-overlay .card-genre { font-size: 0.65rem; color: var(--text-muted); }

/* ===== SHIMMER RAY ===== */
.card-ott::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.08) 40%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.08) 60%, transparent 100%); transform: skewX(-20deg); z-index: 6; pointer-events: none; animation: shimmer-ray 4s infinite; }
.card-ott:nth-child(2)::after { animation-delay: 0.5s; }
.card-ott:nth-child(3)::after { animation-delay: 1s; }
.card-ott:nth-child(4)::after { animation-delay: 1.5s; }
.card-ott:nth-child(5)::after { animation-delay: 2s; }
.card-ott:nth-child(6)::after { animation-delay: 2.5s; }
@keyframes shimmer-ray { 0% { left: -100%; } 30% { left: 150%; } 100% { left: 150%; } }

/* ===== SHORTS ===== */
.shorts-card { flex: 0 0 100px; height: 178px; }
.shorts-card .card-overlay { padding: 15px; justify-content: flex-end; }
.shorts-card .play-count { font-size: 0.7rem; color: #fff; }

/* ===== STORIES ===== */
.story-card { flex: 0 0 80px; text-align: center; cursor: pointer; transition: transform 0.3s; }
.story-card:hover { transform: scale(1.05) rotate(-3deg); }
.story-img-wrap { width: 72px; height: 72px; border-radius: 50%; padding: 2px; background: linear-gradient(45deg, var(--primary-red), var(--purple-accent)); margin: 0 auto 6px auto; }
.story-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg-card); }
.story-card span { font-size: 0.7rem; color: var(--text-muted); display: block; }

/* ===== STORY VIEWER OVERLAY (Instagram-style) ===== */
.story-viewer-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999;
    background: #000; justify-content: center; align-items: center;
    flex-direction: column; user-select: none;
}
.story-viewer-overlay.show { display: flex; }
.story-viewer-bar {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 100%; max-width: 420px; display: flex; gap: 4px; padding: 0 12px; z-index: 10;
}
.story-viewer-progress {
    flex: 1; height: 3px; background: rgba(255,255,255,0.3); border-radius: 3px; overflow: hidden;
}
.story-viewer-progress-fill {
    height: 100%; width: 0%; background: #fff; border-radius: 3px; transition: none;
}
.story-viewer-progress-fill.paused { animation: none; }
.story-viewer-progress-fill.completed { width: 100% !important; }
.story-viewer-header {
    position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
    width: 100%; max-width: 420px; display: flex; justify-content: space-between; align-items: center;
    padding: 0 12px; z-index: 10;
}
.story-viewer-title { color: #fff; font-size: 0.9rem; font-weight: 600; }
.story-viewer-close { color: #fff; font-size: 1.2rem; cursor: pointer; }
.story-viewer-close:hover { opacity: 0.7; }
.story-viewer-nav-prev, .story-viewer-nav-next {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    color: #fff; font-size: 1.2rem; transition: background 0.2s;
}
.story-viewer-nav-prev:hover, .story-viewer-nav-next:hover { background: rgba(255,255,255,0.3); }
.story-viewer-nav-prev { left: 12px; }
.story-viewer-nav-next { right: 12px; }
.story-viewer-image-wrap {
    width: 100%; max-width: 420px; height: 100%; max-height: 90vh; display: flex; align-items: center; justify-content: center;
}
.story-viewer-image-wrap img {
    max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px;
    -webkit-user-select: none; user-select: none; -webkit-touch-callout: none;
}
@media (max-width: 480px) {
    .story-viewer-nav-prev, .story-viewer-nav-next { display: none; }
    .story-viewer-image-wrap { max-width: 100%; max-height: 100%; }
}

/* ===== SUBSCRIPTION BANNER ===== */
.bottom-banner { margin-top: 20px; background: linear-gradient(135deg, #141925, #1A2030); border-radius: var(--radius-lg); padding: 30px; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--border-light); position: relative; overflow: hidden; }
.bottom-banner::before { content: 'JUST LAUNCHED'; position: absolute; top: 0; left: 0; background: var(--primary-red); padding: 5px 20px; border-bottom-right-radius: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; }
.banner-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.banner-content p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.btn-subscribe { background: var(--primary-red); color: #fff; border: none; padding: 10px 30px; border-radius: 30px; font-weight: 700; font-size: 0.85rem; position: relative; overflow: hidden; transition: all 0.3s; }
.btn-subscribe:hover { background: #b2070f; transform: scale(1.05); box-shadow: 0 0 20px rgba(229, 9, 20, 0.5); }

/* ===== ADVERTISEMENTS ===== */
.ad-slot { margin: 15px 0; border-radius: var(--radius-md); overflow: hidden; position: relative; }
.ad-banner { text-align: center; }
.ad-banner-img { max-width: 100%; height: auto; border-radius: var(--radius-md); display: block; margin: 0 auto; transition: transform 0.3s; }
.ad-banner-img:hover { transform: scale(1.02); }
.ad-click { text-decoration: none; display: block; }
.ad-code { padding: 0; }
.ad-adsense { margin: 15px 0; padding: 10px; border-radius: var(--radius-md); background: rgba(255,255,255,0.03); text-align: center; overflow: hidden; }
.ad-adsense ins { display: block !important; }

.ad-popup-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9000;
    background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center;
    animation: adFadeIn 0.3s ease;
}
@keyframes adFadeIn { from { opacity: 0; } to { opacity: 1; } }
.ad-popup-box {
    position: relative; max-width: 500px; max-height: 80vh; background: #1A2030;
    border-radius: 12px; padding: 15px; text-align: center;
}
.ad-popup-close {
    position: absolute; top: -12px; right: -12px; width: 32px; height: 32px;
    background: var(--primary-red); color: #fff; border-radius: 50%; font-size: 1.3rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1;
}
.ad-popup-close:hover { opacity: 0.8; }
.ad-popup-img { max-width: 100%; max-height: 60vh; border-radius: 8px; }
.ad-popup-code { max-height: 60vh; overflow: auto; }
.ad-popup-label { display: block; font-size: 0.65rem; color: var(--text-muted); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }

.ad-video { background: #000; padding: 15px; border-radius: var(--radius-md); }
.ad-video-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.ad-video-content { text-align: center; }

.ad-sidebar { margin: 15px 0; border-radius: var(--radius-md); overflow: hidden; }
.ad-sidebar .ad-banner-img { width: 100%; max-height: 200px; object-fit: cover; }

.ad-preroll-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 30;
    background: #000; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ad-preroll-label { position: absolute; top: 10px; left: 10px; font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.ad-preroll-skip { position: absolute; bottom: 20px; right: 20px; background: rgba(229,9,20,0.9); color: #fff; border: none; border-radius: 8px; padding: 8px 20px; cursor: pointer; font-size: 0.85rem; z-index: 31; }
.ad-preroll-skip:hover { background: var(--primary-red); }
.ad-preroll-content { max-width: 100%; max-height: 100%; }

@media (max-width: 768px) {
    .ad-popup-box { max-width: 90vw; }
    .ad-banner-img { max-height: 120px; object-fit: cover; width: 100%; }
}

/* ===== PUBLIC PAGES (About, Plans, How It Works) ===== */
.public-page { max-width: 1200px; margin: 0 auto; padding: 0 16px 40px; }

.public-hero {
    text-align: center; padding: 60px 20px 50px;
    background: linear-gradient(135deg, rgba(229,9,20,0.08), rgba(124,58,237,0.08));
    border-radius: var(--radius-lg); margin-bottom: 30px;
}
.public-hero-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
.public-hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 25px; }
.public-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.public-section { padding: 30px 0; }
.public-section-title { font-size: 1.8rem; font-weight: 700; text-align: center; margin-bottom: 8px; }
.public-section-desc { text-align: center; color: var(--text-muted); margin-bottom: 30px; font-size: 0.95rem; }

.public-features-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.public-feature-card {
    background: var(--bg-card); border-radius: var(--radius-md); padding: 25px 20px;
    text-align: center; transition: transform 0.3s, border-color 0.3s;
    border: 1px solid var(--border-light);
}
.public-feature-card:hover { transform: translateY(-5px); border-color: rgba(229,9,20,0.3); }
.public-feature-icon {
    width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center;
    justify-content: center; font-size: 1.5rem; margin: 0 auto 15px;
}
.public-feature-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.public-feature-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.public-benefits { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; }
.public-benefit-item { display: flex; gap: 15px; align-items: flex-start; }
.public-benefit-item h5 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.public-benefit-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.public-stats {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
    padding: 30px; background: var(--bg-card); border-radius: var(--radius-lg);
}
.public-stat-item { text-align: center; }
.public-stat-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--primary-red); }
.public-stat-label { font-size: 0.85rem; color: var(--text-muted); }

.public-cta {
    text-align: center; padding: 50px 20px;
    background: linear-gradient(135deg, rgba(229,9,20,0.1), rgba(124,58,237,0.1));
    border-radius: var(--radius-lg); margin-top: 30px;
}
.public-cta h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 10px; }
.public-cta p { color: var(--text-muted); margin-bottom: 25px; }
.public-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Plans Page */
.public-plans-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px; max-width: 1000px; margin: 0 auto;
}
.public-plan-card {
    background: var(--bg-card); border-radius: var(--radius-lg); padding: 30px 25px;
    border: 1px solid var(--border-light); transition: transform 0.3s, border-color 0.3s;
    position: relative; display: flex; flex-direction: column;
}
.public-plan-card:hover { transform: translateY(-5px); }
.public-plan-card.featured { border-color: var(--primary-red); border-width: 2px; }
.public-plan-badge {
    background: var(--primary-red); color: #fff; padding: 5px 15px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700; display: inline-block; margin-bottom: 12px;
    align-self: flex-start;
}
.public-plan-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 5px; }
.public-plan-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; min-height: 40px; }
.public-plan-price { margin-bottom: 15px; }
.public-plan-price .price-amount { font-size: 2.2rem; font-weight: 800; color: var(--primary-red); }
.public-plan-price .price-cycle { font-size: 0.85rem; color: var(--text-muted); }
.public-plan-trial {
    background: rgba(34,197,94,0.1); color: #4ade80; padding: 6px 12px; border-radius: 8px;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 15px; display: inline-block; align-self: flex-start;
}
.public-plan-features { list-style: none; padding: 0; margin: 0 0 20px 0; flex: 1; }
.public-plan-features li {
    padding: 6px 0; font-size: 0.85rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 8px;
}
.public-plan-features li i { font-size: 1rem; flex-shrink: 0; }
.public-plan-features li.included i { color: #4ade80; }
.public-plan-features li.excluded i { color: #f87171; }
.public-plan-features li strong { color: var(--text-white); }
.public-plan-cta { margin-top: auto; }
.public-plan-cta .btn-ott, .public-plan-cta .btn-ott-outline {
    display: block; padding: 12px; text-align: center; text-decoration: none;
}

/* FAQ */
.public-faq { max-width: 800px; margin: 0 auto; }
.public-faq-item {
    background: rgba(255,255,255,0.03); border-radius: var(--radius-md); padding: 18px 20px;
    margin-bottom: 12px; border: 1px solid var(--border-light);
}
.public-faq-item h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.public-faq-item h5 i { margin-right: 8px; }
.public-faq-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* How It Works - Steps */
.public-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px; max-width: 900px; margin: 0 auto;
}
.public-step {
    text-align: center; position: relative; padding: 30px 20px;
    background: var(--bg-card); border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}
.public-step-number {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    width: 36px; height: 36px; background: var(--primary-red); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
}
.public-step-icon { font-size: 2rem; color: var(--primary-red); margin-bottom: 15px; margin-top: 10px; }
.public-step h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.public-step p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Device Grid */
.public-device-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px; max-width: 800px; margin: 0 auto;
}
.public-device-card {
    text-align: center; padding: 25px 15px; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03); border: 1px solid var(--border-light);
    transition: transform 0.3s;
}
.public-device-card:hover { transform: translateY(-5px); }
.public-device-card i { font-size: 2.5rem; color: var(--primary-red); margin-bottom: 10px; }
.public-device-card h5 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.public-device-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Mockups */
.mockup-section { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.mockup-section-reverse { flex-direction: row-reverse; }
.mockup-features { flex: 1; min-width: 280px; }
.mockup-feature-item { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 20px; }
.mockup-feature-item i { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.mockup-feature-item h5 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.mockup-feature-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Phone Mockup */
.mockup-phone { flex: 0 0 280px; margin: 0 auto; }
.mockup-phone-frame {
    width: 280px; height: 560px; background: #1a1a2e; border-radius: 35px;
    padding: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative; border: 3px solid #2a2a3e;
}
.mockup-phone-notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 80px; height: 18px; background: #1a1a2e; border-radius: 0 0 12px 12px; z-index: 10;
}
.mockup-phone-screen {
    width: 100%; height: 100%; background: #0E1118; border-radius: 25px;
    overflow: hidden; display: flex; flex-direction: column;
}
.mockup-app-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 15px 10px; font-size: 0.8rem; color: #fff;
}
.mockup-app-logo { font-weight: 700; font-size: 0.85rem; color: var(--primary-red); }
.mockup-hero-banner {
    background: linear-gradient(135deg, #1a2030, #2a1a30); margin: 5px 10px 10px;
    border-radius: 10px; padding: 50px 15px 15px; position: relative; min-height: 100px;
}
.mockup-hero-content { text-align: left; }
.mockup-badge {
    background: var(--primary-red); color: #fff; font-size: 0.55rem; padding: 2px 8px;
    border-radius: 4px; display: inline-block; margin-bottom: 5px; font-weight: 700;
}
.mockup-hero-content h5 { font-size: 0.8rem; color: #fff; margin-bottom: 8px; }
.mockup-play-btn {
    background: var(--primary-red); color: #fff; border: none; border-radius: 6px;
    padding: 4px 12px; font-size: 0.65rem; cursor: pointer;
}
.mockup-content-row { padding: 5px 10px; }
.mockup-content-row h6 { font-size: 0.7rem; color: #fff; margin-bottom: 5px; }
.mockup-card-row { display: flex; gap: 8px; overflow: hidden; }
.mockup-card {
    width: 70px; height: 100px; background: linear-gradient(135deg, #1a2030, #2a2a3e);
    border-radius: 8px; flex-shrink: 0;
}
.mockup-bottom-nav {
    display: flex; justify-content: space-around; align-items: center;
    padding: 10px 5px; background: rgba(0,0,0,0.3); margin-top: auto;
}
.mockup-bottom-nav i { font-size: 1rem; color: #555; }
.mockup-bottom-nav i.active { color: var(--primary-red); }

/* Desktop Mockup */
.mockup-desktop { flex: 0 0 550px; margin: 0 auto; }
.mockup-desktop-frame {
    width: 100%; background: #1a1a2e; border-radius: 12px; padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4); border: 2px solid #2a2a3e;
}
.mockup-desktop-bar {
    display: flex; gap: 6px; padding: 5px 10px; margin-bottom: 8px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #28ca42; }
.mockup-desktop-screen {
    display: flex; background: #0E1118; border-radius: 8px; overflow: hidden; height: 340px;
}
.mockup-desktop-sidebar {
    width: 140px; background: rgba(0,0,0,0.2); padding: 15px 10px; flex-shrink: 0;
}
.mockup-sidebar-logo { font-size: 0.75rem; font-weight: 700; color: var(--primary-red); margin-bottom: 15px; display: flex; align-items: center; gap: 5px; }
.mockup-sidebar-item {
    font-size: 0.7rem; color: #888; padding: 6px 8px; border-radius: 6px; margin-bottom: 3px;
    display: flex; align-items: center; gap: 6px;
}
.mockup-sidebar-item.active { background: rgba(229,9,20,0.15); color: var(--primary-red); }
.mockup-desktop-main { flex: 1; padding: 15px; overflow: hidden; }
.mockup-desktop-searchbar {
    display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05);
    border-radius: 8px; padding: 6px 12px; margin-bottom: 12px;
}
.mockup-desktop-searchbar i { font-size: 0.8rem; color: #666; }
.mockup-search-placeholder { font-size: 0.7rem; color: #555; }
.mockup-desktop-hero {
    background: linear-gradient(135deg, #1a2030, #2a1a30); border-radius: 10px;
    padding: 30px 20px; margin-bottom: 12px; min-height: 80px;
}
.mockup-desktop-hero h4 { font-size: 0.9rem; color: #fff; margin-bottom: 8px; }
.mockup-desktop-row { margin-bottom: 10px; }
.mockup-desktop-row h6 { font-size: 0.75rem; color: #fff; margin-bottom: 5px; }
.mockup-desktop-row .mockup-card { width: 80px; height: 110px; }
.mockup-desktop-row .mockup-card-row { gap: 10px; }

@media (max-width: 768px) {
    .public-hero-title { font-size: 1.8rem; }
    .public-section-title { font-size: 1.4rem; }
    .mockup-section { flex-direction: column !important; }
    .mockup-phone, .mockup-desktop { flex: 0 0 auto; }
    .public-stats { gap: 20px; }
    .public-stat-number { font-size: 1.8rem; }
    .public-cta h2 { font-size: 1.4rem; }
}

/* ===== MUSIC ===== */
.music-card { width: 180px; text-align: center; cursor: pointer; transition: transform 0.3s; position: relative; }
.music-card:hover { transform: scale(1.05); }
.music-card:hover .music-play-icon { opacity: 1; }
.music-cover { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; margin-bottom: 10px; }
.music-play-icon { position: absolute; top: 60px; left: 50%; transform: translateX(-50%); font-size: 2.5rem; color: #fff; opacity: 0; transition: opacity 0.3s; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

.music-player-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 2500;
    background: #0E1118; border-top: 1px solid rgba(255,255,255,0.12);
    padding: 12px 20px; align-items: center; gap: 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}
.music-player-bar.show { display: flex; }
.music-player-cover { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.music-player-info { min-width: 120px; max-width: 200px; overflow: hidden; }
.music-player-title { font-size: 0.85rem; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.music-player-artist { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.music-player-controls { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.music-player-controls i { font-size: 1.5rem; color: #fff; cursor: pointer; transition: color 0.2s; }
.music-player-controls i:hover { color: var(--primary-red); }
.music-player-progress-wrap { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 100px; }
.music-player-progress-wrap span { font-size: 0.7rem; color: var(--text-muted); flex-shrink: 0; }
.music-player-progress { flex: 1; height: 4px; background: rgba(255,255,255,0.15); border-radius: 4px; cursor: pointer; overflow: hidden; }
.music-player-progress-fill { height: 100%; width: 0%; background: var(--primary-red); border-radius: 4px; transition: width 0.1s linear; }
.music-player-close { font-size: 1rem; color: var(--text-muted); cursor: pointer; flex-shrink: 0; }
.music-player-close:hover { color: #fff; }

@media (max-width: 768px) {
    .music-player-bar { padding: 10px 12px; gap: 10px; flex-wrap: wrap; }
    .music-player-info { max-width: 100px; }
    .music-player-progress-wrap { order: 3; flex-basis: 100%; }
    .music-card { width: 140px; }
}
@media (max-width: 480px) {
    .music-card { width: 120px; }
    .music-player-controls i { font-size: 1.3rem; }
}

/* ===== BOTTOM MOBILE NAV ===== */
.bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: #06080F; backdrop-filter: blur(15px); padding: 10px 20px; justify-content: space-between; align-items: center; z-index: 2000; border-top: 1px solid rgba(255,255,255,0.12); }
.nav-item { text-align: center; color: #B0B8C5; text-decoration: none; font-size: 0.72rem; font-weight: 500; transition: 0.3s; position: relative; }
.nav-item i { font-size: 1.4rem; display: block; margin-bottom: 2px; transition: 0.3s; }
.nav-item.active { color: var(--primary-red); }
.nav-item.active i { transform: scale(1.1); color: var(--primary-red); }
.nav-item.center-btn { background: var(--primary-red); width: 52px; height: 52px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-top: -25px; box-shadow: 0 5px 20px rgba(255, 45, 45, 0.4); color: #fff; font-size: 1.6rem; }
.nav-item.center-btn:hover { transform: scale(1.1); box-shadow: 0 0 30px rgba(229, 9, 20, 0.6); }

/* ===== BACKGROUND EFFECTS ===== */
.bg-glow { display: none; }
.bg-glow-2 { display: none; }
.mouse-glow { display: none; }

/* ===== ANIMATIONS ===== */
@keyframes pulse-dot { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }
@keyframes move-glow { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30%, 30%) scale(1.2); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ===== ADMIN PANEL STYLES ===== */
.admin-sidebar { width: 260px; background: #06080F; height: 100vh; position: fixed; left: 0; top: 0; z-index: 1100; display: flex; flex-direction: column; border-right: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3); }
.admin-content { margin-left: 260px; padding: 24px; min-height: 100vh; }
.admin-card { background: var(--bg-card); border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--border-light); margin-bottom: 20px; }
.admin-table { width: 100%; color: var(--text-white); }
.admin-table th { padding: 12px; border-bottom: 2px solid var(--border-light); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.admin-table td { padding: 12px; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.stat-card { background: var(--bg-card); border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--border-light); text-align: center; }
.stat-card .stat-icon { font-size: 2rem; margin-bottom: 10px; }
.stat-card .stat-value { font-size: 1.8rem; font-weight: 700; color: var(--text-white); }
.stat-card .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 5px; }
.form-control, .form-select { background: var(--bg-card); border: 1px solid var(--border-light); color: var(--text-white); border-radius: 10px; padding: 10px 15px; }
.form-control:focus, .form-select:focus { background: var(--bg-card); border-color: var(--primary-red); color: var(--text-white); box-shadow: 0 0 10px rgba(255,45,45,0.1); }
.form-control::placeholder { color: var(--text-muted); }
.form-label { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 6px; }
.btn-ott { background: var(--primary-red); color: #fff; border: none; padding: 10px 24px; border-radius: 10px; font-weight: 600; font-size: 0.85rem; transition: all 0.3s; }
.btn-ott:hover { background: #b2070f; color: #fff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255,45,45,0.3); }
.btn-ott-outline { background: transparent; color: var(--text-white); border: 1px solid var(--border-light); padding: 10px 24px; border-radius: 10px; font-weight: 600; font-size: 0.85rem; transition: all 0.3s; }
.btn-ott-outline:hover { border-color: var(--primary-red); color: var(--primary-red); }
.alert-ott { border-radius: var(--radius-md); padding: 15px 20px; margin-bottom: 20px; border: 1px solid; }
.alert-ott.alert-success { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); color: #4ade80; }
.alert-ott.alert-danger { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.3); color: #f87171; }
.alert-ott.alert-warning { background: rgba(251, 191, 36, 0.1); border-color: rgba(251, 191, 36, 0.3); color: #fbbf24; }
.alert-ott.alert-info { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.3); color: #60a5fa; }
@keyframes slideUp { from { transform: translateY(-20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.badge-ott { padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 600; }
.badge-ott.active { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.badge-ott.inactive { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.badge-ott.pending { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }

/* ===== PAGINATION ===== */
.pagination-wrap { margin-top: 20px; }
.pagination .page-link { background: var(--bg-card); border: 1px solid var(--border-light); color: var(--text-white); border-radius: 8px !important; margin: 0 2px; }
.pagination .page-link:hover { background: var(--primary-red); color: #fff; border-color: var(--primary-red); }
.pagination .page-item.active .page-link { background: var(--primary-red); border-color: var(--primary-red); }
.pagination .page-item.disabled .page-link { opacity: 0.4; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .sidebar { transform: translateX(-100%); width: 240px; }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; padding: 0 14px 90px 14px; }
    .top-bar { padding: 10px 0; flex-wrap: wrap; gap: 10px; }
    .search-box:focus-within { width: 100%; }
    .hero-content { max-width: 100%; padding: 16px 18px; }
    .hero-content h1 { font-size: 1.3rem; }
    .swiper-slide { height: 240px; }
    .category-nav { gap: 8px; }
    .cat-btn { min-width: 60px; padding: 10px 4px; }
    .cat-btn i { font-size: 1.1rem; }
    .cat-btn span { font-size: 0.65rem; }
    .card-ott { flex: 0 0 120px; height: 170px; }
    .shorts-card { flex: 0 0 85px; height: 150px; }
    .bottom-nav { display: flex !important; }
    .bottom-banner { flex-direction: column; text-align: center; gap: 16px; padding: 24px 16px; align-items: stretch; }
    .bottom-banner::before { left: 50%; transform: translateX(-50%); border-radius: 0 0 16px 16px; top: 0; width: 100%; text-align: center; }
    .bg-glow, .bg-glow-2, .mouse-glow { display: none; }
    .admin-sidebar { transform: translateX(-100%); width: 240px; }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-content { margin-left: 0 !important; padding: 14px; }
    .sidebar-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1099; }
    .sidebar-overlay.show { display: block; }
}
@media (max-width: 480px) {
    .card-ott { flex: 0 0 105px; height: 155px; }
    .shorts-card { flex: 0 0 75px; height: 132px; }
    .story-card { flex: 0 0 56px; }
    .story-img-wrap { width: 56px; height: 56px; }
}

/* ===== PWA INSTALL BUTTON ===== */
.btn-pwa-install {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    animation: pwaPulse 2s ease-in-out infinite;
}
.btn-pwa-install:hover {
    background: #b2070f;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}
.btn-pwa-install i {
    font-size: 0.9rem;
}
@keyframes pwaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(229, 9, 20, 0); }
}
@media (max-width: 480px) {
    .btn-pwa-install { padding: 5px 10px; font-size: 0.72rem; }
    .btn-pwa-install i { font-size: 0.8rem; }
}
