:root{
    --bg:#101116;
    --surface:#191b23;
    --surface-2:#222530;
    --text:#f6f7fb;
    --muted:#a9afbf;
    --brand:#ff4d6d;
    --brand-2:#ff8c42;
    --line:rgba(255,255,255,.1);
    --shadow:0 18px 48px rgba(0,0,0,.28)
}
*{
    box-sizing:border-box
}
html{
    background:var(--bg)
}
body{
    margin:0;
    background:radial-gradient(circle at 0 0,#262432 0,transparent 30rem),var(--bg);
    color:var(--text);
    font:16px/1.5 Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif
}
.site-main{
    width:min(1180px,calc(100% - 32px));
    margin:0 auto;
    padding:30px 0 48px
}
a{
    color:inherit;
    text-decoration:none
}
.skip-link{
    position:absolute;
    left:-999px
}
.skip-link:focus{
    left:12px;
    top:12px;
    z-index:10;
    background:#fff;
    color:#000;
    padding:8px;
    border-radius:6px
}
.site-header{
    border-bottom:1px solid var(--line);
    background:rgba(16,17,22,.86);
    backdrop-filter:blur(16px);
    position:sticky;
    top:0;
    z-index:5
}
.header-inner{
    width:min(1180px,calc(100% - 32px));
    margin:auto;
    display:flex;
    gap:24px;
    align-items:center;
    min-height:74px
}
.brand{
    font-weight:900;
    font-size:1.4rem;
    letter-spacing:-.07em;
    white-space:nowrap
}
.brand strong{
    color:var(--brand)
}
.search{
    flex:1;
    display:flex;
    max-width:620px;
    margin-left:auto
}
.search input{
    width:100%;
    border:1px solid var(--line);
    border-radius:10px 0 0 10px;
    background:var(--surface);
    color:var(--text);
    font:inherit;
    padding:11px 14px
}
.search button{
    border:0;
    background:linear-gradient(135deg,var(--brand),var(--brand-2));
    color:#fff;
    font-weight:800;
    padding:11px 17px;
    border-radius:0 10px 10px 0;
    cursor:pointer
}
.hero{
    padding:12px 0 24px
}
.eyebrow{
    color:var(--brand-2);
    font-weight:800;
    font-size:.82rem;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin:0
}
.hero h1{
    font-size:clamp(1.65rem,4vw,2.6rem);
    letter-spacing:-.05em;
    margin:.2rem 0
}
.hero p{
    margin:0;
    color:var(--muted)
}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:16px
}
.video-card{
    background:var(--surface);
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:transform .2s,border-color .2s
}
.video-card:hover{
    transform:translateY(-4px);
    border-color:rgba(255,77,109,.8)
}
.thumb{
    aspect-ratio:16/9;
    background:var(--surface-2);
    position:relative;
    overflow:hidden
}
.thumb img{
    height:100%;
    width:100%;
    object-fit:cover;
    display:block
}
.duration{
    position:absolute;
    right:8px;
    bottom:8px;
    padding:2px 6px;
    border-radius:5px;
    background:rgba(0,0,0,.8);
    font-size:.76rem;
    font-weight:800
}
.video-card h2{
    font-size:.94rem;
    line-height:1.35;
    margin:0;
    padding:12px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis
}
.pagination{
    display:flex;
    gap:7px;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    margin:32px 0 0
}
.page-number,.page-control,.page-gap{
    padding:8px 11px;
    border-radius:8px;
    background:var(--surface);
    border:1px solid var(--line);
    font-weight:700
}
.page-number:hover,.page-control:hover{
    background:var(--surface-2)
}
.is-current{
    background:var(--brand);
    border-color:var(--brand)
}
.is-disabled{
    opacity:.42
}
.page-gap{
    background:transparent;
    border:0
}
.video-layout{
    max-width:960px;
    margin:auto
}
.player{
    aspect-ratio:16/9;
    background:#000;
    border-radius:14px;
    width:100%;
    box-shadow:var(--shadow)
}
.video-meta{
    display:flex;
    gap:12px;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    margin:20px 0
}
.download-button{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border-radius:10px;
    padding:11px 16px;
    background:linear-gradient(135deg,var(--brand),var(--brand-2));
    font-weight:850
}
.tag-list{
    display:flex;
    gap:8px;
    flex-wrap:wrap
}
.tag{
    padding:5px 10px;
    border:1px solid var(--line);
    background:var(--surface);
    border-radius:99px;
    color:var(--muted);
    font-size:.88rem
}
.section-title{
    font-size:1.3rem;
    margin:38px 0 16px
}
.being-watched-section { margin-top: 52px; }
.being-watched-loading { grid-column: 1 / -1; margin: 0; color: var(--muted); }
.empty{
    padding:44px 20px;
    text-align:center;
    border:1px dashed var(--line);
    border-radius:14px;
    color:var(--muted)
}
.site-footer{
    border-top:1px solid var(--line);
    padding:24px 16px;
    text-align:center;
    color:var(--muted);
    font-size:.9rem
}
.site-footer a{
    color:#fff
}
@media(max-width:620px){
    .header-inner{
        min-height:66px;
        gap:10px
    }
    .brand{
        font-size:1.12rem
    }
    .search button{
        padding:10px
    }
    .site-main{
        width:min(100% - 24px,1180px);
        padding-top:20px
    }
    .grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px
    }
    .video-card h2{
        font-size:.82rem;
        padding:9px
    }
    .page-control{
        font-size:.8rem
    }
}

/* Light theme and header controls */
:root[data-theme="light"] {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --surface-2: #e9edf5;
    --text: #162033;
    --muted: #61708a;
    --line: rgba(22, 32, 51, .14);
    --shadow: 0 16px 40px rgba(37, 52, 80, .12);
}
:root[data-theme="light"] body {
    background: radial-gradient(circle at 0 0, #ffe5dd 0, transparent 31rem), var(--bg);
}
.header-actions { display: flex; gap: 8px; margin-left: auto; }
.icon-button {
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line);
    background: var(--surface); color: var(--text); cursor: pointer; font-size: 1.25rem;
}
.icon-button:hover { border-color: var(--brand); color: var(--brand); }
@media (min-width: 621px) {
    .header-actions { order: 2; }
    .search { order: 1; }
    .search-toggle { display: none; }
}
@media (max-width: 620px) {
    .header-inner { flex-wrap: wrap; padding: 10px 0; }
    .search { display: none; order: 3; flex-basis: 100%; max-width: none; margin: 0; }
    .search.is-open { display: flex; }
}

/* Video watch page */
.watch-page { max-width: 980px; margin: 0 auto; }
.back-link, .text-link { color: var(--muted); font-weight: 700; }
.back-link:hover, .text-link:hover { color: var(--brand); }
.watch-header { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin: 20px 0 16px; }
.watch-header h1 { margin: 3px 0 0; font-size: clamp(1.6rem, 4vw, 2.65rem); line-height: 1.1; letter-spacing: -.045em; }
.watch-duration { padding: 6px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); font-weight: 800; white-space: nowrap; }
.player-shell { padding: 8px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); border-radius: 18px; box-shadow: var(--shadow); }
.player-shell .player { display: block; border-radius: 11px; box-shadow: none; }
.watch-toolbar, .video-info-card { display: flex; gap: 18px; align-items: center; justify-content: space-between; margin-top: 16px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.watch-toolbar { justify-content: space-between; }
.watch-actions { display: flex; gap: 10px; }
.action-button { padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-2); color: var(--text); font: inherit; font-weight: 800; cursor: pointer; }
.action-button:hover { border-color: var(--brand); }
.status-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 6px; background: #37c978; box-shadow: 0 0 0 4px rgba(55, 201, 120, .15); }
.watch-status { color: var(--muted); font-size: .9rem; }
.video-info-card { align-items: start; margin-top: 20px; }
.info-label, .section-kicker { margin: 0 0 5px; color: var(--brand); font-size: .8rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.video-info-card h2 { margin: 0; font-size: 1.2rem; }
.info-copy { margin: 7px 0 0; max-width: 560px; color: var(--muted); }
.video-facts { display: flex; gap: 22px; margin: 0; }
.video-facts dt { color: var(--muted); font-size: .76rem; }
.video-facts dd { margin: 2px 0 0; font-weight: 800; }
.tag-section { margin-top: 26px; }
.related-section { margin-top: 52px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 16px; }
.section-heading h2 { margin: 2px 0 0; font-size: 1.45rem; }
@media (max-width: 620px) {
    .watch-header, .watch-toolbar, .video-info-card { align-items: stretch; flex-direction: column; }
    .watch-duration { align-self: flex-start; }
    .watch-actions { width: 100%; }
    .watch-actions > * { flex: 1; justify-content: center; }
    .video-facts { justify-content: space-between; width: 100%; }
}

.action-button svg, .download-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}
.download-button {
    align-items: center;
    justify-content: center;
}

/* Branded social sharing */
.social-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.share-intro span { color: var(--muted); font-size: .88rem; }
.share-buttons { display: flex; gap: 9px; flex-wrap: wrap; justify-content: end; }
.social-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 0;
    border-radius: 9px;
    color: #fff;
    font: inherit;
    font-size: .85rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform .18s ease, filter .18s ease;
}
.social-button:hover { color: #fff; transform: translateY(-2px); filter: brightness(1.08); }
.social-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.whatsapp { background: #25d366; }
.telegram { background: #229ed9; }
.x-share { background: #14171a; }
.copy-link { background: #6c5ce7; }
@media (max-width: 760px) {
    .social-share { align-items: stretch; flex-direction: column; }
    .share-buttons { justify-content: start; }
}
@media (max-width: 440px) {
    .share-buttons { display: grid; grid-template-columns: 1fr 1fr; }
    .social-button { justify-content: center; }
}

/* Clean player frame and reordered details */
.player-shell {
    padding: 0;
    background: transparent;
    border-radius: 14px;
    box-shadow: none;
}
.player-shell .player {
    border: 0;
    border-radius: 14px;
    box-shadow: var(--shadow);
}
.video-info-card { margin-top: 18px; }
.video-info-card + .social-share { margin-top: 14px; }
.related-extra { display: contents; }
.related-extra[hidden] { display: none; }
.related-more-wrap { display: flex; justify-content: center; margin-top: 22px; }
.related-more {
    padding: 12px 20px;
    border: 1px solid var(--brand);
    border-radius: 10px;
    background: transparent;
    color: var(--brand);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}
.related-more:hover { background: var(--brand); color: #fff; }
/* Video information and actions strip */
.watch-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    margin-top: 18px;
    padding: 8px 10px 8px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .12);
}
.watch-toolbar .video-facts {
    align-items: stretch;
    gap: 0;
}
.watch-toolbar .video-facts > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 104px;
    padding: 5px 20px 5px 0;
}
.watch-toolbar .video-facts > div + div {
    padding-left: 20px;
    border-left: 1px solid var(--line);
}
.watch-toolbar .video-facts dt {
    margin-bottom: 2px;
    font-size: .7rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.watch-toolbar .video-facts dd { font-size: .95rem; }
.watch-toolbar .watch-actions { align-items: center; }
.watch-toolbar .action-button,
.watch-toolbar .download-button {
    min-height: 44px;
    padding: 10px 15px;
    border-radius: 11px;
}
.watch-toolbar .action-button {
    border-color: transparent;
    background: transparent;
}
.watch-toolbar .action-button:hover { background: var(--surface-2); }
.watch-toolbar .download-button { box-shadow: 0 8px 18px rgba(255, 77, 109, .22); }
@media (max-width: 620px) {
    .watch-toolbar {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px;
    }
    .watch-toolbar .video-facts { width: 100%; }
    .watch-toolbar .video-facts > div { flex: 1; }
    .watch-toolbar .watch-actions { width: 100%; }
}
/* Footer */
.site-footer {
    margin-top: 36px;
    padding: 0;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .1);
}
.footer-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 94px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}
.footer-brand { display: grid; gap: 2px; justify-items: start; }
.footer-brand a { font-size: 1.05rem; font-weight: 900; letter-spacing: -.05em; }
.footer-brand strong { color: var(--brand); }
.footer-brand span, .site-footer small { color: var(--muted); font-size: .78rem; }
.footer-nav { display: flex; gap: 18px; }
.footer-nav a { color: var(--muted); font-size: .86rem; font-weight: 700; }
.footer-nav a:hover { color: var(--text); }
.site-footer small { justify-self: end; }
@media (max-width: 620px) {
    .footer-inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 26px 0;
        text-align: center;
    }
    .footer-brand { justify-items: center; }
    .footer-nav { justify-content: center; }
    .site-footer small { justify-self: center; }
}
/* Light-theme corrections */
.footer-brand a { color: var(--text); }
:root[data-theme="light"] .site-header {
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 1px 0 rgba(22, 32, 51, .04);
}
:root[data-theme="light"] .site-footer {
    background: rgba(255, 255, 255, .58);
}
:root[data-theme="light"] .watch-toolbar {
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 28px rgba(37, 52, 80, .08);
}
:root[data-theme="light"] .player-shell .player {
    box-shadow: 0 18px 42px rgba(37, 52, 80, .16);
}
/* Video-card duration badge */
.video-card .duration {
    right: 7px;
    bottom: 7px;
    min-width: 38px;
    padding: 4px 7px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 7px;
    background: rgba(10, 12, 18, .84);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .22);
    backdrop-filter: blur(6px);
}
/* Refined footer */
.site-footer {
    position: relative;
    margin-top: 72px;
    overflow: hidden;
    border: 0;
    background: #0b0c11;
}
.site-footer::before {
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--brand), var(--brand-2), transparent);
}
.footer-inner {
    min-height: 132px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 32px;
}
.footer-brand { gap: 6px; }
.footer-brand a {
    display: inline-flex;
    align-items: baseline;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -.075em;
}
.footer-brand a strong { color: var(--brand); }
.footer-brand a span { font-size: .86em; }
.footer-brand p { margin: 0; color: #9ea5b4; font-size: .84rem; }
.footer-nav { gap: 8px; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: #d9dce4;
    font-size: .78rem;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.footer-nav a:hover { border-color: var(--brand); background: rgba(255, 77, 109, .12); color: #fff; }
.footer-meta { display: grid; gap: 8px; justify-items: end; color: #9ea5b4; }
.footer-status { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; }
.footer-status i { width: 7px; height: 7px; border-radius: 50%; background: #43d18d; box-shadow: 0 0 0 4px rgba(67, 209, 141, .13); }
.footer-meta small { color: #737b8d; }
:root[data-theme="light"] .site-footer { background: #172033; }
:root[data-theme="light"] .footer-brand p,
:root[data-theme="light"] .footer-status { color: #bdc8dc; }
:root[data-theme="light"] .footer-meta small { color: #93a0b8; }
:root[data-theme="light"] .footer-nav a { border-color: rgba(255,255,255,.16); color: #eef3ff; }
@media (max-width: 620px) {
    .site-footer { margin-top: 52px; }
    .footer-inner { gap: 18px; padding: 30px 0; }
    .footer-brand p { font-size: .8rem; }
    .footer-meta { justify-items: center; }
}
/* Minimal footer redesign */
.site-footer {
    margin-top: 72px;
    border-top: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(255, 77, 109, .09), transparent 38%), var(--surface);
}
.site-footer::before { display: none; }
.footer-inner {
    display: block;
    width: min(1180px, calc(100% - 32px));
    min-height: 0;
    padding: 34px 0 20px;
}
.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.footer-brand { display: block; }
.footer-brand a { display: inline-flex; color: var(--text); font-size: 1.16rem; letter-spacing: -.065em; }
.footer-brand a strong { color: var(--brand); }
.footer-brand p { margin: 4px 0 0; color: var(--muted); font-size: .83rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0; }
.footer-nav a {
    padding: 2px 12px;
    border: 0;
    border-radius: 0;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}
.footer-nav a + a { border-left: 1px solid var(--line); }
.footer-nav a:hover { background: transparent; border-color: var(--line); color: var(--brand); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .76rem;
}
.footer-bottom small { color: inherit; }
:root[data-theme="light"] .site-footer { background: linear-gradient(135deg, rgba(255, 77, 109, .08), transparent 38%), var(--surface); }
:root[data-theme="light"] .footer-nav a { color: var(--muted); }
@media (max-width: 680px) {
    .site-footer { margin-top: 52px; }
    .footer-inner { padding: 28px 0 18px; }
    .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-nav { justify-content: flex-start; margin-left: -12px; }
    .footer-bottom { gap: 5px; margin-top: 24px; }
}
/* Header wordmark */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 1.28rem;
    font-weight: 900;
    letter-spacing: -.075em;
    line-height: 1;
}
.brand-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 6px 16px rgba(255, 77, 109, .28);
    transform: skewX(-5deg);
}
.brand-icon svg { width: 18px; height: 18px; fill: #fff; transform: skewX(5deg) translateX(1px); }
.brand-name { display: inline-flex; align-items: baseline; }
.brand-name strong { color: var(--text); }
.brand-name b { color: var(--brand); }
.brand-name em { margin-left: 2px; color: var(--muted); font-size: .64em; font-style: normal; letter-spacing: -.02em; }
.brand:hover .brand-icon { box-shadow: 0 8px 20px rgba(255, 77, 109, .42); transform: skewX(-5deg) translateY(-1px); }
@media (max-width: 620px) {
    .brand { gap: 7px; font-size: 1.08rem; }
    .brand-icon { width: 30px; height: 30px; border-radius: 9px; }
    .brand-icon svg { width: 16px; height: 16px; }
}
/* Alternate header logo treatment */
.brand {
    gap: 8px;
    font-size: 1.22rem;
    letter-spacing: -.055em;
}
.brand-icon {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--brand);
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    transform: none;
}
.brand-icon::after {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    content: "";
    background: rgba(255, 77, 109, .12);
}
.brand-icon svg { position: relative; z-index: 1; width: 14px; height: 14px; fill: var(--brand); transform: translateX(1px); }
.brand-name { gap: 1px; }
.brand-name strong { color: var(--brand); letter-spacing: -.075em; }
.brand-name b { color: var(--text); letter-spacing: -.075em; }
.brand-name em { margin-left: 4px; padding-left: 4px; border-left: 1px solid var(--line); color: var(--muted); font-size: .52em; font-weight: 800; letter-spacing: .05em; }
.brand:hover .brand-icon { background: var(--brand); box-shadow: none; transform: none; }
.brand:hover .brand-icon::after { display: none; }
.brand:hover .brand-icon svg { fill: #fff; }
@media (max-width: 620px) {
    .brand { font-size: 1.04rem; }
    .brand-icon { width: 28px; height: 28px; }
    .brand-icon svg { width: 13px; height: 13px; }
}
/* Refined wordmark with the original play badge */
.brand { gap: 9px; font-size: 1.3rem; letter-spacing: -.07em; }
.brand-icon {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 6px 16px rgba(255, 77, 109, .28);
    transform: skewX(-5deg);
}
.brand-icon::after { display: none; }
.brand-icon svg { width: 18px; height: 18px; fill: #fff; transform: skewX(5deg) translateX(1px); }
.brand-name { gap: 0; line-height: 1; }
.brand-name strong {
    color: var(--text);
    font-weight: 950;
    letter-spacing: -.09em;
}
.brand-name b {
    margin-left: 1px;
    color: var(--brand);
    font-weight: 950;
    letter-spacing: -.09em;
}
.brand-name em {
    align-self: center;
    margin: 1px 0 0 6px;
    padding: 3px 0 3px 6px;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-size: .47em;
    font-style: normal;
    font-weight: 850;
    letter-spacing: .1em;
}
.brand:hover .brand-icon { background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 8px 20px rgba(255, 77, 109, .42); transform: skewX(-5deg) translateY(-1px); }
.brand:hover .brand-icon svg { fill: #fff; }
@media (max-width: 620px) {
    .brand { gap: 7px; font-size: 1.08rem; }
    .brand-icon { width: 30px; height: 30px; border-radius: 9px; }
    .brand-icon svg { width: 16px; height: 16px; }
    .brand-name em { margin-left: 5px; padding-left: 5px; }
}
/* Airier header wordmark */
.brand-name strong,
.brand-name b { letter-spacing: -.035em; }
.brand-name b { margin-left: 3px; }
.brand-name em { margin-left: 9px; padding-left: 9px; letter-spacing: .13em; }
@media (max-width: 620px) {
    .brand-name b { margin-left: 2px; }
    .brand-name em { margin-left: 7px; padding-left: 7px; }
}
/* Tighter .COM spacing */
.brand-name em { margin-left: 4px; padding-left: 5px; }
@media (max-width: 620px) { .brand-name em { margin-left: 4px; padding-left: 5px; } }
/* Compact .COM matching DESI */
.brand-name em {
    margin-left: 1px;
    padding-left: 3px;
    color: var(--text);
    letter-spacing: .07em;
}
@media (max-width: 620px) { .brand-name em { margin-left: 1px; padding-left: 3px; } }
/* Videos Being Watched heading */
.being-watched-section {
    padding-top: 30px;
    border-top: 1px solid var(--line);
}
.being-watched-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}
.being-watched-title-group { display: flex; align-items: center; gap: 12px; }
.being-watched-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 8px 20px rgba(255, 77, 109, .22);
}
.being-watched-icon svg { width: 23px; height: 23px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.being-watched-heading .section-kicker { margin: 0 0 2px; color: var(--brand-2); }
.being-watched-heading h2 { margin: 0; font-size: clamp(1.3rem, 2.5vw, 1.7rem); letter-spacing: -.045em; line-height: 1.1; }
.being-watched-description { margin: 5px 0 0; color: var(--muted); font-size: .86rem; }
.being-watched-label {
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
}
@media (max-width: 560px) {
    .being-watched-heading { align-items: flex-start; }
    .being-watched-icon { width: 40px; height: 40px; border-radius: 12px; }
    .being-watched-label { display: none; }
    .being-watched-description { font-size: .8rem; }
}
/* Homepage layout */
.homepage-layout { display: grid; gap: 56px; }
.home-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 310px;
    padding: clamp(28px, 5vw, 58px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: radial-gradient(circle at 82% 38%, rgba(255, 140, 66, .22), transparent 15rem), linear-gradient(135deg, rgba(255, 77, 109, .16), transparent 56%), var(--surface);
}
.home-hero-copy { position: relative; z-index: 1; max-width: 610px; }
.home-hero .eyebrow { display: flex; align-items: center; gap: 7px; color: var(--brand-2); }
.hero-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(255,77,109,.13); }
.home-hero h1 { margin: 10px 0 14px; font-size: clamp(2.25rem, 5vw, 4.1rem); letter-spacing: -.075em; line-height: .98; }
.home-hero h1 span { color: var(--brand); }
.home-hero-copy > p:not(.eyebrow) { max-width: 480px; margin: 0; color: var(--muted); font-size: 1.02rem; }
.home-hero-stats { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 26px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; background: rgba(0,0,0,.12); }
.home-hero-stats strong { color: var(--brand-2); font-size: 1.15rem; }
.home-hero-stats span { color: var(--muted); font-size: .8rem; font-weight: 700; }
.home-hero-art { position: relative; width: min(24vw, 235px); aspect-ratio: 1; margin-right: 5%; flex: 0 0 auto; }
.home-hero-play { position: absolute; inset: 25%; z-index: 1; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 18px 46px rgba(255, 77, 109, .36); }
.home-hero-play svg { width: 38%; height: 38%; fill: #fff; transform: translateX(2px); }
.home-hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.orbit-one { inset: 5%; }
.orbit-two { inset: -12%; border-style: dashed; }
.latest-videos-section { padding-top: 4px; }
.latest-videos-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.latest-videos-heading .section-kicker { margin: 0 0 3px; color: var(--brand-2); }
.latest-videos-heading h2 { margin: 0; font-size: clamp(1.4rem, 3vw, 1.8rem); letter-spacing: -.045em; }
.latest-videos-page { color: var(--muted); font-size: .8rem; font-weight: 750; }
.homepage-layout .being-watched-section { margin-top: 0; }
@media (max-width: 700px) {
    .homepage-layout { gap: 42px; }
    .home-hero { min-height: 0; padding: 30px 24px; }
    .home-hero-art { width: 118px; margin: 0 -20px 0 8px; }
    .home-hero h1 { font-size: clamp(2.15rem, 9vw, 3.2rem); }
}
@media (max-width: 500px) {
    .home-hero-art { position: absolute; right: -22px; bottom: -20px; width: 140px; opacity: .38; }
    .home-hero-copy { max-width: 100%; }
    .home-hero-copy > p:not(.eyebrow) { max-width: 285px; }
    .home-hero-stats { margin-top: 22px; }
}
/* Text-led homepage sections */
.homepage-layout { gap: 48px; }
.home-intro { padding: 12px 0 0; }
.home-intro .eyebrow { margin-bottom: 7px; color: var(--brand-2); }
.home-intro h1 { margin: 0; font-size: clamp(2rem, 4vw, 3.05rem); letter-spacing: -.065em; line-height: 1.05; }
.home-intro > p:last-child { margin: 9px 0 0; color: var(--muted); }
.homepage-layout .being-watched-section,
.latest-videos-section { position: relative; padding-top: 0; border: 0; }
.being-watched-heading,
.latest-videos-heading {
    position: relative;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}
.being-watched-heading::after,
.latest-videos-heading::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 52px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}
.being-watched-title-group { gap: 10px; }
.being-watched-icon {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 77, 109, .3);
    border-radius: 9px;
    background: rgba(255, 77, 109, .1);
    box-shadow: none;
}
.being-watched-icon svg { width: 19px; height: 19px; stroke: var(--brand); }
.being-watched-heading .section-kicker,
.latest-videos-heading .section-kicker { margin: 0 0 4px; color: var(--brand); font-size: .71rem; letter-spacing: .13em; }
.being-watched-heading h2,
.latest-videos-heading h2 { font-size: clamp(1.35rem, 2.6vw, 1.72rem); letter-spacing: -.04em; }
.being-watched-description { margin-top: 4px; font-size: .82rem; }
.being-watched-label,
.latest-videos-page { margin-top: 4px; border: 0; border-radius: 0; padding: 0; color: var(--muted); font-size: .74rem; }
@media (max-width: 560px) {
    .homepage-layout { gap: 38px; }
    .home-intro h1 { font-size: 2rem; }
    .being-watched-heading { padding-bottom: 13px; }
}
/* Shared text-led sections for inner pages */
.site-main > .hero {
    position: relative;
    margin-bottom: 30px;
    padding: 10px 0 18px;
    border-bottom: 1px solid var(--line);
}
.site-main > .hero::after,
.related-section .section-heading::after,
.tag-section::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 48px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}
.site-main > .hero .eyebrow { margin-bottom: 5px; color: var(--brand); font-size: .71rem; }
.site-main > .hero h1 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    letter-spacing: -.06em;
    line-height: 1.06;
}
.site-main > .hero p:not(.eyebrow) { margin: 8px 0 0; color: var(--muted); font-size: .9rem; }
.watch-header {
    position: relative;
    align-items: flex-start;
    margin: 24px 0 20px;
    padding: 0 0 17px;
    border-bottom: 1px solid var(--line);
}
.watch-header::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 48px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
}
.watch-header .eyebrow { margin-bottom: 5px; color: var(--brand); font-size: .71rem; }
.watch-header h1 { font-size: clamp(1.75rem, 4vw, 2.7rem); }
.related-section { margin-top: 56px; }
.related-section .section-heading {
    position: relative;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}
.related-section .section-heading .eyebrow { margin: 0 0 4px; color: var(--brand); font-size: .71rem; letter-spacing: .13em; }
.related-section .section-heading h2 { font-size: clamp(1.35rem, 2.6vw, 1.72rem); letter-spacing: -.04em; }
.related-section .text-link { padding-top: 6px; color: var(--muted); font-size: .82rem; }
.related-section .text-link:hover { color: var(--brand); }
.tag-section {
    position: relative;
    margin-top: 34px;
    padding: 0 0 19px;
    border-bottom: 1px solid var(--line);
}
.tag-section .section-kicker { display: block; margin: 0 0 12px; color: var(--brand); font-size: .71rem; letter-spacing: .13em; }
.tag-list { gap: 9px; }
.tag { padding: 6px 11px; transition: border-color .2s ease, color .2s ease, background .2s ease; }
.tag:hover { border-color: var(--brand); background: rgba(255, 77, 109, .09); color: var(--text); }
@media (max-width: 620px) {
    .site-main > .hero { margin-bottom: 24px; padding-bottom: 15px; }
    .watch-header { margin-top: 18px; }
    .related-section .section-heading { align-items: flex-start; }
}
/* Visible inner-page section headers */
.site-main > .page-section-intro {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 118px;
    margin-bottom: 30px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 77, 109, .1), transparent 52%), var(--surface);
}
.site-main > .page-section-intro::after { display: none; }
.page-section-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 8px 18px rgba(255, 77, 109, .2);
}
.page-section-icon svg { width: 23px; height: 23px; fill: none; stroke: #fff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.site-main > .page-section-intro .eyebrow { color: var(--brand-2); }
.site-main > .page-section-intro h1 { font-size: clamp(1.65rem, 3.5vw, 2.35rem); }
@media (max-width: 560px) {
    .site-main > .page-section-intro { min-height: 0; gap: 12px; padding: 18px; }
    .page-section-icon { width: 40px; height: 40px; border-radius: 11px; }
    .page-section-icon svg { width: 20px; height: 20px; }
}
.watch-header { display: flex; align-items: center; justify-content: flex-start; gap: 13px; }
.watch-title-icon { width: 42px; height: 42px; border-radius: 11px; }
.watch-title-icon svg { fill: #fff; stroke: none; transform: translateX(1px); }
@media (max-width: 620px) { .watch-title-icon { width: 38px; height: 38px; } }
/* Requested inner-page refinements */
.tag-section::after { display: none; }
/* Section label icons */
.tag-section .section-kicker,
.social-share .info-label { display: inline-flex; align-items: center; gap: 7px; }
.section-label-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* Clean tags and sharing separators */
.tag-section {
    padding-bottom: 0;
    border-bottom: 0;
}
.social-share {
    margin-top: 30px;
    padding: 0 0 24px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
}
.share-intro { display: grid; gap: 4px; }
.social-share .info-label { margin: 0; }
.share-intro > span { display: block; color: var(--muted); font-size: .88rem; line-height: 1.4; }
.download-button .download-icon { width: 23px; height: 23px; }
.download-button,
:root[data-theme="light"] .download-button { color: #fff; }
.whatsapp .whatsapp-icon { overflow: visible; }
.whatsapp .whatsapp-bubble { fill: #fff; stroke: none; }
.whatsapp .whatsapp-phone { fill: none; stroke: #25d366; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }

/* Footer redesign */
.site-footer {
    margin-top: 88px;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 8% 0, rgba(255, 77, 109, .14), transparent 32%),
        radial-gradient(circle at 90% 100%, rgba(106, 92, 255, .10), transparent 30%),
        var(--surface);
}
.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 20px;
}
.footer-top {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) minmax(260px, 1fr) minmax(180px, .7fr);
    gap: 48px;
    align-items: start;
}
.footer-brand { display: block; }
.footer-brand a {
    display: inline-flex;
    align-items: baseline;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.08em;
}
.footer-brand a strong { color: var(--brand); }
.footer-brand a span { color: var(--text); font-size: .76em; }
.footer-brand p, .footer-note p {
    max-width: 275px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.65;
}
.footer-heading {
    margin: 2px 0 13px;
    color: var(--text);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 9px 20px; }
.footer-nav a {
    padding: 0;
    border: 0;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 650;
}
.footer-nav a:hover { color: var(--brand); }
.footer-note { justify-self: end; text-align: right; }
.footer-age {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 10px;
    border: 1px solid rgba(255, 77, 109, .38);
    border-radius: 999px;
    color: var(--brand);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-note p { margin-left: auto; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .76rem;
}
.footer-bottom small { color: inherit; }
@media (max-width: 760px) {
    .site-footer { margin-top: 58px; }
    .footer-inner { padding: 34px 0 18px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .footer-note { justify-self: start; text-align: left; }
    .footer-note p { margin-left: 0; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; margin-top: 30px; }
}

/* Compact footer redesign */
.site-footer {
    margin-top: 72px;
    border-top: 1px solid var(--line);
    background: var(--surface);
}
.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 18px;
}
.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.footer-brand { display: flex; align-items: baseline; gap: 12px; }
.footer-brand a {
    display: inline-flex;
    align-items: baseline;
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -.07em;
    white-space: nowrap;
}
.footer-brand a strong { color: var(--brand); }
.footer-brand a span { color: var(--text); font-size: .78em; }
.footer-brand p {
    margin: 0;
    color: var(--muted);
    font-size: .82rem;
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0; }
.footer-nav a {
    padding: 2px 12px;
    border: 0;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-size: .8rem;
    font-weight: 700;
}
.footer-nav a:first-child { border-left: 0; }
.footer-nav a:hover { color: var(--brand); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .75rem;
}
.footer-bottom small { color: inherit; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links span:first-child {
    padding: 3px 8px;
    border: 1px solid rgba(255, 77, 109, .48);
    border-radius: 999px;
    color: var(--brand);
    font-weight: 800;
}
@media (max-width: 700px) {
    .site-footer { margin-top: 52px; }
    .footer-inner { padding: 26px 0 16px; }
    .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
    .footer-main { gap: 18px; }
    .footer-brand { align-items: flex-start; flex-direction: column; gap: 5px; }
    .footer-nav { justify-content: flex-start; margin-left: -12px; }
    .footer-bottom { gap: 7px; margin-top: 22px; }
}

/* Larger header wordmark */
.site-header .brand { gap: 10px; font-size: 1.5rem; }
.site-header .brand-icon { width: 40px; height: 40px; }
.site-header .brand-icon svg { width: 21px; height: 21px; }
@media (max-width: 620px) {
    .site-header .brand { gap: 8px; font-size: 1.2rem; }
    .site-header .brand-icon { width: 34px; height: 34px; }
    .site-header .brand-icon svg { width: 18px; height: 18px; }
}