* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
:root {
    --bg: #090a0f;
    --panel: #11131a;
    --border: #262a3b;
    --gold: #f59e0b;
    --gold2: #fbbf24;
    --text: #ffffff;
    --text-sub: #e2e8f0;
    --muted: #94a3b8;
    --red: #e71d36;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.appLayoutWrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.navBarStickyMaster {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0b0d13;
    border-bottom: 1px solid var(--border);
    width: 100%;
}

.siteHeaderRow {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.headerLeftNavGroup {
    display: flex;
    align-items: center;
    gap: 28px;
}

.brandLogo { display: flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 900; font-size: 19px; color: #fff; cursor: pointer; }
.logoSymbol { width: 30px; height: 30px; border-radius: 6px; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; color: #111; font-size: 13px; }
.brandLogo span { background: linear-gradient(135deg, var(--gold), var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.topTabsList { display: flex; gap: 20px; align-items: center; }
.topTabItem {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s;
}
.topTabItem:hover { color: #fff; }
.topTabItem.active { color: #fff; font-weight: 800; border-bottom: 2px solid var(--red); padding-bottom: 2px; }

.headerRightGroup { display: flex; align-items: center; gap: 10px; }
.searchForm { display: flex; align-items: center; background: #161822; border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px; }
.searchForm input { background: transparent; border: none; color: #fff; padding: 4px 6px; font-size: 12px; outline: none; width: 140px; }
.searchForm input::placeholder { color: #64748b; }
.searchForm button { background: none; border: none; color: var(--gold); cursor: pointer; }

.userProfileMenu { position: relative; display: inline-block; }
.btnUserAuth {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    border: none;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.userDropdownContent {
    display: none;
    position: absolute;
    right: 0;
    top: 38px;
    background: #161822;
    min-width: 150px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.8);
    border: 1px solid var(--border);
    border-radius: 6px;
    z-index: 1001;
    overflow: hidden;
}
.userDropdownContent.show { display: block; }
.userDropdownContent a { color: #f8fafc; padding: 10px 14px; text-decoration: none; display: block; font-size: 12px; font-weight: 600; cursor: pointer; }
.userDropdownContent a:hover { background: #202432; color: var(--gold); }

.heroSectionGrid {
    margin-top: 16px;
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
    width: 100%;
}
.heroSliderBox {
    position: relative;
    width: 100%;
    height: 290px;
    border-radius: 8px;
    overflow: hidden;
    background: #11131a;
    border: 1px solid var(--border);
}
.heroSlideItem {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 16px;
    background: linear-gradient(135deg, #151822 0%, #0d0f15 100%);
}
.heroSlideItem.active { 
    opacity: 1; 
    z-index: 2; 
    pointer-events: auto; 
}
.heroMainThumb { width: 180px; height: 100%; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: #000; }
.heroMainDetails { flex: 1; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.heroMainTitle { font-size: 18px; font-weight: 800; color: #ffffff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.heroMainSub { font-size: 12px; color: var(--gold2); font-weight: 600; margin-bottom: 8px; }
.heroMainSynopsis { font-size: 12px; color: var(--text-sub); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
.btnPlayMain {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.heroSideStack { display: flex; flex-direction: column; gap: 10px; height: 290px; width: 100%; }
.heroSideCard {
    flex: 1;
    background: #12151f;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    transition: border-color 0.15s;
    cursor: pointer;
}
.heroSideCard:hover { border-color: var(--gold); }
.heroSideThumb { width: 80px; height: 100%; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: #000; }
.heroSideInfo { flex: 1; overflow: hidden; }
.heroSideTitle { font-size: 13px; font-weight: 800; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.heroSideSub { font-size: 11px; color: var(--gold2); margin-bottom: 4px; font-weight: 600; }
.heroSideDesc { font-size: 11px; color: var(--text-sub); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.promoAppBanner { margin-bottom: 16px; width: 100%; }
.promoAppBox {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(231, 29, 54, 0.12) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.promoAppLeft { display: flex; align-items: center; gap: 12px; }
.btnPromoAction { background: var(--red); color: #fff; padding: 7px 18px; border-radius: 4px; font-size: 12px; font-weight: 800; text-decoration: none; cursor: pointer; }

.categoryBoxSingleGrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    background: #11131a;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px;
    margin-top: 14px;
    margin-bottom: 16px;
    width: 100%;
}
.catSingleItem {
    text-align: center;
    padding: 9px 4px;
    background: #161822;
    border: 1px solid #282c3f;
    border-radius: 4px;
    color: #f1f5f9;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.1s;
}
.catSingleItem:hover { border-color: var(--gold); color: #fff; }
.catSingleItem.active { background: var(--gold); color: #111; font-weight: 800; border-color: var(--gold); }

.sectionHeaderRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    width: 100%;
}
.sectionHeading { font-size: 17px; font-weight: 800; color: #ffffff; }
.linkSeeMore { color: var(--gold2); text-decoration: none; font-size: 13px; font-weight: 800; cursor: pointer; }

.dramaGrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    width: 100%;
}
.dramaCard {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s;
    cursor: pointer;
}
.dramaCard:hover { transform: translateY(-3px); border-color: var(--gold); }
.posterWrapper { position: relative; width: 100%; aspect-ratio: 9 / 13; background: #000; }
.posterWrapper img { width: 100%; height: 100%; object-fit: cover; }
.badgeEp { position: absolute; bottom: 4px; right: 4px; background: rgba(0,0,0,0.88); color: var(--gold2); font-size: 10px; font-weight: 800; padding: 2px 5px; border-radius: 3px; border: 1px solid rgba(255,255,255,0.1); }
.cardBody { padding: 9px; }
.cardTitle { font-size: 13px; font-weight: 700; color: #ffffff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.cardCategory { font-size: 11px; color: #cbd5e1; font-weight: 500; }

.paginationDramaBox { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 25px 0 40px; }
.pageBoxBtn { width: 36px; height: 36px; background: #161822; border: 1px solid var(--border); color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 4px; font-weight: bold; font-size: 13px; cursor: pointer; }
.pageBoxBtn.disabled { opacity: 0.3; pointer-events: none; }
.pageBoxIndicator { padding: 0 16px; height: 36px; background: #13151f; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; color: #cbd5e1; }

.viewTabPane { display: none; }
.viewTabPane.active { display: block; }

.breadcrumbNav {
    padding: 14px 0 10px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;
}
.breadcrumbNav a { color: var(--muted); text-decoration: none; font-weight: 700; cursor: pointer; }
.breadcrumbNav a:hover { color: var(--gold); }
.breadcrumbNav .activeEp { color: var(--gold2); font-weight: 800; }

.dramaboxLayoutGrid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    margin-bottom: 25px;
}
.playerFrame {
    width: 100%;
    height: 560px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.playerFrame video, .playerFrame iframe { width: 100%; height: 100%; max-width: 100%; aspect-ratio: 9 / 16; border: none; object-fit: contain; }

.lockedOverlay {
    position: absolute;
    inset: 0;
    background: rgba(10,12,18,0.96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    z-index: 10;
}
.lockBtn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 14px;
    font-size: 13px;
    cursor: pointer;
    border: none;
}

.dramaInfoArea { margin-top: 14px; }
.dramaMainTitle { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.dramaMetaRating { font-size: 12px; color: var(--gold2); font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.dramaSynopsisText { font-size: 12px; color: var(--text-sub); line-height: 1.6; margin-bottom: 14px; }

.genreTagsRow { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; flex-wrap: wrap; }
.genreTagBadge {
    background: #161822;
    border: 1px solid var(--border);
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
}

.shareAndLikeBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 12px;
}
.shareIconsGroup { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #cbd5e1; font-weight: 700; }
.socialShareBtn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: transform 0.15s;
}
.socialShareBtn:hover { transform: scale(1.1); }
.btnCopyLinkRound {
    background: #202434;
    border: 1px solid var(--border);
    color: var(--gold2);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btnLikeAction {
    background: #161822;
    border: 1px solid var(--border);
    color: #cbd5e1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btnLikeAction.liked { border-color: var(--red); color: #fff; }

.episodesSideCard {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 560px;
}
.epSideHeader {
    background: #141722;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.epSideHeaderTitle { font-size: 13px; font-weight: 800; color: #fff; }

.episodes5ColGrid {
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    overflow-y: auto;
    align-content: start;
    flex: 1;
}
.epSquareBtn {
    aspect-ratio: 1;
    background: #161822;
    border: 1px solid #262a3b;
    color: #cbd5e1;
    border-radius: 4px;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.1s;
}
.epSquareBtn:hover { border-color: var(--gold); color: #fff; }
.epSquareBtn.active { background: var(--red); border-color: var(--red); color: #fff; font-weight: 900; }
.epMiniLockIcon { position: absolute; top: 2px; right: 2px; font-size: 8px; line-height: 1; }

.commentsSectionBox {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 30px;
}
.commentsHeaderTitle { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.commentInputWrap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.commentTextarea {
    width: 100%;
    height: 75px;
    background: #090a0f;
    border: 1px solid #262a3b;
    border-radius: 6px;
    padding: 10px 12px;
    color: #fff;
    font-size: 12px;
    outline: none;
    resize: none;
}
.commentTextarea:focus { border-color: var(--gold); }
.btnSubmitComment {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: #111;
    border: none;
    padding: 7px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.commentsListContainer { display: flex; flex-direction: column; gap: 12px; max-height: 380px; overflow-y: auto; }
.singleCommentCard { background: #141722; border: 1px solid rgba(255,255,255,0.04); border-radius: 6px; padding: 10px 14px; }
.commentUserRow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.commentAuthor { font-size: 12px; font-weight: 800; color: var(--gold2); }
.commentTime { font-size: 10px; color: var(--muted); }
.commentBodyText { font-size: 12px; color: #cbd5e1; line-height: 1.4; }

.forYouSection { margin-top: 15px; margin-bottom: 40px; }
.forYouHeading { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.forYouGrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.recCard {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.15s, border-color 0.15s;
}
.recCard:hover { transform: translateY(-3px); border-color: var(--gold); }
.recCard img { width: 100%; aspect-ratio: 9 / 13; object-fit: cover; display: block; background: #000; }
.recCardBody { padding: 8px; }
.recCardTitle { font-size: 12px; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.recCardCategory { font-size: 10px; color: var(--gold2); font-weight: 600; }

.authModalMask { 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.85); 
    backdrop-filter: blur(6px); 
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999; 
    display: none; 
    align-items: center; 
    justify-content: center; 
    padding: 16px; 
    overflow-y: auto; 
    box-sizing: border-box;
    transform: translateZ(0);
}
.authModalMask.show { display: flex; }
.authDialog { 
    background: #141722; 
    border: 1px solid #2e3344; 
    width: 100%; 
    max-width: 420px; 
    border-radius: 10px; 
    padding: 22px 20px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.85); 
    max-height: 90vh; 
    overflow-y: auto; 
    box-sizing: border-box;
    margin: auto;
    transform: translateZ(0);
}
.authHeader { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.formInputText { width: 100%; padding: 10px 12px; background: #090a0f; border: 1px solid #2a2e3d; border-radius: 4px; color: #fff; font-size: 12px; margin-bottom: 10px; outline: none; box-sizing: border-box; }
.btnSubmitAuth { width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #111; border: none; padding: 10px; border-radius: 4px; font-weight: 800; cursor: pointer; }
.btnSm { background: #222634; border: 1px solid #353b50; color: var(--gold2); padding: 2px 8px; border-radius: 4px; font-size: 10px; font-weight: 800; cursor: pointer; }

.customAlertMask { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(4px); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.customAlertMask.show { display: flex; }
.customAlertDialog { background: #141722; border: 1px solid var(--gold); width: 100%; max-width: 380px; border-radius: 8px; padding: 22px; box-shadow: 0 10px 40px rgba(0,0,0,0.9); text-align: center; }

.btnFollow {
    background: #1c202a;
    color: #f1d48a;
    border: 1px solid #32394a;
    padding: 8px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.btnFollow.active {
    background: #d7ad52;
    color: #111;
    border-color: #d7ad52;
}

.vipPackageCard {
    background: #141722;
    border: 1px solid #282d3e;
    color: #fff;
    padding: 10px 4px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
}
.vipPackageCard:hover { border-color: var(--gold); }
.vipPackageCard.active {
    background: rgba(245, 158, 11, 0.12);
    border-color: var(--gold);
    color: var(--gold2);
}

.socialAuthStack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
    width: 100%;
}
#googleBtnContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    height: 44px;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
}
.btnTelegramAuthModern {
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, #2ba2db 0%, #1e87be 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(34, 158, 217, 0.25);
    transition: all 0.2s ease;
    outline: none;
}
.btnTelegramAuthModern:hover {
    background: linear-gradient(135deg, #38ade4 0%, #2497d3 100%);
    box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4);
    transform: translateY(-1px);
}
.btnTelegramAuthModern svg { width: 20px; height: 20px; fill: #ffffff; flex-shrink: 0; }

.authDividerRow {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
    color: #64748b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.authDividerRow::before, .authDividerRow::after { content: ''; flex: 1; border-bottom: 1px solid #282d3f; }
.authDividerRow span { padding: 0 12px; }

.siteFooter { border-top: 1px solid var(--border); background: #0d0f15; padding: 20px 16px; margin-top: 35px; text-align: center; }
.footerLinksCompact { display: flex; align-items: center; justify-content: center; gap: 15px; font-size: 12px; margin-bottom: 6px; }
.footerLinksCompact a { color: #cbd5e1; text-decoration: none; font-weight: 600; }
.footerLinksCompact a:hover { color: var(--gold); }
.footerCopyText { font-size: 11px; color: #64748b; }

@media (max-width: 850px) {
    .headerLeftNavGroup { gap: 14px; }
    .heroSectionGrid { grid-template-columns: 1fr; }
    .heroSideStack { display: none; }
    .heroSliderBox { height: 165px; }
    .heroMainThumb { width: 105px; }
    .heroMainTitle { font-size: 15px; }
    .heroMainSynopsis { display: -webkit-box; -webkit-line-clamp: 2; }
    .dramaGrid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .categoryBoxSingleGrid { grid-template-columns: repeat(3, 1fr); }
    .sectionHeading { font-size: 15px; }
    .dramaboxLayoutGrid { grid-template-columns: 1fr; }
    .playerFrame { height: 56vh; max-height: 480px; }
    .episodesSideCard { height: 320px; }
    .forYouGrid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

@media (max-width: 768px) {
    .hide-on-mobile { display: none !important; }
    .siteHeaderRow { display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 8px 10px !important; gap: 6px !important; }
    .headerLeftNavGroup { flex-shrink: 0 !important; }
    .brandLogo { font-size: 14px !important; gap: 5px !important; }
    .brandLogo .logoSymbol { width: 22px !important; height: 22px !important; font-size: 10px !important; }
    .headerRightGroup { display: flex !important; align-items: center !important; justify-content: flex-end !important; flex: 1 !important; gap: 6px !important; }
    .searchForm { display: flex !important; align-items: center !important; flex: 1 !important; max-width: 145px !important; min-width: 95px !important; height: 28px !important; background: #141724 !important; border: 1px solid #2b3247 !important; border-radius: 14px !important; padding: 0 8px !important; }
    #topSearchInput { width: 100% !important; height: 100% !important; background: transparent !important; border: none !important; outline: none !important; color: #ffffff !important; font-size: 10px !important; padding: 0 !important; }
    #topSearchInput::placeholder { color: #7a8296 !important; }
    .searchForm button { background: transparent !important; border: none !important; font-size: 11px !important; color: #7a8296 !important; padding: 0 !important; cursor: pointer !important; }
    .btnUserAuth { height: 28px !important; line-height: 28px !important; padding: 0 10px !important; font-size: 10px !important; border-radius: 14px !important; font-weight: 800 !important; white-space: nowrap !important; }
    .promoAppBanner { width: 100% !important; margin: 10px 0 14px 0 !important; padding: 0 !important; }
    .promoAppBox { width: 100% !important; padding: 8px 12px !important; background: #13151f !important; border: 1px solid rgba(215, 173, 82, 0.25) !important; border-radius: 8px !important; display: flex !important; align-items: center !important; justify-content: space-between !important; }
    .promoAppLeft { display: flex !important; align-items: center !important; gap: 8px !important; }
    .promoAppLeft > div:first-child { font-size: 18px !important; }
    .promoAppLeft div div:first-child { font-size: 11px !important; font-weight: bold !important; color: #ffffff !important; }
    .promoAppLeft div div:last-child { font-size: 9px !important; color: #858b98 !important; }
    .btnPromoAction { padding: 6px 12px !important; font-size: 10px !important; font-weight: 800 !important; border-radius: 5px !important; }
    body { padding-bottom: 70px !important; }

    .episodesSideCard { height: 265px !important; border-radius: 5px !important; }
    .epSideHeader { padding: 7px 9px !important; min-height: 30px !important; }
    .epSideHeaderTitle { font-size: 10px !important; }
    #spaTotalEpCountBadge { font-size: 8px !important; }
    .episodes5ColGrid { padding: 7px !important; grid-template-columns: repeat(6, minmax(0, 1fr)) !important; gap: 4px !important; }
    .epSquareBtn { width: 100% !important; aspect-ratio: 1 / 0.78 !important; min-height: 27px !important; max-height: 31px !important; padding: 2px !important; font-size: 9px !important; font-weight: 800 !important; }
    .epMiniLockIcon { top: 1px !important; right: 1px !important; font-size: 6px !important; }

    .commentsSectionBox { padding: 9px 10px !important; margin-bottom: 16px !important; border-radius: 5px !important; }
    .commentsHeaderTitle { font-size: 11px !important; margin-bottom: 8px !important; }
    .commentInputWrap { gap: 6px !important; margin-bottom: 10px !important; }
    .commentTextarea { height: 48px !important; min-height: 48px !important; padding: 7px 8px !important; font-size: 10px !important; }
    .btnSubmitComment { padding: 5px 10px !important; border-radius: 3px !important; font-size: 9px !important; }
    .commentsListContainer { gap: 6px !important; max-height: 260px !important; }
    .singleCommentCard { padding: 6px 8px !important; border-radius: 4px !important; }
    .commentAuthor { font-size: 9px !important; }
    .commentTime { font-size: 8px !important; }
    .commentBodyText { font-size: 9px !important; }
}

#mobileBottomNav { display: none; }
@media (max-width: 768px) {
    #mobileBottomNav {
        display: flex !important; position: fixed !important; bottom: 0 !important; left: 0 !important; right: 0 !important;
        width: 100% !important; height: 56px !important; background: rgba(13, 16, 23, 0.98) !important; backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important; border-top: 1px solid rgba(215, 173, 82, 0.25) !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7) !important; z-index: 999999 !important; align-items: center !important;
        justify-content: space-around !important; padding: 0 !important;
    }
    .mobNavItem {
        flex: 1 !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important;
        text-decoration: none !important; color: #7b8495 !important; font-size: 10px !important; font-weight: 600 !important; gap: 2px !important;
        background: transparent !important; border: none !important; height: 100% !important; cursor: pointer !important;
    }
    .mobNavItem .navIcon { font-size: 18px !important; line-height: 1 !important; filter: grayscale(80%) opacity(0.7); }
    .mobNavItem.active { color: #f1d48a !important; font-weight: 800 !important; }
    .mobNavItem.active .navIcon { filter: grayscale(0%) opacity(1) !important; transform: scale(1.12) !important; }
}