@import url("admin-premium.css");
@import url("nav-premium.css");
@import url("team-premium.css");

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f5f7fb;
    color: #1f2937;
    font-family: Inter, Arial, Helvetica, sans-serif;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    align-items: center;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, .75);
    border: 0;
    border-bottom: 1px solid rgba(212, 175, 55, .3);
    border-radius: 0;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .32);
    color: #ffffff;
    display: flex;
    gap: clamp(18px, 2vw, 34px);
    justify-content: space-between;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 18px clamp(22px, 5vw, 72px);
    position: sticky;
    right: 0;
    top: 0;
    transform: none;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    width: 100%;
    z-index: 30;
}

.site-header::after {
    animation: navGoldSweep 7s linear infinite;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .08), #d4af37, #f5d27a, #c9a94d, rgba(212, 175, 55, .08), transparent);
    bottom: -1px;
    content: "";
    height: 2px;
    left: clamp(22px, 5vw, 72px);
    opacity: .92;
    position: absolute;
    right: clamp(22px, 5vw, 72px);
}

.site-header.is-scrolled {
    background: rgba(0, 0, 0, .86);
    box-shadow: 0 22px 80px rgba(0, 0, 0, .52), 0 0 28px rgba(212, 175, 55, .18);
    padding-block: 14px;
}

.nav-glow {
    animation: navLightSweep 4.8s linear infinite;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .18), transparent);
    inset: 0;
    pointer-events: none;
    position: absolute;
    transform: translateX(-100%);
    z-index: 0;
}

.brand {
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.ott-brand {
    align-items: center;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 900;
    gap: 10px;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
}

.ott-brand span:last-child {
    background: linear-gradient(90deg, #d4af37, #f5d27a, #c9a94d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(212, 175, 55, .5);
}

.brand-icon {
    align-items: center;
    background: linear-gradient(135deg, #d4af37, #f5d27a, #c9a94d);
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(212, 175, 55, .28);
    display: inline-flex;
    font-size: 12px;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.site-nav {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    gap: clamp(14px, 1.4vw, 24px);
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.site-nav > a {
    color: #cccccc;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    transition: color .3s ease, transform .3s ease;
}

.site-nav > a:not(.login-btn, .register-btn)::after {
    background: linear-gradient(90deg, #d4af37, #f5d27a, #c9a94d);
    border-radius: 999px;
    bottom: -8px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
    width: 100%;
}

.site-nav > a:hover {
    color: #f5d27a;
    transform: translateY(-1px);
}

.site-nav > a:hover::after {
    transform: scaleX(1);
}

.login-btn,
.register-btn,
.site-nav .inline-logout-form button {
    border-radius: 999px;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    padding: 10px 16px;
    transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}

.login-btn,
.site-nav .inline-logout-form button {
    border: 1px solid rgba(212, 175, 55, .65);
    color: #f5d27a !important;
}

.register-btn {
    background: linear-gradient(90deg, #d4af37, #f5d27a, #c9a94d);
    box-shadow: 0 10px 30px rgba(212, 175, 55, .26);
    color: #090909 !important;
}

.login-btn:hover,
.register-btn:hover,
.site-nav .inline-logout-form button:hover {
    box-shadow: 0 0 28px rgba(212, 175, 55, .4);
    transform: scale(1.05);
}

.live-search {
    flex: 1 1 330px;
    max-width: 460px;
    min-width: 260px;
    position: relative;
    width: auto;
    z-index: 1;
}

.mobile-header-actions {
    display: contents;
}

/* Keep search + hamburger in one header cluster (avoid `display:contents` splitting grid items) */
@media (max-width: 900px) {
    .mobile-header-actions {
        align-items: center;
        display: flex !important;
        flex: 0 0 auto;
        gap: 10px;
    }
}

.search-field {
    align-items: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 999px;
    display: flex;
    gap: 10px;
    padding: 11px 15px;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.search-field:focus-within {
    background: rgba(255, 255, 255, .08);
    border-color: #f5d27a;
    box-shadow: 0 0 10px rgba(212, 175, 55, .4);
}

.search-field svg,
.search-mobile-toggle svg {
    fill: none;
    flex: 0 0 auto;
    height: 19px;
    stroke: #cccccc;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 19px;
}

.live-search input {
    background: transparent;
    border: 0;
    color: #ffffff;
    font: inherit;
    outline: 0;
    padding: 0;
    width: 100%;
}

.live-search input::placeholder {
    color: rgba(204, 204, 204, .78);
}

.search-mobile-toggle,
.hamburger {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(212, 175, 55, .24);
    border-radius: 999px;
    cursor: pointer;
    display: none;
}

.hamburger {
    flex: 0 0 auto;
    height: 44px;
    padding: 0;
    position: relative;
    width: 44px;
    z-index: 35;
}

.hamburger span {
    background: #ffffff;
    border-radius: 999px;
    display: block;
    height: 2px;
    left: 12px;
    position: absolute;
    transition: opacity .3s ease, top .3s ease, transform .3s ease;
    width: 18px;
}

.hamburger span:nth-child(1) {
    top: 14px;
}

.hamburger span:nth-child(2) {
    top: 21px;
}

.hamburger span:nth-child(3) {
    top: 28px;
}

.hamburger.is-active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

.live-search-results {
    background: rgba(8, 11, 18, .96);
    border: 1px solid rgba(212, 175, 55, .24);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 50;
}

.menu-overlay {
    background: rgba(0, 0, 0, .58);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity .3s ease;
    z-index: 24;
}

.menu-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.live-search-results a,
.live-search-empty {
    align-items: center;
    color: #e5edf7;
    display: flex;
    gap: 10px;
    padding: 10px;
}

.live-search-results a:hover {
    background: rgba(212, 175, 55, .12);
}

.live-search-results img,
.live-search-thumb {
    background: rgba(255, 255, 255, .1);
    border-radius: 6px;
    flex: 0 0 auto;
    height: 48px;
    object-fit: cover;
    width: 36px;
}

.live-search-results strong,
.live-search-results span {
    display: block;
}

.live-search-results span,
.live-search-empty {
    color: #9ca3af;
    font-size: 13px;
}

.site-header span:not(.brand-icon) {
    color: #cbd5e1;
}

.inline-logout-form {
    margin: 0;
}

.inline-logout-form button,
.admin-sidebar nav form button {
    background: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.site-nav .inline-logout-form button {
    border: 1px solid rgba(212, 175, 55, .65);
    padding: 10px 16px;
}

.admin-sidebar nav form {
    margin: 0;
}

.admin-sidebar nav form button {
    border-radius: 8px;
    color: #9ca3af;
    padding: 12px 14px;
    text-align: left;
    width: 100%;
}

.admin-sidebar nav form button:hover {
    background: #1f2937;
    color: #ffffff;
}

.container {
    margin: 0 auto;
    max-width: 1120px;
    padding: 32px 20px;
}

.page-heading {
    margin-bottom: 24px;
}

.page-heading h1 {
    margin: 0 0 8px;
}

.page-heading p,
.empty-state {
    color: #64748b;
}

.movie-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.movie-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    padding: 16px;
}

.movie-card img {
    aspect-ratio: 2 / 3;
    border-radius: 6px;
    display: block;
    margin-bottom: 14px;
    object-fit: cover;
    width: 100%;
}

.movie-card h2 {
    font-size: 18px;
    margin: 0 0 8px;
}

.movie-card p {
    color: #4b5563;
    line-height: 1.5;
}

.auth-page {
    align-items: center;
    display: flex;
    min-height: 100vh;
    justify-content: center;
    padding: 24px;
}

.auth-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    max-width: 420px;
    padding: 28px;
    width: 100%;
}

.auth-panel h1 {
    margin: 0 0 20px;
}

.auth-panel form {
    display: grid;
    gap: 12px;
}

.auth-panel label {
    font-weight: 700;
}

.auth-panel input {
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font: inherit;
    padding: 10px 12px;
    width: 100%;
}

.auth-panel button {
    background: #2563eb;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    margin-top: 8px;
    padding: 11px 14px;
}

.auth-link {
    color: #64748b;
    margin: 18px 0 0;
}

.auth-link a {
    color: #2563eb;
    font-weight: 700;
}

.auth-cinema-body {
    background: #050505;
    color: #f7f2e8;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.auth-cinema-body::before {
    background: url('../images/movie-showcase-bg.png?v=2') center / cover fixed no-repeat;
    content: "";
    inset: 0;
    opacity: .62;
    position: fixed;
    z-index: 0;
}

.auth-cinema-body::after {
    background:
        radial-gradient(circle at 64% 20%, rgba(212, 175, 55, .22), transparent 28%),
        linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .45), rgba(0, 0, 0, .88)),
        linear-gradient(180deg, rgba(5, 5, 5, .36), #050505 100%);
    content: "";
    inset: 0;
    position: fixed;
    z-index: 0;
}

.auth-cinema-body .auth-page {
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 440px);
    margin: 0 auto;
    max-width: 1160px;
    min-height: 100vh;
    padding: 48px 24px;
    position: relative;
    z-index: 1;
}

.auth-showcase {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 560px;
    padding: 22px 0;
}

.auth-home-link {
    align-self: flex-start;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: #f7df8e;
    font-weight: 800;
    padding: 11px 16px;
    transition: background 200ms ease, transform 200ms ease;
}

.auth-home-link:hover {
    background: rgba(212, 175, 55, .16);
    transform: translateY(-2px);
}

.auth-showcase h1 {
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 66px;
    line-height: 1;
    margin: 0 0 18px;
    max-width: 680px;
}

.auth-showcase p {
    color: #ddd6c8;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
}

.auth-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.auth-highlights span {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 999px;
    color: #f7f2e8;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 14px;
    text-transform: uppercase;
}

.cinema-auth-panel {
    backdrop-filter: blur(22px);
    background: rgba(8, 10, 14, .78);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .52);
    color: #f7f2e8;
    padding: 34px;
}

.auth-panel-heading {
    margin-bottom: 24px;
}

.auth-panel-heading h2 {
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 34px;
    margin: 0 0 10px;
}

.auth-panel-heading p {
    color: #c7c2b8;
    line-height: 1.6;
    margin: 0;
}

.cinema-auth-panel label {
    color: #f7f2e8;
    font-size: 13px;
    text-transform: uppercase;
}

.cinema-auth-panel input {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: #ffffff;
    padding: 13px 14px;
}

.cinema-auth-panel input:focus {
    border-color: rgba(212, 175, 55, .72);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .16);
    outline: 0;
}

.cinema-auth-panel button {
    background: linear-gradient(135deg, #f7df8e, #b98719);
    border-radius: 8px;
    color: #090909;
    font-weight: 900;
    padding: 13px 16px;
    transition: filter 180ms ease, transform 180ms ease;
}

.cinema-auth-panel button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.cinema-auth-panel .auth-link {
    color: #c7c2b8;
}

.cinema-auth-panel .auth-link a {
    color: #f7df8e;
}

.auth-cinema-body .alert {
    background: rgba(127, 29, 29, .35);
    border-color: rgba(248, 113, 113, .38);
    color: #fecaca;
}

.live-login-body {
    background: #000000;
    color: #ffffff;
    font-family: Inter, Arial, Helvetica, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.live-login-body .poster-bg {
    background:
        url('../images/movie-showcase-bg.png?v=2') center top / cover fixed no-repeat;
    filter: none;
    inset: 0;
    opacity: .72;
    position: fixed;
    transform: none;
    z-index: 0;
}

.live-login-body .poster-bg::after {
    background:
        radial-gradient(circle at 50% 18%, rgba(212, 175, 55, .18), transparent 26%),
        linear-gradient(180deg, rgba(5, 5, 5, .48), rgba(5, 5, 5, .9) 62%, #050505 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .22), rgba(0, 0, 0, .76));
    content: "";
    inset: 0;
    position: absolute;
}

.live-login-body .cinema-glow {
    border-radius: 999px;
    filter: blur(72px);
    opacity: .42;
    pointer-events: none;
    position: fixed;
    z-index: 1;
}

.live-login-body .cinema-glow-one {
    animation: liveLoginGlow 9s ease-in-out infinite alternate;
    background: #6a00ff;
    height: 260px;
    left: -80px;
    top: 12%;
    width: 260px;
}

.live-login-body .cinema-glow-two {
    animation: liveLoginGlow 11s ease-in-out infinite alternate-reverse;
    background: #d4af37;
    bottom: 8%;
    height: 220px;
    right: -70px;
    width: 220px;
}

.live-login-body .login-shell {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 450px);
    margin: 0 auto;
    max-width: 1180px;
    min-height: 100vh;
    padding: 56px 24px;
    position: relative;
    z-index: 2;
}

.live-login-body .back-link {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: #f5d27a;
    font-weight: 800;
    left: 24px;
    padding: 11px 16px;
    position: absolute;
    top: 24px;
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.live-login-body .back-link:hover {
    background: rgba(212, 175, 55, .14);
    box-shadow: 0 0 24px rgba(212, 175, 55, .22);
    transform: translateY(-2px);
}

.live-login-body .login-badge {
    color: #d4af37;
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.live-login-body .hero-copy h1 {
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: clamp(46px, 6vw, 76px);
    line-height: .98;
    margin: 0 0 22px;
    max-width: 720px;
}

.live-login-body .hero-copy p {
    color: #d2d2d2;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    max-width: 560px;
}

.live-login-body .login-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.live-login-body .login-tags span {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 999px;
    color: #eeeeee;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 14px;
    text-transform: uppercase;
}

.live-login-body .login-card {
    backdrop-filter: blur(20px);
    background: rgba(20, 20, 25, .6);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    box-shadow: 0 32px 110px rgba(0, 0, 0, .58), inset 0 1px 0 rgba(255, 255, 255, .08);
    overflow: hidden;
    padding: 34px;
    position: relative;
}

.live-login-body .login-card::before {
    background: linear-gradient(90deg, #6a00ff, #d4af37);
    content: "";
    height: 2px;
    left: 24px;
    position: absolute;
    right: 24px;
    top: 0;
}

.live-login-body .card-heading {
    margin-bottom: 24px;
}

.live-login-body .card-heading h2 {
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: 32px;
    line-height: 1.1;
    margin: 0 0 10px;
}

.live-login-body .card-heading p,
.live-login-body .signup-link,
.live-login-body .form-row {
    color: #aaaaaa;
}

.live-login-body .card-heading p {
    line-height: 1.6;
    margin: 0;
}

.live-login-body .login-form {
    display: grid;
    gap: 12px;
}

.live-login-body .login-form label {
    color: #eeeeee;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.live-login-body .login-form input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 12px;
    color: #ffffff;
    font: inherit;
    min-height: 50px;
    outline: 0;
    padding: 13px 14px;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
    width: 100%;
}

.live-login-body .login-form input:focus {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(212, 175, 55, .78);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .13), 0 0 26px rgba(212, 175, 55, .18);
}

.live-login-body .login-form input::placeholder {
    color: rgba(170, 170, 170, .72);
}

.live-login-body .password-field {
    position: relative;
}

.live-login-body .password-field input {
    padding-right: 76px;
}

.live-login-body .password-field button {
    background: transparent;
    border: 0;
    color: #f5d27a;
    cursor: pointer;
    font-weight: 800;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.live-login-body .form-row {
    display: flex;
    font-size: 14px;
    justify-content: flex-end;
    margin: 4px 0 8px;
}

.live-login-body .form-row a,
.live-login-body .signup-link a {
    color: #f5d27a;
    font-weight: 800;
    position: relative;
}

.live-login-body .form-row a::after,
.live-login-body .signup-link a::after {
    background: linear-gradient(90deg, #6a00ff, #d4af37);
    bottom: -3px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
    width: 100%;
}

.live-login-body .form-row a:hover::after,
.live-login-body .signup-link a:hover::after {
    transform: scaleX(1);
}

.live-login-body .login-button {
    background: linear-gradient(135deg, #f5d27a, #d4af37 48%, #9b6b12);
    border: 0;
    border-radius: 12px;
    color: #090909;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    min-height: 52px;
    transition: box-shadow .3s ease, filter .3s ease, transform .3s ease;
}

.live-login-body .login-button:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, .34);
    filter: brightness(1.06);
    transform: scale(1.05);
}

.live-login-body .signup-link {
    margin: 20px 0 0;
    text-align: center;
}

.live-login-body .alert {
    background: rgba(127, 29, 29, .35);
    border-color: rgba(248, 113, 113, .38);
    color: #fecaca;
}

@keyframes liveLoginGlow {
    to {
        transform: translate3d(34px, -24px, 0) scale(1.08);
    }
}

.alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #991b1b;
    margin-bottom: 16px;
    padding: 10px 12px;
}

.alert p {
    margin: 0;
}

.alert p + p {
    margin-top: 6px;
}

.admin-body {
    background: #0f172a;
    color: #e5edf7;
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #111827;
    border-right: 1px solid #263244;
    padding: 28px 22px;
}

.admin-sidebar-head {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.admin-drawer-input {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.admin-nav-toggle {
    display: none;
}

.admin-nav-backdrop {
    display: none;
}

.admin-logo {
    color: #ffffff;
    display: block;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 34px;
}

.admin-sidebar nav {
    display: grid;
    gap: 10px;
}

.admin-sidebar nav a {
    border-radius: 8px;
    color: #9ca3af;
    padding: 12px 14px;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
    background: #1f2937;
    color: #ffffff;
}

.admin-main {
    padding: 32px;
}

.admin-topbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.admin-topbar p {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.admin-topbar h1 {
    color: #ffffff;
    font-size: clamp(22px, 1.75vw, 30px);
    font-weight: 700;
    line-height: 1.18;
    margin: 0;
    max-width: none;
}

.admin-grid {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(340px, 420px) minmax(0, 1fr);
}

.admin-panel {
    background: #111827;
    border: 1px solid #263244;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .28);
    padding: 22px;
}

.admin-saas-body .admin-main {
    background:
        linear-gradient(180deg, rgba(37, 99, 235, .08), transparent 280px),
        #0f172a;
}

.saas-stat-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 22px;
}

.saas-stat-card,
.saas-panel {
    background: #111827;
    border: 1px solid #263244;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .22);
}

.saas-stat-card {
    padding: 20px;
}

.saas-stat-card span {
    color: #94a3b8;
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.saas-stat-card strong {
    color: #ffffff;
    display: block;
    font-size: 34px;
    margin-bottom: 8px;
}

.saas-stat-card small {
    color: #38bdf8;
    font-weight: 800;
}

.saas-dashboard-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 22px;
}

.bar-chart {
    display: grid;
    gap: 14px;
}

.bar-row {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(90px, 150px) 1fr 46px;
}

.bar-row span {
    color: #cbd5e1;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bar-row div {
    background: #1f2937;
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
}

.bar-row i {
    background: linear-gradient(90deg, #38bdf8, #2563eb);
    border-radius: inherit;
    display: block;
    height: 100%;
}

.bar-row strong {
    color: #ffffff;
    text-align: right;
}

.compact-table td {
    padding: 12px 8px;
}

.admin-table small {
    color: #94a3b8;
    display: block;
    margin-top: 4px;
}

.status-pill {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    padding: 7px 10px;
}

.status-pill.active {
    background: rgba(22, 163, 74, .16);
    color: #bbf7d0;
}

.status-pill.blocked {
    background: rgba(220, 38, 38, .16);
    color: #fecaca;
}

.member-uid-tag,
.admin-upline-tag,
.team-uid-tag {
    background: rgba(212, 175, 55, .14);
    border-radius: 999px;
    color: #d4af37;
    display: inline-flex;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 6px 10px;
    white-space: nowrap;
}

.member-uid-tag--empty,
.admin-upline-tag--empty {
    background: rgba(148, 163, 184, .1);
    color: #94a3b8;
    font-family: inherit;
    font-weight: 600;
}

.table-panel {
    min-width: 0;
}

.panel-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.panel-heading h2 {
    color: #ffffff;
    font-size: 20px;
    margin: 0;
}

.panel-heading span,
.file-hint {
    color: #94a3b8;
    font-size: 13px;
}

.admin-form {
    display: grid;
    gap: 12px;
}

.admin-form label {
    color: #dbeafe;
    font-size: 14px;
    font-weight: 700;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    background: #0b1220;
    border: 1px solid #334155;
    border-radius: 7px;
    color: #f8fafc;
    font: inherit;
    padding: 11px 12px;
    width: 100%;
}

.dashboard-panel .admin-form {
    gap: 14px;
}

.dashboard-panel .admin-form label {
    color: #d8c89a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
}

.dashboard-panel .admin-form input,
.dashboard-panel .admin-form select {
    appearance: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
        rgba(7, 10, 16, .82);
    border: 1px solid rgba(245, 210, 122, .18);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    color: #f3e7c2;
    min-height: 52px;
    outline: none;
    padding: 0 16px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.dashboard-panel .admin-form select {
    background-image:
        linear-gradient(45deg, transparent 50%, #f5d27a 50%),
        linear-gradient(135deg, #f5d27a 50%, transparent 50%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    background-position:
        calc(100% - 20px) 50%,
        calc(100% - 14px) 50%,
        0 0;
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px, 100% 100%;
    padding-right: 44px;
}

.dashboard-panel .admin-form input::placeholder {
    color: rgba(255, 255, 255, .42);
}

.dashboard-panel .admin-form input:focus,
.dashboard-panel .admin-form select:focus {
    border-color: rgba(245, 210, 122, .48);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .12), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.dashboard-panel .gold-button {
    margin-top: 2px;
}

.admin-inline-input {
    background: #0b1220;
    border: 1px solid #334155;
    border-radius: 7px;
    color: #f8fafc;
    font: inherit;
    min-width: 120px;
    padding: 9px 10px;
    width: 100%;
}

.admin-form textarea {
    line-height: 1.5;
    resize: vertical;
}

.admin-form input[type="file"] {
    color: #cbd5e1;
}

.admin-form button:disabled,
.gold-button:disabled {
    cursor: not-allowed;
    filter: grayscale(.35);
    opacity: .55;
    transform: none;
}

.file-hint {
    margin: -4px 0 4px;
}

.admin-button {
    background: #d4af37;
    border: 0;
    border-radius: 7px;
    color: #111827;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 800;
    justify-content: center;
    padding: 11px 16px;
}

.admin-button.subtle {
    background: #1e293b;
    color: #e2e8f0;
}

.admin-button.danger {
    background: #7f1d1d;
    color: #fee2e2;
}

.admin-button.small {
    font-size: 13px;
    padding: 8px 10px;
}

.admin-action-group,
.admin-form-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-action-group form {
    margin: 0;
}

.admin-action-group--icons {
    align-items: center;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: flex-end;
}

.admin-action-group--icons form {
    display: contents;
    margin: 0;
}

.admin-actions-cell {
    min-width: 240px;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
}

.admin-user-packages {
    max-width: 220px;
    min-width: 120px;
    vertical-align: middle;
}

.admin-user-packages .admin-package-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    margin: 2px 4px 2px 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-transform: none;
    white-space: normal;
}

.admin-icon-button {
    align-items: center;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    box-sizing: border-box;
    color: #e2e8f0;
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    height: 40px;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
    width: 40px;
}

.admin-icon-button svg {
    display: block;
    height: 20px;
    pointer-events: none;
    width: 20px;
}

.admin-icon-button:focus-visible {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
    outline: none;
}

.admin-icon-button:hover {
    background: rgba(51, 65, 85, 0.95);
    border-color: rgba(212, 175, 55, 0.45);
    color: #ffffff;
}

.admin-icon-button--subtle {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(246, 241, 230, 0.88);
}

.admin-icon-button--subtle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(247, 223, 142, 0.35);
    color: #ffffff;
}

.admin-icon-button--gold {
    background: linear-gradient(135deg, #f7df8e, #d4af37);
    border-color: rgba(255, 255, 255, 0.28);
    color: #0f172a;
}

.admin-icon-button--gold:hover {
    background: linear-gradient(135deg, #fff4c2, #e8c547);
    border-color: rgba(255, 255, 255, 0.4);
    color: #030712;
}

.admin-icon-button--danger {
    background: rgba(127, 29, 29, 0.55);
    border-color: rgba(252, 165, 165, 0.45);
    color: #fecaca;
}

.admin-icon-button--danger:hover {
    background: rgba(153, 27, 27, 0.75);
    border-color: rgba(254, 202, 202, 0.55);
    color: #ffffff;
}

.verified-text {
    color: #86efac;
}

.unverified-text {
    color: #f5d27a;
}

.generated-login-box {
    overflow-wrap: anywhere;
}

.user-edit-panel {
    margin-bottom: 20px;
}

.admin-delete-member-panel {
    border-top: 1px solid rgba(248, 113, 113, 0.35);
    margin-top: 24px;
    padding-top: 20px;
}

.admin-delete-member-panel h3 {
    color: #fecaca;
    font-size: 16px;
    margin: 0 0 8px;
}

.admin-delete-member-form {
    margin-top: 12px;
    max-width: 420px;
}

.admin-topup-panel {
    margin-bottom: 20px;
}

.admin-topup-form {
    align-items: end;
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(160px, 220px) minmax(260px, 1fr) auto;
    gap: 14px;
}

.admin-topup-result {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    min-height: 44px;
    padding: 11px 12px;
}

.admin-topup-result.is-valid {
    border-color: rgba(34, 197, 94, .28);
    color: #86efac;
}

.admin-reverse-plan-panel,
.admin-reverse-plan-panel-page {
    margin-top: 20px;
}

.admin-reverse-plan-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.admin-reverse-plan-row {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding: 12px 14px;
}

.admin-reverse-plan-row span {
    display: grid;
    gap: 4px;
}

.admin-reverse-plan-row small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.admin-reverse-plan-form {
    display: grid;
    gap: 14px;
    max-width: 520px;
}

.admin-topup-result.is-invalid {
    border-color: rgba(248, 113, 113, .32);
    color: #fecaca;
}

@media (max-width: 980px) {
    .admin-topup-form {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .admin-topup-form > .admin-button {
        width: 100%;
    }
}

.admin-notice {
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.admin-notice p {
    margin: 0;
}

.admin-notice p + p {
    margin-top: 6px;
}

.admin-notice.success {
    background: #052e1a;
    border: 1px solid #166534;
    color: #bbf7d0;
}

.admin-notice.error {
    background: #3f1111;
    border: 1px solid #7f1d1d;
    color: #fecaca;
}

.admin-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}

.admin-table {
    border-collapse: collapse;
    min-width: 760px;
    width: 100%;
}

.admin-body .admin-datatable {
    min-width: 880px;
}

.admin-table th,
.admin-table td {
    border-bottom: 1px solid #263244;
    padding: 14px 12px;
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: #94a3b8;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-table td {
    color: #dbeafe;
}

.movie-row {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 260px;
}

.movie-row img,
.movie-thumb-placeholder {
    background: #1e293b;
    border-radius: 7px;
    flex: 0 0 auto;
    height: 58px;
    object-fit: cover;
    width: 44px;
}

.movie-row strong,
.movie-row small {
    display: block;
}

.movie-row small {
    color: #94a3b8;
    line-height: 1.4;
    margin-top: 4px;
}

.table-actions {
    display: flex;
    gap: 8px;
}

.table-actions form {
    margin: 0;
}

.table-empty {
    color: #94a3b8;
    text-align: center;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.pagination a {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 7px;
    color: #dbeafe;
    font-weight: 800;
    min-width: 36px;
    padding: 9px 11px;
    text-align: center;
}

.pagination a.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #111827;
}

@media (max-width: 980px) {
    .admin-body {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        min-height: 100dvh;
        position: relative;
    }

    body.admin-body:has(#admin-drawer-state:checked) {
        overflow: hidden;
    }

    .admin-sidebar {
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 0;
        box-shadow: 0 14px 48px rgba(0, 0, 0, 0.38);
        display: flex;
        flex: 0 0 auto;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        justify-content: space-between;
        padding: 12px 14px !important;
        width: 100% !important;
        max-width: none !important;
        z-index: 120;
    }

    .admin-sidebar-head {
        align-items: center;
        flex: 1 1 auto;
        flex-direction: row;
        gap: 12px;
        justify-content: space-between;
        min-width: 0;
    }

    .admin-sidebar .admin-logo {
        margin-bottom: 0 !important;
        min-width: 0;
    }

    .admin-settings-body .admin-sidebar .admin-logo {
        margin-bottom: 0 !important;
    }

    .admin-nav-toggle {
        align-items: center;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(247, 223, 142, 0.28);
        border-radius: 12px;
        color: #f6f1e6;
        cursor: pointer;
        display: inline-flex;
        flex: 0 0 auto;
        font-size: 13px;
        font-weight: 750;
        gap: 10px;
        letter-spacing: 0.04em;
        padding: 10px 14px;
        text-transform: uppercase;
    }

    .admin-nav-toggle-bars {
        display: flex;
        flex-direction: column;
        gap: 5px;
        height: 16px;
        justify-content: center;
        width: 22px;
    }

    .admin-nav-toggle-bars span {
        background: linear-gradient(90deg, rgba(247, 223, 142, 0.95), rgba(30, 230, 183, 0.75));
        border-radius: 999px;
        display: block;
        height: 2px;
        transform-origin: center;
        transition: transform 0.2s ease, opacity 0.2s ease;
        width: 100%;
    }

    #admin-drawer-state:checked ~ .admin-sidebar .admin-nav-toggle-bars span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    #admin-drawer-state:checked ~ .admin-sidebar .admin-nav-toggle-bars span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    #admin-drawer-state:checked ~ .admin-sidebar .admin-nav-toggle-bars span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    #admin-drawer-state:not(:checked) ~ .admin-sidebar nav {
        display: none !important;
    }

    #admin-drawer-state:checked ~ .admin-sidebar {
        align-items: stretch;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
            rgba(5, 7, 9, 0.96);
        border-bottom: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        bottom: 0;
        box-shadow: 24px 0 80px rgba(0, 0, 0, 0.45);
        flex-direction: column;
        gap: 0;
        height: 100dvh;
        justify-content: flex-start;
        left: 0;
        max-width: min(320px, 92vw);
        overflow-x: hidden;
        overflow-y: auto;
        padding: 18px 16px 22px !important;
        position: fixed;
        top: 0;
        width: min(320px, 92vw) !important;
        z-index: 210;
    }

    #admin-drawer-state:checked ~ .admin-sidebar .admin-sidebar-head {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex: 0 0 auto;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    #admin-drawer-state:checked ~ .admin-sidebar nav {
        display: grid !important;
        flex: 1 1 auto;
        gap: 10px !important;
        margin: 0;
        max-height: none;
        overflow: visible;
        padding-bottom: 4px;
    }

    #admin-drawer-state:checked ~ .admin-sidebar nav a,
    #admin-drawer-state:checked ~ .admin-sidebar nav form button {
        font-size: 14px;
        padding: 12px 14px !important;
        white-space: normal;
    }

    #admin-drawer-state:checked ~ .admin-nav-backdrop {
        background: rgba(2, 6, 23, 0.62);
        backdrop-filter: blur(3px);
        bottom: 0;
        cursor: pointer;
        display: block;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 200;
    }

    .admin-main {
        flex: 1 1 auto;
        min-width: 0;
        padding: 20px 16px 32px !important;
        width: 100%;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .saas-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .saas-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-finance-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .admin-movies-body .admin-movies-grid {
        grid-template-columns: 1fr !important;
    }

    .admin-panel,
    .admin-main .saas-panel {
        min-width: 0;
    }

    .admin-datatable-toolbar,
    .admin-datatable-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-datatable-toolbar label {
        flex-wrap: wrap;
        width: 100%;
    }

    .admin-datatable-toolbar input[type="search"],
    .admin-datatable-toolbar input {
        min-width: 0;
        width: 100%;
    }

    .admin-datatable-footer .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .admin-action-group {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-action-group form,
    .admin-action-group > a.admin-button {
        width: 100%;
    }

    .admin-action-group .admin-button {
        box-sizing: border-box;
        justify-content: center;
        width: 100%;
    }

    .admin-action-group.admin-action-group--icons {
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }

    .admin-action-group--icons form {
        display: contents;
        width: auto;
    }

    .admin-action-group--icons .admin-icon-button {
        width: 40px;
    }

    .admin-report-filter {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .admin-report-filter .admin-button {
        width: 100%;
    }

    .admin-package-form {
        grid-template-columns: 1fr !important;
    }

    .saas-stat-card,
    .stat-card {
        min-height: 126px;
    }
}

@media (max-width: 640px) {
    .admin-main {
        padding: 16px 12px 28px !important;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .saas-stat-grid {
        grid-template-columns: 1fr !important;
    }

    .admin-panel,
    .saas-panel {
        padding: 16px 14px !important;
    }

    .bar-row {
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) 1fr minmax(38px, auto) !important;
    }

    .bar-row span {
        font-size: 12px;
    }
}

.youtube-embed {
    aspect-ratio: 16 / 9;
    background: #000000;
    border: 0;
    display: block;
    width: 100%;
}

.hero-slide .youtube-embed,
.detail-player .youtube-embed {
    height: 100%;
    object-fit: cover;
}

.hero-slide .youtube-embed {
    filter: saturate(1.16) contrast(1.08);
    inset: 0;
    opacity: .68;
    position: absolute;
}

.detail-player .youtube-embed {
    border-radius: inherit;
}

.clip-card .youtube-embed,
.dashboard-clip-card .youtube-embed,
.side-clip.youtube-embed {
    min-height: 150px;
}

/* Premium member analytics layer */
.premium-analytics-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    margin: 0 0 28px;
}

.premium-chart-card,
.premium-orbit-card {
    min-height: 260px;
}

.premium-chart-card {
    padding: clamp(22px, 2.2vw, 30px) !important;
}

.premium-orbit-card {
    align-items: center;
    display: grid;
    gap: 26px;
    grid-template-columns: 150px minmax(0, 1fr);
    padding: clamp(24px, 2.4vw, 34px) !important;
}

.premium-orbit-card h2 {
    color: #f8e7a7;
    font-size: clamp(28px, 3vw, 44px);
    margin: 8px 0 8px;
}

.premium-orbit-card p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.65;
    margin: 0;
}

.premium-ring {
    align-items: center;
    aspect-ratio: 1;
    background:
        radial-gradient(circle at 50% 50%, rgba(8, 8, 8, .94) 0 58%, transparent 59%),
        conic-gradient(from -90deg, #30d5c8 0, #d4af37 var(--ring-value), rgba(255, 255, 255, .08) var(--ring-value) 100%);
    border-radius: 50%;
    box-shadow:
        0 0 36px rgba(48, 213, 200, .12),
        0 0 28px rgba(212, 175, 55, .16),
        inset 0 0 0 1px rgba(255, 255, 255, .08);
    display: flex;
    justify-content: center;
    opacity: .72;
    position: relative;
    transform: scale(.94);
    transition: opacity .7s ease, transform .7s ease;
    width: 150px;
}

.premium-ring::before {
    animation: premiumRingPulse 2.8s ease-in-out infinite;
    border: 1px solid rgba(245, 210, 122, .22);
    border-radius: inherit;
    content: "";
    inset: -8px;
    position: absolute;
}

.premium-ring span {
    color: #f8e7a7;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
}

.premium-ring.is-premium-visible {
    opacity: 1;
    transform: scale(1);
}

.premium-bars {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.premium-bar-row {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(110px, .45fr) minmax(130px, 1fr) minmax(54px, auto);
}

.premium-bar-row span,
.premium-bar-row strong {
    color: #f3e7c2;
    font-size: 13px;
    font-weight: 800;
}

.premium-bar-row span {
    color: rgba(255, 255, 255, .72);
}

.premium-bar-row i {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02)),
        rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 999px;
    height: 14px;
    overflow: hidden;
    position: relative;
}

.premium-bar-row i b,
.premium-mini-progress i {
    animation: premiumProgressSheen 2.6s linear infinite;
    background:
        linear-gradient(90deg, rgba(48, 213, 200, .9), rgba(245, 210, 122, .95), rgba(255, 96, 96, .65)),
        linear-gradient(90deg, #30d5c8, #d4af37);
    border-radius: inherit;
    box-shadow: 0 0 20px rgba(212, 175, 55, .25);
    display: block;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.05s cubic-bezier(.2, .8, .2, 1);
    width: var(--bar-value);
}

.premium-bars.is-premium-visible .premium-bar-row i b,
.is-premium-visible .premium-mini-progress i {
    transform: scaleX(1);
}

.premium-mini-progress {
    background: rgba(255, 255, 255, .055);
    border-radius: 999px;
    display: block;
    height: 8px;
    margin-top: 8px;
    min-width: 112px;
    overflow: hidden;
}

.premium-mini-progress i {
    transform: scaleX(1);
}

.plan-grid .plan-card {
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.plan-grid .plan-card:hover,
.premium-chart-card:hover,
.premium-orbit-card:hover {
    border-color: rgba(48, 213, 200, .22) !important;
    box-shadow:
        0 16px 54px rgba(0, 0, 0, .48),
        0 0 30px rgba(48, 213, 200, .08),
        inset 0 1px 0 rgba(255, 255, 255, .05) !important;
    transform: translateY(-3px);
}

.dashboard-stats .stat-card {
    transition: transform .24s ease, box-shadow .24s ease;
}

.dashboard-stats .stat-card:hover {
    box-shadow:
        0 16px 48px rgba(0, 0, 0, .48),
        0 0 26px rgba(212, 175, 55, .10),
        inset 0 1px 0 rgba(255, 255, 255, .05) !important;
    transform: translateY(-3px);
}

.member-review-grid .glass-movie-card {
    transition: transform .26s ease, filter .26s ease;
}

.member-review-grid .glass-movie-card:hover {
    filter: saturate(1.08) brightness(1.08);
    transform: translateY(-5px);
}

@keyframes premiumRingPulse {
    0%,
    100% {
        opacity: .4;
        transform: scale(.98);
    }

    50% {
        opacity: .9;
        transform: scale(1.04);
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-ring::before,
    .premium-bar-row i b,
    .premium-mini-progress i {
        animation: none !important;
    }

    .premium-ring,
    .premium-bar-row i b,
    .premium-mini-progress i,
    .plan-grid .plan-card,
    .premium-chart-card,
    .premium-orbit-card,
    .dashboard-stats .stat-card,
    .member-review-grid .glass-movie-card {
        transition: none !important;
    }
}

@media (max-width: 980px) {
    .premium-analytics-grid {
        grid-template-columns: 1fr;
    }

    body.team-page .premium-analytics-grid {
        grid-template-columns: 1fr;
    }

    .premium-orbit-card {
        grid-template-columns: 132px minmax(0, 1fr);
    }

    .premium-ring {
        width: 132px;
    }
}

@media (max-width: 620px) {
    .premium-analytics-grid {
        gap: 18px;
    }

    .premium-orbit-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .premium-ring {
        width: 122px;
    }

    .premium-bar-row {
        align-items: start;
        grid-template-columns: 1fr auto;
    }

    .premium-bar-row i {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

/* Withdrawal form polish */
body.dashboard-body .withdrawal-request-panel {
    max-width: 760px;
}

body.dashboard-body .withdrawal-request-panel .dashboard-panel-heading {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    margin-bottom: 22px;
    padding-bottom: 16px;
}

body.dashboard-body .withdrawal-request-panel .dashboard-panel-heading h2 {
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.15;
}

body.dashboard-body .withdrawal-request-panel .dashboard-panel-heading span {
    background: rgba(245, 210, 122, .08);
    border: 1px solid rgba(245, 210, 122, .16);
    border-radius: 999px;
    color: rgba(245, 210, 122, .82);
    padding: 7px 11px;
    white-space: nowrap;
}

.withdrawal-address-saved {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 12px;
    padding: 14px 16px;
}

.withdrawal-address-saved__label {
    color: rgba(216, 200, 154, 0.9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.withdrawal-address-saved__value {
    color: #f5d27a;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-all;
}

.withdrawal-address-saved__hint,
.withdrawal-address-form__hint {
    color: rgba(199, 194, 184, 0.88);
    font-size: 13px;
    line-height: 1.5;
    margin: 10px 0 0;
}

.withdrawal-address-form__hint code {
    color: #f5d27a;
}

body.dashboard-body .withdrawal-address-panel {
    margin-bottom: 0;
}

.admin-table .withdrawal-address-cell code {
    color: #f5d27a;
    font-size: 12px;
    word-break: break-all;
}

.withdrawal-form {
    display: grid;
    gap: 14px;
}

.withdrawal-form label {
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    font-weight: 850;
}

.withdrawal-form input {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025)),
        rgba(0, 0, 0, .24) !important;
    border: 1px solid rgba(255, 255, 255, .09) !important;
    border-radius: 14px !important;
    color: #f3e7c2 !important;
    font: inherit;
    height: 50px;
    outline: 0;
    padding: 0 16px;
    width: 100%;
}

.withdrawal-form input:focus {
    border-color: rgba(245, 210, 122, .42) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .10), 0 0 22px rgba(212, 175, 55, .10) !important;
}

.withdrawal-form-splitviz {
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(0, 0, 0, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    min-height: 128px;
    padding: 12px 14px 14px;
}

.withdrawal-form-splitviz__title {
    color: rgba(247, 231, 200, 0.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.withdrawal-form-splitviz__bars {
    display: block;
    flex-shrink: 0;
    height: 52px;
    margin: 0 auto;
    max-width: 220px;
    width: 100%;
}

.withdrawal-form-splitviz__legend {
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    flex-wrap: wrap;
    font-size: 11px;
    font-weight: 700;
    gap: 10px 14px;
    justify-content: center;
    letter-spacing: 0.02em;
}

.withdrawal-form-splitviz__legend span {
    align-items: center;
    display: inline-flex;
    gap: 6px;
}

.withdrawal-form-splitviz__dot {
    border-radius: 999px;
    flex-shrink: 0;
    height: 7px;
    width: 7px;
}

.withdrawal-form-splitviz__dot--ded {
    background: linear-gradient(180deg, #f7df8e, #9a7419);
}

.withdrawal-form-splitviz__dot--bank {
    background: linear-gradient(180deg, #f5d27a, #7a5a12);
}

.withdrawal-form-splitviz__dot--wallet {
    background: linear-gradient(180deg, #5eead4, #0f766e);
}

body.dashboard-body .dashboard-grid.withdrawals-payout-grid .withdrawal-form-splitviz {
    min-height: 148px;
}

.withdrawal-form .gold-button {
    align-self: start;
    height: 48px;
    justify-content: center;
    margin-top: 6px;
    min-width: 190px;
    padding-inline: 24px;
    width: auto;
}

@media (max-width: 640px) {
    body.dashboard-body .withdrawal-request-panel {
        max-width: none;
    }

    body.dashboard-body .withdrawal-request-panel .dashboard-panel-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .withdrawal-form .gold-button {
        width: 100%;
    }

    body.dashboard-body .dashboard-grid.withdrawals-payout-grid .withdrawal-form .gold-button {
        align-self: stretch;
    }
}

/* Withdrawals (?page=withdrawals): match column heights (Request vs Payout Split) */
body.dashboard-body .dashboard-grid.withdrawals-payout-grid {
    align-items: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.dashboard-body .dashboard-grid.withdrawals-payout-grid > .dashboard-panel {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    min-height: 0;
}

body.dashboard-body .dashboard-grid.withdrawals-payout-grid .withdrawal-request-panel {
    max-width: none;
}

body.dashboard-body .dashboard-grid.withdrawals-payout-grid .withdrawal-form {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
}

body.dashboard-body .dashboard-grid.withdrawals-payout-grid .withdrawal-form .gold-button {
    align-self: start;
    margin-top: auto;
}

@media (max-width: 920px) {
    body.dashboard-body .dashboard-grid.withdrawals-payout-grid {
        grid-template-columns: 1fr;
    }
}

/* Native select dropdown readability */
body.dashboard-body select,
body.dashboard-body .admin-form select,
body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel .admin-form select {
    appearance: auto;
    background-color: #121212 !important;
    color: #f8e7a7 !important;
}

body.dashboard-body select option,
body.dashboard-body .admin-form select option {
    background: #111111;
    color: #f8e7a7;
}

body.dashboard-body select option:checked,
body.dashboard-body select option:hover {
    background: #d4af37;
    color: #111111;
}

/* Dashboard paired widgets */
body.dashboard-body .dashboard-balance-row {
    align-items: stretch;
}

body.dashboard-body .dashboard-equal-panel {
    display: flex;
    flex-direction: column;
    min-height: 430px;
}

body.dashboard-body .dashboard-equal-panel .dashboard-scroll-list {
    flex: 1 1 auto;
    max-height: 330px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-color: rgba(245, 210, 122, .42) rgba(255, 255, 255, .04);
    scrollbar-width: thin;
}

body.dashboard-body .dashboard-investment-panel .dashboard-scroll-list {
    align-content: start;
    display: grid;
    gap: 12px;
}

body.dashboard-body .investment-summary-strip {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 16px;
}

body.dashboard-body .investment-summary-strip article {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 12px 14px;
}

body.dashboard-body .investment-summary-strip span {
    color: rgba(216, 200, 154, .72);
    display: block;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

body.dashboard-body .investment-summary-strip strong {
    color: #f8e7a7;
    display: block;
    font-size: 18px;
    line-height: 1;
}

body.dashboard-body .dashboard-equal-panel .dashboard-scroll-list::-webkit-scrollbar {
    width: 8px;
}

body.dashboard-body .dashboard-equal-panel .dashboard-scroll-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .04);
    border-radius: 999px;
}

body.dashboard-body .dashboard-equal-panel .dashboard-scroll-list::-webkit-scrollbar-thumb {
    background: rgba(245, 210, 122, .42);
    border-radius: 999px;
}

@media (max-width: 920px) {
    body.dashboard-body .dashboard-equal-panel {
        min-height: 0;
    }

    body.dashboard-body .dashboard-equal-panel .dashboard-scroll-list {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}

/* Dashboard investment plan visuals */
body.dashboard-body .investment-plan-item {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: 44px minmax(0, 1fr) 56px;
    min-height: 92px;
}

body.dashboard-body .investment-plan-icon {
    align-items: center;
    background:
        linear-gradient(145deg, rgba(48, 213, 200, .14), rgba(245, 210, 122, .10)),
        rgba(255, 255, 255, .035);
    border: 1px solid rgba(245, 210, 122, .16);
    border-radius: 16px;
    box-shadow: 0 0 24px rgba(48, 213, 200, .08);
    display: flex;
    height: 44px;
    justify-content: center;
    width: 44px;
}

body.dashboard-body .investment-plan-icon svg {
    fill: none;
    height: 24px;
    stroke: #f5d27a;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 24px;
}

body.dashboard-body .investment-plan-copy {
    min-width: 0;
}

body.dashboard-body .investment-plan-meter {
    background: rgba(255, 255, 255, .055);
    border-radius: 999px;
    height: 8px;
    margin-top: 12px;
    overflow: hidden;
}

body.dashboard-body .investment-plan-meter i {
    background: linear-gradient(90deg, #30d5c8, #d4af37, #f5d27a);
    border-radius: inherit;
    box-shadow: 0 0 18px rgba(212, 175, 55, .28);
    display: block;
    height: 100%;
    width: var(--bar-value);
}

body.dashboard-body .investment-plan-ring {
    align-items: center;
    aspect-ratio: 1;
    background:
        radial-gradient(circle at center, #090909 0 58%, transparent 59%),
        conic-gradient(from -90deg, #30d5c8 0, #d4af37 var(--ring-value), rgba(255, 255, 255, .08) var(--ring-value) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    width: 56px;
}

body.dashboard-body .investment-plan-ring b {
    color: #f8e7a7;
    font-size: 12px;
    font-weight: 900;
}

/* Footer contrast fix */
.site-footer {
    background:
        radial-gradient(circle at 18% 0%, rgba(212, 175, 55, .18), transparent 34%),
        linear-gradient(90deg, rgba(6, 6, 6, .98), rgba(26, 24, 14, .96) 48%, rgba(5, 5, 5, .99)),
        #050505 !important;
    color: #f5f0df;
}

.site-footer .footer-brand p,
.site-footer .footer-bottom,
.site-footer .footer-bottom span {
    color: rgba(255, 255, 255, .76) !important;
}

.site-footer .footer-links a,
.site-footer .footer-newsletter input {
    color: rgba(255, 255, 255, .86) !important;
}

.site-footer .footer-links a:hover {
    color: #f8e7a7 !important;
}

.site-footer h2,
.site-footer .footer-links h2,
.site-footer .footer-newsletter label {
    color: #f5d27a !important;
}

.site-footer .footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, .62) !important;
}

/* Admin support inbox */
.support-message-list {
    display: grid;
    gap: 18px;
}

.support-message-card {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    padding: 18px;
}

.support-message-head {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.support-message-head h3 {
    color: #f3e7c2;
    font-size: 20px;
    margin: 10px 0 4px;
}

.support-message-head p,
.support-message-head time,
.support-message-body,
.support-reply-box p,
.support-reply-box small {
    color: rgba(255, 255, 255, .72);
}

.support-message-body {
    background: rgba(0, 0, 0, .18);
    border-radius: 14px;
    line-height: 1.65;
    margin: 16px 0;
    padding: 14px;
}

.support-reply-box {
    background: rgba(48, 213, 200, .06);
    border: 1px solid rgba(48, 213, 200, .14);
    border-radius: 14px;
    margin-bottom: 16px;
    padding: 14px;
}

.support-reply-box strong {
    color: #f8e7a7;
}

.support-reply-form textarea {
    min-height: 96px;
    resize: vertical;
}

.status-pill.new {
    background: rgba(245, 210, 122, .12);
    color: #f8e7a7;
}

.status-pill.replied {
    background: rgba(48, 213, 200, .12);
    color: #9ff5ec;
}

/* Admin movie management polish */
.admin-movies-body .admin-movies-grid {
    align-items: start;
    gap: 24px;
    grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
}

.admin-movies-body .admin-movie-form-panel,
.admin-movies-body .admin-movie-table-panel {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .045), transparent 34%),
        rgba(12, 17, 28, .88) !important;
    border: 1px solid rgba(255, 255, 255, .07) !important;
    border-radius: 18px !important;
}

.admin-movies-body .panel-heading {
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
}

.admin-movies-body .panel-heading h2 {
    color: #f3e7c2;
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: clamp(15px, 1.05vw, 20px);
    font-weight: 700;
    line-height: 1.22;
    margin: 0;
}

.admin-movies-body .panel-heading span,
.admin-movies-body .file-hint {
    color: rgba(255, 255, 255, .62);
}

.admin-movies-body .admin-form {
    gap: 14px;
}

.admin-movies-body .admin-form label {
    color: rgba(245, 210, 122, .86);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.admin-movies-body .admin-form input,
.admin-movies-body .admin-form textarea {
    background: rgba(0, 0, 0, .22) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 14px !important;
    color: #f8fafc !important;
    min-height: 48px;
}

.admin-movies-body .admin-form input:focus,
.admin-movies-body .admin-form textarea:focus {
    border-color: rgba(245, 210, 122, .42) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .10) !important;
}

.admin-movies-body .admin-form input[type="file"] {
    color: rgba(255, 255, 255, .72) !important;
    padding: 12px;
}

.admin-movies-body .admin-form input[type="file"]::file-selector-button {
    background: rgba(245, 210, 122, .12);
    border: 1px solid rgba(245, 210, 122, .22);
    border-radius: 10px;
    color: #f8e7a7;
    cursor: pointer;
    font-weight: 800;
    margin-right: 12px;
    padding: 8px 12px;
}

.admin-movies-body .admin-movie-form-panel .admin-button {
    justify-content: center;
    margin-top: 4px;
    width: 100%;
}

.admin-movies-body .admin-table-wrap {
    background: rgba(0, 0, 0, .16) !important;
    border: 1px solid rgba(255, 255, 255, .055) !important;
    border-radius: 16px !important;
}

.admin-movies-body .admin-table {
    min-width: 0;
    table-layout: fixed;
    width: 100%;
}

.admin-movies-body .admin-table th:nth-child(1),
.admin-movies-body .admin-table td:nth-child(1) {
    width: 50%;
}

.admin-movies-body .admin-table th:nth-child(2),
.admin-movies-body .admin-table td:nth-child(2) {
    width: 14%;
}

.admin-movies-body .admin-table th:nth-child(3),
.admin-movies-body .admin-table td:nth-child(3) {
    width: 8%;
}

.admin-movies-body .admin-table th:nth-child(4),
.admin-movies-body .admin-table td:nth-child(4) {
    width: 14%;
}

.admin-movies-body .admin-table th:nth-child(5),
.admin-movies-body .admin-table td:nth-child(5) {
    width: 14%;
}

.admin-movies-body .admin-table th {
    color: rgba(216, 200, 154, .78) !important;
}

.admin-movies-body .admin-table td {
    border-bottom-color: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .84);
}

.admin-movies-body .movie-row {
    min-width: 0;
}

.admin-movies-body .movie-row img,
.admin-movies-body .movie-thumb-placeholder {
    border: 1px solid rgba(245, 210, 122, .12);
    border-radius: 12px;
    height: 72px;
    width: 54px;
}

.admin-movies-body .movie-row strong {
    color: #f8fafc;
    font-size: 15px;
}

.admin-movies-body .movie-row small {
    color: rgba(255, 255, 255, .56);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-width: 360px;
    overflow: hidden;
}

.admin-movies-body .table-actions {
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 108px;
}

.admin-movies-body .admin-button.small {
    min-height: 36px;
    padding-inline: 12px;
}

@media (max-width: 1120px) {
    .admin-movies-body .admin-movies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .admin-movies-body .panel-heading {
        flex-direction: column;
    }

    .admin-movies-body .admin-table {
        min-width: 760px;
    }
}

@media (max-width: 720px) {
    .support-message-head {
        flex-direction: column;
    }
}

/* Admin movies: category filter above table */
.admin-movies-body .admin-movie-category-filter {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.admin-movies-body .admin-movie-category-filter label {
    color: rgba(148, 163, 184, 0.95);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-movies-body .admin-movie-category-filter select {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #e5e7eb;
    min-height: 40px;
    min-width: 200px;
    padding: 0 12px;
}

/* Final admin movies table fit override */
.admin-movies-body .admin-movie-table-panel .admin-table {
    min-width: 0 !important;
    table-layout: fixed !important;
    width: 100% !important;
}

.admin-movies-body .admin-movie-table-panel .admin-table th,
.admin-movies-body .admin-movie-table-panel .admin-table td {
    padding-inline: 10px;
}

.admin-movies-body .admin-movie-table-panel .admin-table th:nth-child(1),
.admin-movies-body .admin-movie-table-panel .admin-table td:nth-child(1) {
    width: 48% !important;
}

.admin-movies-body .admin-movie-table-panel .admin-table th:nth-child(2),
.admin-movies-body .admin-movie-table-panel .admin-table td:nth-child(2) {
    width: 13% !important;
}

.admin-movies-body .admin-movie-table-panel .admin-table th:nth-child(3),
.admin-movies-body .admin-movie-table-panel .admin-table td:nth-child(3) {
    width: 7% !important;
}

.admin-movies-body .admin-movie-table-panel .admin-table th:nth-child(4),
.admin-movies-body .admin-movie-table-panel .admin-table td:nth-child(4) {
    width: 13% !important;
}

.admin-movies-body .admin-movie-table-panel .admin-table th:nth-child(5),
.admin-movies-body .admin-movie-table-panel .admin-table td:nth-child(5) {
    width: 19% !important;
}

.admin-movies-body .admin-movie-table-panel .movie-row {
    gap: 10px;
    min-width: 0 !important;
}

.admin-movies-body .admin-movie-table-panel .movie-row > div {
    min-width: 0;
}

.admin-movies-body .admin-movie-table-panel .movie-row strong {
    overflow-wrap: anywhere;
}

.admin-movies-body .admin-movie-table-panel .admin-actions-cell {
    min-width: 0;
    text-align: right;
    vertical-align: middle;
}

.admin-movies-body .admin-movie-table-panel .admin-action-group--icons {
    justify-content: flex-end;
    min-width: 0;
}

/* Clip login gate */
.locked-clip-poster {
    background: #050505;
    border-radius: inherit;
    display: block;
    height: 100%;
    min-height: 280px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}

.locked-clip-poster img {
    filter: brightness(.58) saturate(.92);
    height: 100%;
    object-fit: cover;
    transition: filter .25s ease, transform .25s ease;
    width: 100%;
}

.locked-clip-overlay {
    align-items: flex-end;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .54)),
        radial-gradient(circle at 84% 48%, rgba(212, 175, 55, .18), transparent 34%);
    display: flex;
    inset: 0;
    justify-content: flex-end;
    padding: 24px;
    position: absolute;
    text-align: right;
    transition: background .25s ease;
}

.locked-clip-overlay span,
.clip-login-card span {
    backdrop-filter: blur(12px);
    background: rgba(5, 7, 9, .58);
    border: 1px solid rgba(245, 210, 122, .28);
    border-radius: 999px;
    color: #f7df8e;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    padding: 9px 12px;
    text-transform: uppercase;
}

.locked-clip-overlay strong {
    color: #ffffff;
    font-size: clamp(22px, 3vw, 34px);
}

.locked-clip-poster.compact {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    min-height: 0;
}

.locked-clip-poster.compact .locked-clip-overlay {
    padding: 18px;
}

.locked-clip-poster:hover img {
    filter: brightness(.72) saturate(1.03);
    transform: scale(1.035);
}

.locked-clip-poster:hover .locked-clip-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .44)),
        radial-gradient(circle at 84% 48%, rgba(212, 175, 55, .25), transparent 34%);
}

.clip-login-card {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(245, 210, 122, .18);
    border-radius: 18px;
    padding: 22px;
}

.clip-login-card p {
    color: rgba(255, 255, 255, .72);
    line-height: 1.6;
}

@media (max-width: 560px) {
    body.dashboard-body .investment-plan-item {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    body.dashboard-body .investment-plan-ring {
        grid-column: 1 / -1;
        justify-self: start;
        width: 58px;
    }
}

/* Final cascade reinforcement for dashboard investment/transaction feature panels */
body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) {
    background:
        radial-gradient(circle at 18% 0%, rgba(245, 210, 122, .12), transparent 34%),
        linear-gradient(145deg, rgba(20, 20, 20, .78), rgba(12, 12, 12, .92)) !important;
    border-radius: 28px !important;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, .45),
        0 0 38px rgba(212, 175, 55, .055),
        inset 0 1px 0 rgba(255, 255, 255, .04) !important;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)) !important;
    border-radius: 18px !important;
    padding-left: 58px !important;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item strong {
    color: #f3e7c2 !important;
    font-size: clamp(17px, 1.25vw, 22px) !important;
}

/* Premium dashboard investment + transaction panels */
body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) {
    background:
        radial-gradient(circle at 18% 0%, rgba(245, 210, 122, .12), transparent 34%),
        linear-gradient(145deg, rgba(20, 20, 20, .78), rgba(12, 12, 12, .92)) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .06) !important;
    border-radius: 28px !important;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, .45),
        0 0 38px rgba(212, 175, 55, .055),
        inset 0 1px 0 rgba(255, 255, 255, .04) !important;
    min-height: 360px;
    overflow: hidden;
    padding: clamp(22px, 2.3vw, 30px) !important;
    position: relative;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2)::before {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .12), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(212, 175, 55, .16), transparent 28%);
    content: "";
    inset: 0;
    opacity: .72;
    pointer-events: none;
    position: absolute;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2)::after {
    background: linear-gradient(90deg, transparent, rgba(245, 210, 122, .34), transparent);
    content: "";
    height: 1px;
    left: 28px;
    opacity: .58;
    position: absolute;
    right: 28px;
    top: 76px;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .dashboard-panel-heading {
    align-items: start;
    margin-bottom: 22px;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .dashboard-panel-heading h2 {
    color: #f3e7c2;
    font-size: clamp(25px, 2.1vw, 34px);
    line-height: 1;
    text-shadow: 0 14px 40px rgba(0, 0, 0, .64);
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .dashboard-panel-heading span,
body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .dashboard-panel-heading a {
    color: #f5d27a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .dashboard-list,
body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-feed {
    gap: 14px;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .dashboard-empty {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    color: rgba(255, 255, 255, .68);
    display: flex;
    min-height: 108px;
    padding: 18px;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .24);
    min-height: 86px;
    overflow: hidden;
    padding: 16px 16px 16px 58px;
    position: relative;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item::before {
    align-items: center;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .38), transparent 24%),
        linear-gradient(135deg, rgba(212, 175, 55, .95), rgba(245, 210, 122, .72));
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(212, 175, 55, .18);
    color: #111;
    content: "$";
    display: flex;
    font-size: 16px;
    font-weight: 950;
    height: 34px;
    justify-content: center;
    left: 14px;
    position: absolute;
    top: 16px;
    width: 34px;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(2) .activity-item::before {
    content: "↕";
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item::after {
    background: linear-gradient(90deg, rgba(212, 175, 55, .7), rgba(245, 210, 122, .18), transparent);
    border-radius: 999px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 58px;
    opacity: .74;
    position: absolute;
    right: 18px;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:first-child .activity-item::after {
    animation: premiumProgressSheen 3.8s ease-in-out infinite;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item:hover {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .028));
    border-color: rgba(245, 210, 122, .18);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, .32),
        0 0 22px rgba(212, 175, 55, .08);
    transform: translateY(-2px);
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item span {
    align-items: center;
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(245, 210, 122, .18);
    border-radius: 999px;
    color: #f5d27a;
    display: inline-flex;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    margin-bottom: 8px;
    padding: 5px 9px;
    width: fit-content;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item strong {
    color: #f3e7c2;
    font-size: clamp(17px, 1.25vw, 22px);
    line-height: 1.25;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item small {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(2) .activity-item {
    padding-left: 64px;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(2) .activity-item small {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(2) .activity-item:has(small) {
    border-left: 3px solid rgba(245, 210, 122, .42);
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(2) .activity-item:has(small) span {
    background: rgba(245, 210, 122, .11);
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(2) .activity-item:has(small) small {
    color: rgba(255, 255, 255, .64);
}

body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(2) .activity-item:has(small)::after {
    opacity: .45;
}

@keyframes premiumProgressSheen {
    0%, 100% {
        opacity: .46;
        transform: scaleX(.52);
        transform-origin: left;
    }
    50% {
        opacity: .9;
        transform: scaleX(1);
        transform-origin: left;
    }
}

@media (max-width: 768px) {
    body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) {
        border-radius: 22px !important;
        min-height: 0;
        padding: 20px !important;
    }

    body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2)::after {
        left: 20px;
        right: 20px;
        top: 68px;
    }

    body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item {
        min-height: 76px;
        padding: 14px 14px 14px 54px;
    }

    body.dashboard-body .dashboard-stats + .dashboard-grid > .dashboard-panel:nth-child(-n + 2) .activity-item::before {
        height: 30px;
        left: 12px;
        top: 14px;
        width: 30px;
    }
}

.dashboard-main {
    margin: 0 auto;
    max-width: 1180px;
    min-height: 100vh;
    padding: 122px 24px 58px;
}

.dashboard-hero {
    align-items: stretch;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) 360px;
    margin-bottom: 22px;
}

.dashboard-hero h1 {
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    line-height: 1.15;
    margin: 0 0 14px;
    max-width: none;
}

.dashboard-hero p {
    color: #c7c2b8;
    font-size: 17px;
    line-height: 1.7;
    max-width: 680px;
}

.glass-dashboard-card {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.profile-card {
    align-items: center;
    display: flex;
    gap: 16px;
    padding: 20px;
}

.profile-avatar {
    align-items: center;
    background: linear-gradient(135deg, #f7df8e, #b98719);
    border-radius: 50%;
    color: #080808;
    display: flex;
    flex: 0 0 auto;
    font-size: 34px;
    font-weight: 900;
    height: 82px;
    justify-content: center;
    width: 82px;
}

.profile-card h2 {
    color: #ffffff;
    margin: 0 0 6px;
}

.profile-card p,
.profile-card span {
    color: #c7c2b8;
    display: block;
    margin: 0 0 6px;
}

.profile-card em {
    background: rgba(212, 175, 55, .16);
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 999px;
    color: #f7df8e;
    display: inline-flex;
    font-style: normal;
    font-weight: 900;
    padding: 7px 10px;
}

.dashboard-stats {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 22px;
}

.stat-card {
    padding: 20px;
}

.stat-card span {
    color: #d4af37;
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.stat-card strong {
    color: #ffffff;
    font-size: 34px;
}

.dashboard-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    margin-bottom: 22px;
}

.dashboard-panel {
    margin-bottom: 22px;
    padding: 22px;
}

.dashboard-panel-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.dashboard-panel-heading h2 {
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 26px;
    margin: 0;
}

.dashboard-panel-heading span {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 800;
}

.dashboard-list,
.activity-feed {
    display: grid;
    gap: 12px;
}

.dashboard-review-item,
.activity-item {
    background: rgba(0, 0, 0, .26);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: inherit;
    display: grid;
    gap: 12px;
    padding: 12px;
}

.dashboard-review-item {
    align-items: center;
    grid-template-columns: 54px 1fr;
}

.dashboard-review-item img,
.dashboard-thumb {
    aspect-ratio: 2 / 3;
    background: rgba(255, 255, 255, .1);
    border-radius: 7px;
    display: block;
    object-fit: cover;
    width: 54px;
}

.dashboard-review-item strong,
.activity-item strong,
.dashboard-movie-card strong,
.dashboard-clip-card a {
    color: #ffffff;
}

.dashboard-review-item p {
    color: #c7c2b8;
    line-height: 1.4;
    margin: 4px 0;
}

.dashboard-review-item small,
.activity-item small {
    color: #9ca3af;
}

.activity-item span,
.dashboard-movie-card span,
.dashboard-clip-card span {
    color: #d4af37;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.payqora-invoice {
    display: grid;
    gap: 12px;
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(245, 210, 122, .16);
}

.payqora-table-wrap {
    overflow-x: auto;
}

.payqora-detail-table {
    border-collapse: collapse;
    min-width: 100%;
    table-layout: fixed;
}

.payqora-detail-table th,
.payqora-detail-table td {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 10px 0;
    text-align: left;
    vertical-align: top;
}

.payqora-detail-table th {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    width: 130px;
}

.payqora-detail-table td {
    color: #f3e7c2;
    font-size: 13px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.payqora-detail-table code {
    color: #d8c89a;
    font-size: 12px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    white-space: normal;
}

.payqora-countdown {
    color: #f5d27a;
}

.payqora-countdown.expired {
    color: #fecaca;
}

.wallet-invoices-panel {
    grid-column: 1 / -1;
}

.invoice-table-wrap {
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-color: rgba(245, 210, 122, .45) rgba(255, 255, 255, .06);
    scrollbar-width: thin;
}

.invoice-table-wrap::-webkit-scrollbar {
    height: 8px;
}

.invoice-table-wrap::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .06);
    border-radius: 999px;
}

.invoice-table-wrap::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(212, 175, 55, .55), rgba(245, 210, 122, .75));
    border-radius: 999px;
}

.invoice-list-table {
    border-collapse: collapse;
    min-width: 1020px;
    table-layout: fixed;
    width: 100%;
}

.invoice-list-table th,
.invoice-list-table td {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 14px 12px;
    text-align: left;
    vertical-align: top;
}

.invoice-list-table th {
    color: rgba(245, 210, 122, .74);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.invoice-list-table td {
    color: #f3e7c2;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.invoice-list-table strong,
.invoice-list-table small {
    display: block;
}

.invoice-list-table small {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 700;
    margin-top: 4px;
}

.invoice-list-table code {
    color: #d8c89a;
    display: -webkit-box;
    font-size: 11px;
    line-height: 1.45;
    max-width: 170px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow-wrap: anywhere;
    overflow: hidden;
}

.invoice-list-table th:nth-child(1),
.invoice-list-table td:nth-child(1) {
    width: 170px;
}

.invoice-list-table th:nth-child(2),
.invoice-list-table td:nth-child(2) {
    width: 104px;
}

.invoice-list-table th:nth-child(3),
.invoice-list-table td:nth-child(3),
.invoice-list-table th:nth-child(4),
.invoice-list-table td:nth-child(4) {
    width: 74px;
}

.invoice-list-table th:nth-child(5),
.invoice-list-table td:nth-child(5) {
    width: 190px;
}

.invoice-list-table th:nth-child(6),
.invoice-list-table td:nth-child(6) {
    width: 116px;
}

.invoice-list-table th:nth-child(7),
.invoice-list-table td:nth-child(7) {
    width: 120px;
}

.invoice-list-table th:nth-child(8),
.invoice-list-table td:nth-child(8) {
    width: 94px;
}

.invoice-list-table th:nth-child(9),
.invoice-list-table td:nth-child(9) {
    width: 66px;
    text-align: center;
}

.invoice-list-table th:nth-child(10),
.invoice-list-table td:nth-child(10) {
    width: 96px;
}

.invoice-status {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    display: inline-flex;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .04em;
    padding: 6px 10px;
    text-transform: uppercase;
}

.invoice-status.pending {
    background: rgba(245, 210, 122, .1);
    border-color: rgba(245, 210, 122, .22);
    color: #f5d27a;
}

.invoice-status.completed {
    background: rgba(34, 197, 94, .12);
    border-color: rgba(34, 197, 94, .24);
    color: #86efac;
}

.invoice-status.failed,
.invoice-status.rejected {
    background: rgba(248, 113, 113, .12);
    border-color: rgba(248, 113, 113, .24);
    color: #fecaca;
}

.invoice-qr {
    background: #ffffff;
    border: 1px solid rgba(245, 210, 122, .22);
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    padding: 4px;
    width: 44px;
}

.invoice-actions {
    align-items: stretch;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 6px;
}

.invoice-actions .payqora-refresh {
    min-width: 74px;
    padding: 7px 10px;
    white-space: nowrap;
}

.payqora-qr {
    width: 128px;
    max-width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(245, 210, 122, .22);
    background: #ffffff;
    padding: 8px;
}

.payqora-refresh {
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    border: 1px solid rgba(245, 210, 122, .26);
    border-radius: 999px;
    color: #f5d27a;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    padding: 10px 16px;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.payqora-refresh:hover {
    border-color: rgba(245, 210, 122, .55);
    box-shadow: 0 12px 28px rgba(212, 175, 55, .16);
    transform: translateY(-1px);
}

.payqora-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payqora-actions form {
    margin: 0;
}

.payqora-cancel {
    background: rgba(127, 29, 29, .22);
    color: #fecaca;
    font: inherit;
}

.payqora-cancel:hover {
    border-color: rgba(248, 113, 113, .5);
    box-shadow: 0 12px 28px rgba(127, 29, 29, .22);
}

.admin-field-help {
    color: rgba(255, 255, 255, .58);
    display: block;
    font-size: 12px;
    line-height: 1.5;
    margin-top: -6px;
}

.payqora-settings-panel {
    box-sizing: border-box;
    margin-inline: auto;
    max-width: min(760px, 100%);
    width: 100%;
}

.admin-payqora-page .admin-topbar {
    flex-wrap: wrap;
    gap: 14px;
}

.admin-payqora-page .admin-topbar .admin-button {
    flex-shrink: 0;
}

/* Admin reviews queue (moderation) */
.admin-reviews-page .admin-reviews-panel {
    align-self: stretch;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

.admin-reviews-panel-heading {
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: space-between;
}

.admin-reviews-panel-heading h2 {
    margin: 0;
    min-width: 0;
}

.admin-reviews-heading-actions {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
}

.admin-reviews-heading-actions .admin-button {
    flex-shrink: 0;
    white-space: normal;
}

.admin-reviews-table {
    min-width: 720px;
    table-layout: auto;
}

.admin-reviews-actions-cell {
    min-width: 180px;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
}

.admin-reviews-row-actions {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: flex-end;
}

.admin-reviews-pagination {
    margin-top: 18px;
}

@media (max-width: 640px) {
    .admin-reviews-row-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .admin-reviews-row-actions .admin-button {
        flex: 1 1 auto;
        justify-content: center;
        min-width: 120px;
    }
}

/* Admin support: messages + newsletter */
.admin-support-page .saas-stat-grid {
    margin-bottom: 8px;
}

.admin-support-page .support-message-list {
    gap: 20px;
}

.admin-support-page .support-message-card {
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(8, 12, 18, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.admin-support-page .support-message-head h3 {
    word-break: break-word;
}

.admin-support-page .support-message-head time {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-support-page .support-reply-form {
    gap: 12px;
}

.admin-support-page .support-reply-form .admin-form-actions {
    flex-wrap: wrap;
}

.admin-support-page .admin-table-wrap .admin-table {
    min-width: 560px;
}

.dashboard-movie-rail {
    display: grid;
    gap: 16px;
    grid-auto-columns: minmax(180px, 220px);
    grid-auto-flow: column;
    overflow-x: auto;
    padding-bottom: 10px;
}

.dashboard-movie-card {
    color: inherit;
    display: grid;
    gap: 10px;
}

.dashboard-movie-card div {
    aspect-ratio: 2 / 3;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    overflow: hidden;
}

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

.dashboard-clip-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-clip-card {
    background: rgba(0, 0, 0, .26);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    overflow: hidden;
    padding-bottom: 12px;
}

.dashboard-clip-card video {
    aspect-ratio: 16 / 10;
    background: #000000;
    width: 100%;
}

.dashboard-clip-card a,
.dashboard-clip-card span {
    margin: 0 12px;
}

.plan-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 22px;
}

.plan-card {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.plan-card span {
    color: #d4af37;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-card strong {
    color: #ffffff;
    font-size: 34px;
}

.plan-card p,
.plan-card small {
    color: #c7c2b8;
}

.plan-card .plan-card-note {
    color: rgba(230, 200, 120, 0.92);
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

.plan-confirm-modal {
    align-items: center;
    display: flex;
    font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    inset: 0;
    justify-content: center;
    padding: 20px;
    position: fixed;
    z-index: 4000;
}

.plan-confirm-modal[hidden] {
    display: none !important;
}

body.plan-confirm-open {
    overflow: hidden;
}

.plan-confirm-modal__backdrop {
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    inset: 0;
    position: absolute;
}

.plan-confirm-modal__dialog {
    border-radius: 16px !important;
    display: grid;
    gap: 12px;
    margin: 0;
    max-width: min(400px, 100%);
    overflow: visible !important;
    padding: 20px 20px 18px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.plan-confirm-modal__dialog .gold-kicker {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.plan-confirm-modal__dialog h2 {
    color: #f3e7c2;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.22;
    margin: 0;
    max-width: none;
}

.plan-confirm-modal__message {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.plan-confirm-modal__message strong {
    color: #f5d27a;
    font-weight: 700;
}

.plan-confirm-modal__field {
    display: grid;
    gap: 8px;
    margin-top: 2px;
}

.plan-confirm-modal__label {
    color: rgba(243, 231, 194, 0.88);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin: 0;
}

.plan-confirm-modal__input {
    appearance: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(7, 10, 16, 0.82);
    border: 1px solid rgba(245, 210, 122, 0.18);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
    color: #f3e7c2;
    font: inherit;
    font-size: 14px;
    min-height: 44px;
    outline: none;
    padding: 0 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.plan-confirm-modal__input::placeholder {
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
}

.plan-confirm-modal__input:focus {
    border-color: rgba(245, 210, 122, 0.48);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan-confirm-modal__hint {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.plan-confirm-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 8px;
}

.plan-confirm-modal__cancel {
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    min-height: 42px;
    padding: 10px 16px;
}

.plan-confirm-modal__confirm {
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    min-height: 42px;
    min-width: 0;
    padding: 10px 18px;
}

.dashboard-empty {
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #c7c2b8;
    margin: 0;
    padding: 16px;
}

@media (max-width: 980px) {
    .dashboard-hero,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-clip-grid {
        grid-template-columns: 1fr;
    }

    .plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .dashboard-main {
        padding: 154px 18px 42px;
    }

    .dashboard-hero h1 {
        font-size: clamp(20px, 5vw, 26px);
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .profile-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .plan-grid {
        grid-template-columns: 1fr;
    }
}

.home-body {
    background: #050505;
    color: #f7f2e8;
    min-height: 100vh;
    position: relative;
}

.home-body::before {
    background: url('../images/movie-showcase-bg.png?v=2') center top / cover fixed no-repeat;
    content: "";
    inset: 0;
    opacity: .72;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.home-body::after {
    background:
        radial-gradient(circle at 50% 18%, rgba(212, 175, 55, .18), transparent 26%),
        linear-gradient(180deg, rgba(5, 5, 5, .48), rgba(5, 5, 5, .9) 62%, #050505 100%),
        linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .22), rgba(0, 0, 0, .76));
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.home-body .site-header {
    backdrop-filter: blur(18px);
    background: rgba(5, 5, 5, .68);
}

.home-body .home-main,
.home-body .detail-main,
.home-body .dashboard-main,
.home-body .static-main,
.home-body .site-footer {
    position: relative;
    z-index: 1;
}

.home-body .brand {
    color: #f9e8a8;
}

.home-body .site-nav a {
    color: #f7f2e8;
}

.home-body .site-nav a:hover {
    color: #d4af37;
}

.home-main {
    background: linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .86) 74%, #050505 100%);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.lux-hero {
    height: min(760px, 92vh);
    min-height: 620px;
    position: relative;
}

.lux-hero::before {
    background: url('../images/movie-showcase-bg.png?v=2') center top / cover no-repeat;
    content: "";
    inset: 0;
    position: absolute;
    z-index: 0;
}

.hero-slide {
    inset: 0;
    opacity: 0;
    position: absolute;
    transform: scale(1.02);
    transition: opacity 900ms ease, transform 1200ms ease;
    z-index: 1;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide video,
.hero-slide img,
.hero-fallback {
    height: 100%;
    object-fit: cover;
    opacity: .52;
    width: 100%;
}

.hero-fallback {
    background: transparent;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .9) 0%, rgba(5, 5, 5, .58) 42%, rgba(5, 5, 5, .28) 100%),
        linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0) 34%);
    inset: 0;
    position: absolute;
    z-index: 1;
}

.hero-content {
    bottom: 12%;
    left: max(24px, calc((100vw - 1180px) / 2));
    max-width: 650px;
    position: absolute;
    z-index: 2;
}

.gold-kicker {
    color: #d4af37;
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-content h1 {
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 64px;
    line-height: 1;
    margin: 0 0 18px;
}

.hero-content p {
    color: #d6d3ca;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.gold-button {
    background: linear-gradient(135deg, #f7df8e, #b98719);
    border-radius: 8px;
    color: #090909;
    display: inline-flex;
    font-weight: 900;
    padding: 13px 18px;
}

.hero-dots {
    bottom: 38px;
    display: flex;
    gap: 10px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-dots button {
    background: rgba(255, 255, 255, .28);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    cursor: pointer;
    height: 10px;
    padding: 0;
    transition: background 240ms ease, width 240ms ease;
    width: 10px;
}

.hero-dots button.is-active {
    background: #d4af37;
    width: 34px;
}

.home-section {
    margin: 0 auto;
    max-width: 1180px;
    padding: 58px 24px;
}

.section-heading {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

.section-heading h2 {
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 34px;
    margin: 0;
}

.horizontal-rail {
    display: grid;
    gap: 18px;
    grid-auto-columns: minmax(220px, 260px);
    grid-auto-flow: column;
    overflow-x: auto;
    padding: 2px 0 18px;
    scroll-snap-type: x mandatory;
}

.horizontal-rail::-webkit-scrollbar {
    height: 8px;
}

.horizontal-rail::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, .55);
    border-radius: 999px;
}

.glass-movie-card,
.rated-card,
.clip-card {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.glass-movie-card {
    min-height: 420px;
    padding: 14px;
    scroll-snap-align: start;
    transition: transform 260ms ease, border-color 260ms ease;
}

.glass-movie-card:hover {
    border-color: rgba(212, 175, 55, .65);
    transform: translateY(-6px);
}

.poster-frame {
    aspect-ratio: 2 / 3;
    background:
        linear-gradient(145deg, rgba(212, 175, 55, .2), rgba(255, 255, 255, .05)),
        #111111;
    border-radius: 7px;
    margin-bottom: 14px;
    overflow: hidden;
}

.poster-frame img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.glass-movie-card span,
.rated-card span,
.clip-card span {
    color: #d4af37;
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.glass-movie-card h3,
.rated-card h3,
.clip-card h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 8px;
}

.glass-movie-card p,
.rated-card p {
    color: #c7c2b8;
    line-height: 1.5;
    margin: 0;
}

.rated-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rated-card {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: 82px 1fr auto;
    min-height: 132px;
    padding: 14px;
}

.rated-card img {
    aspect-ratio: 2 / 3;
    border-radius: 7px;
    height: 100%;
    object-fit: cover;
    width: 82px;
}

.rated-card strong {
    align-items: center;
    background: rgba(212, 175, 55, .16);
    border: 1px solid rgba(212, 175, 55, .42);
    border-radius: 999px;
    color: #f7df8e;
    display: inline-flex;
    font-size: 14px;
    height: 48px;
    justify-content: center;
    min-width: 48px;
}

.clip-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clip-card {
    overflow: hidden;
}

.clip-card video {
    aspect-ratio: 16 / 10;
    background: #111111;
    display: block;
    object-fit: cover;
    width: 100%;
}

.clip-card div {
    padding: 14px;
}

.lux-empty {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #c7c2b8;
    padding: 18px;
}

.static-main {
    margin: 0 auto;
    max-width: 1180px;
    padding: 150px 24px 72px;
}

.static-hero {
    max-width: 760px;
    padding: 54px 0 34px;
}

.static-hero h1,
.split-band h2 {
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 52px;
    line-height: 1.05;
    margin: 0 0 18px;
}

.static-hero p,
.split-band p,
.static-card p,
.contact-panel p {
    color: #d6d3ca;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.static-section {
    margin: 34px 0;
}

.static-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.static-card,
.split-band,
.contact-panel,
.contact-list article,
.contact-form-shell {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.static-card {
    min-height: 250px;
    padding: 26px;
}

.static-card span,
.contact-list span {
    color: #d4af37;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.static-card h2,
.contact-panel h2,
.contact-form-shell h2 {
    color: #ffffff;
    font-size: 24px;
    margin: 0 0 12px;
}

.split-band {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    padding: 34px;
}

.split-band h2 {
    font-size: 38px;
}

.contact-layout {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
}

.contact-panel {
    padding: 30px;
}

.contact-panel .gold-button {
    margin-top: 22px;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-list article {
    padding: 22px;
}

.contact-list a,
.contact-list strong {
    color: #ffffff;
    display: block;
    font-size: 18px;
}

.contact-form-shell {
    padding: 30px;
}

.contact-form {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
    color: #f7f2e8;
    display: grid;
    font-weight: 800;
    gap: 8px;
}

.contact-form label:nth-child(3),
.contact-form label:nth-child(4) {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: #ffffff;
    font: inherit;
    padding: 13px 14px;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    border: 0;
    cursor: pointer;
    justify-self: start;
}

.site-footer {
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, .15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, .08), transparent 50%),
        #000000;
    box-shadow: inset 0 28px 80px rgba(212, 175, 55, .035), inset 0 1px 0 rgba(255, 255, 255, .06);
    color: #ffffff;
    overflow: hidden;
    padding: 58px 24px 24px;
    position: relative;
}

.site-footer::before {
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 48px));
}

.site-footer::after {
    animation: moveFooterGlow 10s ease-in-out infinite alternate;
    background: radial-gradient(circle, rgba(212, 175, 55, .2), transparent 68%);
    content: "";
    filter: blur(80px);
    height: 300px;
    left: 8%;
    opacity: .72;
    position: absolute;
    top: 18%;
    width: 300px;
}

.footer-inner {
    align-items: start;
    animation: footerFadeIn 700ms ease both;
    display: grid;
    gap: clamp(32px, 4.5vw, 56px);
    grid-template-columns: minmax(240px, 2.1fr) minmax(140px, 1fr) minmax(150px, 1fr) minmax(220px, 1.05fr);
    margin: 0 auto;
    max-width: 1220px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    align-items: center;
    background: linear-gradient(90deg, #d4af37, #f5d27a, #c9a94d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-flex;
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: 30px;
    font-weight: 900;
    gap: 11px;
    letter-spacing: 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, .5);
}

.footer-brand p {
    color: #aaa;
    line-height: 1.7;
    margin: 16px 0 0;
    max-width: 430px;
}

.site-footer h2 {
    color: #c9a94d;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.site-footer section a {
    color: #aaa;
    display: block;
    margin: 0 0 12px;
    transition: color .3s ease, text-shadow .3s ease, transform .3s ease;
}

.site-footer section a:hover {
    color: #f5d27a;
    text-shadow: 0 0 18px rgba(212, 175, 55, .4);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    align-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 999px;
    display: inline-flex !important;
    height: 42px;
    justify-content: center;
    margin: 0 !important;
    width: 42px;
}

.footer-social a:hover {
    background: #d4af37;
    border-color: #f5d27a;
    box-shadow: 0 0 24px rgba(212, 175, 55, .44);
    color: #000000;
    transform: translateY(-3px);
}

.footer-social svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 20px;
}

.footer-newsletter {
    margin-top: 22px;
}

.footer-newsletter-column {
    align-self: start;
    max-width: 100%;
    min-width: 0;
}

.footer-newsletter-column .footer-newsletter {
    margin-top: 0;
}

.footer-newsletter label {
    color: #c9a94d;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-newsletter div {
    align-items: center;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 999px;
    display: flex;
    padding: 5px;
}

.footer-newsletter input {
    background: transparent;
    border: 0;
    color: #ffffff;
    font: inherit;
    min-width: 0;
    outline: 0;
    padding: 10px 12px;
    width: 100%;
}

.footer-newsletter input::placeholder {
    color: rgba(170, 170, 170, .82);
}

.footer-newsletter button {
    background: linear-gradient(90deg, #d4af37, #f5d27a);
    border: 0;
    border-radius: 50%;
    color: #000000;
    cursor: pointer;
    flex: 0 0 auto;
    font-size: 20px;
    height: 38px;
    line-height: 1;
    transition: box-shadow .3s ease, transform .3s ease;
    width: 38px;
}

.footer-newsletter button:hover {
    box-shadow: 0 0 10px rgba(212, 175, 55, .5);
    transform: scale(1.05);
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, .2);
    color: #888;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 40px auto 0;
    max-width: 1180px;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveFooterGlow {
    to {
        left: calc(100% - 360px);
        top: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes navLightSweep {
    to {
        transform: translateX(100%);
    }
}

@keyframes navGoldSweep {
    0% {
        opacity: .45;
        transform: translateX(-8%);
    }

    50% {
        opacity: .95;
    }

    100% {
        opacity: .45;
        transform: translateX(8%);
    }
}

@media (max-width: 900px) {
    .site-header {
        gap: 14px;
        padding: 14px 16px;
        width: 100%;
    }

    .ott-brand {
        font-size: 24px;
    }

    .brand-icon {
        height: 34px;
        width: 34px;
    }

    .live-search {
        flex: 0 0 auto;
        margin-left: auto;
        max-width: none;
        width: auto;
    }

    .search-mobile-toggle,
    .hamburger {
        align-items: center;
        display: inline-flex;
        height: 44px;
        justify-content: center;
        padding: 0;
        width: 44px;
    }

    .search-field {
        opacity: 0;
        pointer-events: none;
        position: absolute;
        right: -58px;
        top: calc(100% + 16px);
        transform: translateY(-8px);
        width: min(82vw, 380px);
        z-index: 45;
    }

    .search-field.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .live-search-results {
        left: auto;
        right: -58px;
        width: min(82vw, 380px);
    }

    .site-nav {
        align-items: stretch;
        backdrop-filter: blur(18px);
        background: rgba(5, 5, 5, .95);
        border-left: 1px solid rgba(212, 175, 55, .22);
        box-shadow: -24px 0 70px rgba(0, 0, 0, .52), 0 0 28px rgba(212, 175, 55, .12);
        flex-direction: column;
        gap: 0;
        height: 100svh;
        justify-content: flex-start;
        padding: 96px 24px 28px;
        position: fixed;
        right: 0;
        top: 0;
        transform: translateX(105%);
        transition: transform .36s ease;
        width: min(82vw, 360px);
        z-index: 32;
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .site-nav > a,
    .site-nav .inline-logout-form button {
        border-bottom: 1px solid rgba(212, 175, 55, .12);
        font-size: 16px;
        padding: 17px 0;
        width: 100%;
    }

    .site-nav > a::after {
        display: none;
    }

    .login-btn,
    .register-btn,
    .site-nav .inline-logout-form button {
        margin-top: 14px;
        padding: 13px 16px !important;
        text-align: center;
    }

    .lux-hero {
        min-height: 620px;
    }

    .hero-content {
        bottom: 10%;
        left: 24px;
        right: 24px;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .rated-grid,
    .clip-grid,
    .static-grid,
    .split-band,
    .contact-layout,
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo,
    .footer-social {
        justify-content: center;
    }

    .site-footer section a:hover {
        transform: none;
    }

    .footer-newsletter-column .footer-newsletter,
    .footer-newsletter {
        margin-left: auto;
        margin-right: auto;
        max-width: 360px;
    }

    .static-main {
        padding-top: 178px;
    }

    .static-hero h1 {
        font-size: 40px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .auth-cinema-body .auth-page {
        align-items: start;
        gap: 26px;
        grid-template-columns: 1fr;
        max-width: 560px;
        padding: 28px 18px 42px;
    }

    .auth-showcase {
        gap: 22px;
        min-height: auto;
        padding: 0;
    }

    .auth-showcase h1 {
        font-size: 38px;
        margin: 42px 0 14px;
        max-width: 520px;
    }

    .auth-showcase p {
        font-size: 16px;
        max-width: 520px;
    }

    .auth-highlights {
        margin-top: 24px;
    }

    .cinema-auth-panel {
        max-width: none;
        padding: 28px;
    }

    .live-login-body .login-shell {
        gap: 30px;
        grid-template-columns: 1fr;
        max-width: 560px;
        padding: 86px 18px 34px;
        text-align: center;
    }

    .live-login-body .back-link {
        left: 18px;
        top: 18px;
    }

    .live-login-body .hero-copy h1 {
        font-size: 40px;
    }

    .live-login-body .hero-copy p {
        font-size: 16px;
        margin-inline: auto;
    }

    .live-login-body .login-tags {
        justify-content: center;
    }

    .live-login-body .login-card {
        padding: 28px;
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 560px) {
    .lux-hero {
        min-height: 560px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .home-section {
        padding: 42px 18px;
    }

    .horizontal-rail {
        grid-auto-columns: minmax(210px, 78vw);
    }

    .rated-card {
        align-items: start;
        grid-template-columns: 72px 1fr;
    }

    .rated-card strong {
        grid-column: 2;
        height: 38px;
        min-width: 52px;
        width: fit-content;
    }

    .auth-cinema-body::before {
        background-attachment: scroll;
        background-position: center top;
        opacity: .48;
    }

    .auth-cinema-body::after {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, .54), rgba(5, 5, 5, .82) 34%, #050505 100%),
            linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .42), rgba(0, 0, 0, .76));
    }

    .auth-cinema-body .auth-page {
        gap: 18px;
        min-height: 100svh;
        padding: 14px 14px 30px;
    }

    .auth-home-link {
        font-size: 13px;
        padding: 9px 12px;
    }

    .auth-showcase {
        gap: 16px;
    }

    .auth-showcase h1 {
        font-size: 31px;
        line-height: 1.06;
        margin: 28px 0 10px;
    }

    .auth-showcase p {
        font-size: 14px;
        line-height: 1.55;
    }

    .auth-highlights {
        display: grid;
        gap: 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 18px;
    }

    .auth-highlights span {
        border-radius: 8px;
        font-size: 10px;
        line-height: 1.25;
        padding: 8px 7px;
        text-align: center;
    }

    .cinema-auth-panel {
        border-radius: 8px;
        padding: 22px 18px;
    }

    .auth-panel-heading {
        margin-bottom: 18px;
    }

    .auth-panel-heading h2 {
        font-size: 26px;
    }

    .auth-panel-heading p {
        font-size: 14px;
    }

    .cinema-auth-panel form {
        gap: 10px;
    }

    .cinema-auth-panel label {
        font-size: 12px;
    }

    .cinema-auth-panel input {
        min-height: 46px;
        padding: 11px 12px;
    }

    .cinema-auth-panel button {
        min-height: 46px;
        width: 100%;
    }

    .cinema-auth-panel .auth-link {
        font-size: 14px;
        text-align: center;
    }

    .live-login-body .poster-bg {
        background-attachment: scroll;
        background-position: center top;
        filter: none;
        opacity: .72;
    }

    .live-login-body .login-shell {
        padding-inline: 14px;
    }

    .live-login-body .hero-copy h1 {
        font-size: 32px;
    }

    .live-login-body .login-tags {
        display: grid;
        grid-template-columns: 1fr;
    }

    .live-login-body .login-tags span {
        border-radius: 12px;
        font-size: 11px;
        text-align: center;
    }

    .live-login-body .login-card {
        border-radius: 16px;
        padding: 22px 18px;
    }

    .live-login-body .card-heading h2 {
        font-size: 26px;
    }
}

@media (max-width: 380px) {
    .auth-showcase h1 {
        font-size: 28px;
    }

    .auth-highlights {
        grid-template-columns: 1fr;
    }
}

.detail-main {
    background: linear-gradient(180deg, rgba(5, 5, 5, .22), #050505 72%);
    min-height: 100vh;
}

.detail-hero {
    min-height: 760px;
    padding-top: 76px;
    position: relative;
}

.detail-player {
    background: #000000;
    height: 62vh;
    min-height: 420px;
    isolation: isolate;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
}

.detail-player video,
.detail-player img,
.detail-player-fallback {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.detail-player-fallback {
    background:
        linear-gradient(135deg, rgba(212, 175, 55, .2), transparent 32%),
        radial-gradient(circle at 70% 18%, rgba(220, 38, 38, .22), transparent 30%),
        #0b0b0b;
}

.detail-backdrop {
    background:
        linear-gradient(0deg, #050505 8%, rgba(5, 5, 5, .72) 42%, rgba(5, 5, 5, 0) 76%),
        linear-gradient(90deg, rgba(5, 5, 5, .9), rgba(5, 5, 5, .18));
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.detail-info {
    bottom: 54px;
    left: max(24px, calc((100vw - 1180px) / 2));
    max-width: min(760px, 58vw);
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.detail-info a,
.detail-info button,
.detail-info [data-watchlist-toggle] {
    pointer-events: auto;
}

.detail-info h1 {
    color: #ffffff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 62px;
    line-height: 1;
    margin: 0 0 16px;
}

.detail-info p {
    color: #d6d3ca;
    font-size: 18px;
    line-height: 1.7;
    margin: 18px 0 0;
}

.detail-description-panel {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.35), #050505 72%);
    padding: 0 24px 28px;
    position: relative;
    z-index: 2;
}

.detail-description-inner {
    color: #d6d3ca;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 1180px;
}

.detail-description-inner p {
    margin: 0;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-meta span {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #f7f2e8;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 12px;
}

.detail-actions {
    margin: 14px 0 4px;
}

.detail-watchlist-toggle {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    gap: 8px;
    padding: 10px 18px;
}

.detail-watchlist-toggle .detail-watchlist-ic {
    display: flex;
    line-height: 0;
}

.detail-watchlist-toggle.is-active {
    border-color: rgba(212, 175, 55, .55);
    color: #d4af37;
}

.clip-modal-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 12px 16px 16px;
}

.clip-modal-like-btn.is-liked {
    color: #e8486f;
}

.latest-clip-card {
    position: relative;
}

.clip-card-like-btn {
    align-items: center;
    background: rgba(12, 12, 12, .72);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 40px;
    z-index: 3;
}

.clip-card-like-btn.is-liked {
    color: #e8486f;
}

.mm-dashboard-stat-link,
.mm-stat-card--link {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.detail-content {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) 360px;
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 24px 54px;
}

.review-panel,
.clip-panel {
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: 22px;
}

.section-heading.compact {
    margin-bottom: 16px;
}

.section-heading.compact h2 {
    font-size: 26px;
}

.detail-notice {
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 12px 14px;
}

.detail-notice p {
    margin: 0;
}

.detail-notice p + p {
    margin-top: 6px;
}

.detail-notice.success {
    background: rgba(22, 101, 52, .3);
    border: 1px solid rgba(34, 197, 94, .38);
    color: #bbf7d0;
}

.mm-booster-banner {
    border-radius: 14px;
    margin: 0 auto 20px;
    max-width: 1180px;
    padding: 16px 20px;
    width: 100%;
}

body.mm-dashboard-page .mm-booster-banner {
    box-sizing: border-box;
}

.mm-booster-banner__title {
    color: #f5d27a;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.mm-booster-banner__text {
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.mm-booster-banner__timer {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 0 0 12px;
}

.mm-booster-banner__timer-label {
    color: rgba(216, 200, 154, 0.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mm-booster-banner__countdown {
    color: #f8fafc;
    font-size: clamp(18px, 2vw, 24px);
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.mm-booster-banner__countdown.expired {
    color: rgba(248, 113, 113, 0.95);
    font-size: 14px;
    font-weight: 700;
}

.mm-booster-banner__timer-note {
    color: rgba(199, 194, 184, 0.88);
    font-size: 12px;
    width: 100%;
}

.mm-booster-banner--progress {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: rgba(243, 231, 194, 0.95);
}

.detail-notice.error {
    background: rgba(127, 29, 29, .36);
    border: 1px solid rgba(248, 113, 113, .35);
    color: #fecaca;
}

.review-form {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.review-form label,
.star-rating legend {
    color: #f7f2e8;
    font-size: 14px;
    font-weight: 800;
}

.review-form textarea {
    background: rgba(0, 0, 0, .36);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    color: #ffffff;
    font: inherit;
    line-height: 1.5;
    padding: 12px;
    resize: vertical;
}

.review-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ghost-button {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    color: #f7f2e8;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 13px 18px;
}

.star-rating {
    border: 0;
    direction: rtl;
    justify-self: start;
    margin: 0;
    padding: 0;
}

.star-rating input {
    position: absolute;
    opacity: 0;
}

.star-rating label {
    color: rgba(255, 255, 255, .3);
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    padding-right: 3px;
    transition: color 160ms ease, transform 160ms ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #d4af37;
}

.star-rating label:hover {
    transform: scale(1.08);
}

.login-prompt {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #c7c2b8;
    padding: 16px;
}

.login-prompt a {
    color: #d4af37;
    font-weight: 900;
}

.reviews-list {
    display: grid;
    gap: 14px;
}

.review-card {
    background: rgba(0, 0, 0, .28);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 16px;
}

.review-card-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.review-card-top em {
    background: rgba(212, 175, 55, .16);
    border: 1px solid rgba(212, 175, 55, .36);
    border-radius: 999px;
    color: #f7df8e;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    padding: 6px 9px;
}

.review-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.review-card strong {
    color: #ffffff;
}

.review-card span {
    color: #9ca3af;
    font-size: 13px;
}

.review-stars {
    color: #d4af37;
    letter-spacing: 2px;
    margin: 10px 0;
}

.review-card p {
    color: #d6d3ca;
    line-height: 1.6;
    margin: 0;
}

.review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.review-actions button,
.review-actions span {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: #d6d3ca;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 11px;
}

.review-actions button.is-active {
    background: rgba(212, 175, 55, .2);
    border-color: rgba(212, 175, 55, .58);
    color: #f7df8e;
}

.review-actions .danger-text {
    color: #fecaca;
}

.side-clip {
    aspect-ratio: 16 / 10;
    background: #000000;
    border-radius: 8px;
    display: block;
    margin-bottom: 14px;
    object-fit: cover;
    width: 100%;
}

.clip-open-card {
    border: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: left;
}

.clip-open-card:hover {
    transform: none;
}

.detail-clip-open {
    border-radius: inherit;
    cursor: pointer;
    display: block;
    height: 100%;
    isolation: isolate;
    pointer-events: auto;
    position: relative;
    width: 100%;
    z-index: 5;
}

.clip-open-card img,
.clip-open-card .detail-player-fallback {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.clip-play-overlay {
    align-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(212, 175, 55, .22), transparent 48%),
        linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .78));
    color: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
    inset: 0;
    justify-content: center;
    pointer-events: none;
    position: absolute;
    transition: background 220ms ease;
    z-index: 6;
}

.detail-clip-open:hover .clip-play-overlay,
.detail-clip-open:focus-visible .clip-play-overlay {
    background:
        radial-gradient(circle at 50% 42%, rgba(245, 210, 122, .34), transparent 52%),
        linear-gradient(180deg, rgba(5, 5, 5, .04), rgba(5, 5, 5, .82));
}

.clip-play-overlay.compact {
    gap: 8px;
}

.clip-play-overlay strong {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .65);
    text-transform: uppercase;
}

.clip-play-icon {
    align-items: center;
    animation: clipPlayPulse 2.2s ease-in-out infinite;
    background: linear-gradient(135deg, #ffe9a8, #e8c252 42%, #c9981f);
    border: 2px solid rgba(255, 248, 220, 0.55);
    border-radius: 999px;
    box-shadow:
        0 0 0 0 rgba(245, 210, 122, 0.55),
        0 16px 44px rgba(0, 0, 0, .48),
        0 0 32px rgba(212, 175, 55, .45);
    display: inline-flex;
    height: 72px;
    justify-content: center;
    position: relative;
    width: 72px;
}

.detail-clip-open:hover .clip-play-icon,
.detail-clip-open:focus-visible .clip-play-icon {
    animation-duration: 1.35s;
    transform: scale(1.06);
}

@keyframes clipPlayPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 0 rgba(245, 210, 122, 0.5),
            0 16px 44px rgba(0, 0, 0, .48),
            0 0 28px rgba(212, 175, 55, .4);
    }

    50% {
        box-shadow:
            0 0 0 16px rgba(245, 210, 122, 0),
            0 18px 48px rgba(0, 0, 0, .52),
            0 0 40px rgba(212, 175, 55, .55);
    }
}

.clip-play-icon::before {
    border-bottom: 12px solid transparent;
    border-left: 18px solid #050505;
    border-top: 12px solid transparent;
    content: "";
    margin-left: 5px;
}

.clip-play-overlay.compact .clip-play-icon {
    height: 42px;
    width: 42px;
}

.clip-play-overlay.compact .clip-play-icon::before {
    border-bottom-width: 8px;
    border-left-width: 12px;
    border-top-width: 8px;
}

.clip-modal-open {
    overflow: hidden;
}

.clip-modal {
    inset: 0;
    position: fixed;
    z-index: 12000;
}

.clip-modal[hidden] {
    display: none;
}

.clip-modal-backdrop {
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, .78);
    inset: 0;
    position: absolute;
}

.clip-modal-dialog {
    left: 50%;
    max-width: min(1180px, calc(100vw - 36px));
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.clip-modal-player {
    aspect-ratio: 16 / 9;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    box-shadow: 0 34px 110px rgba(0, 0, 0, .74), 0 0 34px rgba(212, 175, 55, .16);
    overflow: hidden;
}

.clip-modal-player video,
.clip-modal-player iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}

.clip-modal-close {
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-size: 30px;
    height: 46px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 0;
    top: -58px;
    width: 46px;
}

.clip-modal-close:hover {
    transform: none;
}

.admin-check-row {
    align-items: center;
    display: flex !important;
    gap: 10px;
    line-height: 1.4;
}

.admin-check-row input {
    flex: 0 0 auto;
    min-height: auto !important;
    width: auto !important;
}

.review-gate-note {
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: 8px;
    color: #f7df8e;
    font-weight: 800;
    margin: 0 0 16px;
    padding: 12px 14px;
}

.review-status-pill {
    align-self: flex-start;
    border-radius: 999px;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    margin-top: auto;
    padding: 8px 10px;
}

.review-status-pill.due {
    background: rgba(212, 175, 55, .16);
    color: #f7df8e;
}

.review-status-pill.viewed,
.review-status-pill.submitted {
    background: rgba(34, 197, 94, .16);
    color: #bbf7d0;
}

.review-history-list {
    display: grid;
    gap: 12px;
}

.review-history-item {
    align-items: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    padding: 12px;
}

.review-history-item.missed {
    background: rgba(127, 29, 29, .32);
    border-color: rgba(248, 113, 113, .45);
}

.review-history-item img,
.review-history-item .dashboard-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    height: 64px;
    object-fit: cover;
    width: 64px;
}

.review-history-item time,
.review-history-item small,
.review-history-item p {
    color: rgba(247, 242, 232, .72);
}

.review-history-item strong,
.review-history-item time,
.review-history-item small {
    display: block;
}

.review-history-item p {
    margin: 4px 0 0;
}

.review-history-item > span {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
}

.review-history-item.submitted > span {
    background: rgba(34, 197, 94, .16);
    color: #bbf7d0;
}

.review-history-item.due > span {
    background: rgba(212, 175, 55, .16);
    color: #f7df8e;
}

.review-history-item.missed > span {
    background: rgba(248, 113, 113, .2);
    color: #fecaca;
}

.today-review-panel {
    margin-bottom: 28px;
}

.today-review-summary {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.today-review-summary > div {
    display: grid;
    gap: 6px;
}

.today-review-summary strong {
    color: #ffffff;
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
}

.today-review-summary strong.expired {
    color: #fecaca;
}

.today-review-list {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.today-review-item {
    align-items: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: grid;
    gap: 12px;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    min-height: 78px;
    padding: 10px;
}

.today-review-item:hover {
    border-color: rgba(212, 175, 55, .34);
}

.today-review-item img,
.today-review-item .dashboard-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    height: 54px;
    object-fit: cover;
    width: 54px;
}

.today-review-item strong,
.today-review-item small {
    display: block;
}

.today-review-item small {
    color: rgba(247, 242, 232, .68);
}

.today-review-item > span {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    padding: 8px 10px;
    white-space: nowrap;
}

.today-review-item.due > span {
    background: rgba(212, 175, 55, .16);
    color: #f7df8e;
}

.today-review-item.viewed > span,
.today-review-item.submitted > span {
    background: rgba(34, 197, 94, .16);
    color: #bbf7d0;
}

.referral-share-box {
    display: grid;
    gap: 7px;
    margin: 8px 0;
}

.referral-share-box > span {
    color: rgba(247, 242, 232, .68);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.referral-share-box input {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    color: #ffffff;
    font: inherit;
    min-height: 40px;
    padding: 9px 10px;
    width: min(100%, 360px);
}

.referral-share-box button {
    align-self: start;
    background: rgba(212, 175, 55, .16);
    border: 1px solid rgba(212, 175, 55, .34);
    border-radius: 999px;
    color: #f7df8e;
    cursor: pointer;
    font-weight: 900;
    min-height: 34px;
    padding: 0 14px;
}

.welcome-letter {
    background: rgba(5, 14, 34, .62);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #e5edf7;
    margin-bottom: 18px;
    padding: 18px;
}

.welcome-letter > p {
    color: #ffffff;
    font-weight: 800;
    margin: 0 0 14px;
}

.welcome-letter dl {
    display: grid;
    gap: 0;
    margin: 0;
}

.welcome-letter dl > div {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(120px, .8fr) minmax(0, 1fr);
    padding: 10px 0;
}

.welcome-letter dl > div:last-child {
    border-bottom: 0;
}

.welcome-letter dt {
    color: #aeb9cd;
    font-weight: 600;
}

.welcome-letter dd {
    color: #ffffff;
    font-weight: 900;
    margin: 0;
    overflow-wrap: anywhere;
    text-align: right;
}

.welcome-login-button {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}

@media (max-width: 640px) {
    .today-review-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .today-review-item {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .today-review-item > span {
        grid-column: 2;
        justify-self: start;
    }

    .today-review-item img,
    .today-review-item .dashboard-thumb {
        height: 48px;
        width: 48px;
    }

    .review-history-item {
        align-items: flex-start;
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .review-history-item > span {
        grid-column: 2;
        justify-self: start;
    }

    .review-history-item img,
    .review-history-item .dashboard-thumb {
        height: 54px;
        width: 54px;
    }
}

.detail-related {
    padding-top: 8px;
}

@media (max-width: 980px) {
    .detail-hero {
        min-height: 680px;
    }

    .detail-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .detail-hero {
        min-height: 620px;
        padding-top: 118px;
    }

    .detail-player {
        height: 44vh;
        min-height: 300px;
    }

    .detail-info {
        bottom: 34px;
        left: 18px;
        right: 18px;
    }

    .detail-info h1 {
        font-size: 38px;
    }

    .detail-info p {
        font-size: 16px;
    }

    .detail-description-panel {
        padding: 0 18px 22px;
    }

    .detail-description-inner {
        font-size: 16px;
    }

    .detail-content {
        padding: 0 18px 42px;
    }
}

/* 4K glossy cinematic theme layer */
:root {
    --gold: #d4af37;
    --gold-light: #f5d27a;
    --gold-soft: rgba(212, 175, 55, .25);
    --glass-bg: rgba(255, 255, 255, .05);
    --glass-border: rgba(255, 255, 255, .08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, .6), inset 0 1px 0 rgba(255, 255, 255, .1);
}

body {
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, .08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .05), transparent 50%),
        #050505;
}

body::after {
    animation: floatGlow 12s ease-in-out infinite alternate;
    background: radial-gradient(circle, rgba(212, 175, 55, .15), transparent 68%);
    content: "";
    filter: blur(100px);
    height: 500px;
    pointer-events: none;
    position: fixed;
    right: -160px;
    top: 18%;
    width: 500px;
    z-index: 0;
}

.site-header,
.movie-card,
.auth-panel,
.cinema-auth-panel,
.live-login-body .login-card,
.admin-panel,
.saas-stat-card,
.admin-table-wrap,
.glass-dashboard-card,
.profile-card,
.stat-card,
.dashboard-panel,
.dashboard-movie-card,
.dashboard-clip-card,
.plan-card,
.glass-movie-card,
.rated-card,
.clip-card,
.lux-empty,
.static-card,
.split-band,
.contact-panel,
.contact-list article,
.contact-form-shell,
.detail-panel,
.review-card,
.related-card,
.login-prompt,
.site-footer {
    backdrop-filter: blur(20px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    position: relative;
}

.admin-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
}

.site-header {
    border-radius: 0 0 16px 16px;
}

.site-footer {
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, .15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(212, 175, 55, .08), transparent 50%),
        #000000;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    border-top: 1px solid rgba(212, 175, 55, .16);
}

.site-header::before,
.movie-card::before,
.auth-panel::before,
.cinema-auth-panel::before,
.live-login-body .login-card::after,
.admin-panel::before,
.saas-stat-card::before,
.admin-table-wrap::before,
.glass-dashboard-card::before,
.profile-card::before,
.stat-card::before,
.dashboard-panel::before,
.dashboard-movie-card::before,
.dashboard-clip-card::before,
.plan-card::before,
.glass-movie-card::before,
.rated-card::before,
.clip-card::before,
.lux-empty::before,
.static-card::before,
.split-band::before,
.contact-panel::before,
.contact-list article::before,
.contact-form-shell::before,
.detail-panel::before,
.review-card::before,
.related-card::before,
.login-prompt::before {
    background: linear-gradient(120deg, rgba(255, 255, 255, .15), transparent 40%);
    border-radius: inherit;
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.site-header > *,
.movie-card > *,
.auth-panel > *,
.cinema-auth-panel > *,
.live-login-body .login-card > *,
.admin-panel > *,
.saas-stat-card > *,
.admin-table-wrap > *,
.glass-dashboard-card > *,
.profile-card > *,
.stat-card > *,
.dashboard-panel > *,
.dashboard-movie-card > *,
.dashboard-clip-card > *,
.plan-card > *,
.glass-movie-card > *,
.rated-card > *,
.clip-card > *,
.lux-empty > *,
.static-card > *,
.split-band > *,
.contact-panel > *,
.contact-list article > *,
.contact-form-shell > *,
.detail-panel > *,
.review-card > *,
.related-card > *,
.login-prompt > * {
    position: relative;
    z-index: 1;
}

.movie-card,
.glass-movie-card,
.rated-card,
.clip-card,
.dashboard-movie-card,
.dashboard-clip-card,
.plan-card,
.stat-card,
.saas-stat-card,
.static-card,
.review-card,
.related-card {
    transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.movie-card:hover,
.glass-movie-card:hover,
.rated-card:hover,
.clip-card:hover,
.dashboard-movie-card:hover,
.dashboard-clip-card:hover,
.plan-card:hover,
.stat-card:hover,
.saas-stat-card:hover,
.static-card:hover,
.review-card:hover,
.related-card:hover {
    border-color: rgba(212, 175, 55, .28);
    box-shadow: 0 12px 42px rgba(0, 0, 0, .68), 0 0 20px var(--gold-soft), inset 0 1px 0 rgba(255, 255, 255, .12);
    transform: translateY(-6px) scale(1.02);
}

button,
.gold-button,
.admin-button,
.login-button,
.register-btn,
.btn-glossy,
input[type="submit"] {
    box-shadow: 0 4px 20px rgba(212, 175, 55, .28), inset 0 1px 0 rgba(255, 255, 255, .24);
    transition: box-shadow .3s ease, filter .3s ease, transform .3s ease;
}

.gold-button,
.admin-button,
.login-button,
.register-btn,
.btn-glossy,
input[type="submit"] {
    background: linear-gradient(135deg, #d4af37, #f5d27a);
    border-radius: 999px;
    color: #000000;
}

button:hover,
.gold-button:hover,
.admin-button:hover,
.login-button:hover,
.register-btn:hover,
.btn-glossy:hover,
input[type="submit"]:hover {
    box-shadow: 0 6px 28px rgba(212, 175, 55, .46), inset 0 1px 0 rgba(255, 255, 255, .32);
    transform: scale(1.05);
}

input,
textarea,
select,
.search-field {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

input:focus,
textarea:focus,
select:focus,
.search-field:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, .4), inset 0 1px 0 rgba(255, 255, 255, .08);
    outline: 0;
}

.home-body,
.dashboard-main,
.detail-main,
.static-main,
.admin-body,
.live-login-body {
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, .08), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .05), transparent 50%),
        #050505;
}

.home-main {
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, .08), transparent 40%),
        linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .88) 74%, #050505 100%);
}

@keyframes floatGlow {
    to {
        transform: translate3d(-120px, 90px, 0) scale(1.08);
    }
}

@media (max-width: 640px) {
    body::after {
        filter: blur(70px);
        height: 320px;
        opacity: .72;
        width: 320px;
    }

    .site-header,
    .movie-card,
    .auth-panel,
    .cinema-auth-panel,
    .live-login-body .login-card,
    .admin-panel,
    .saas-stat-card,
    .admin-table-wrap,
    .glass-dashboard-card,
    .profile-card,
    .stat-card,
    .dashboard-panel,
    .dashboard-movie-card,
    .dashboard-clip-card,
    .plan-card,
    .glass-movie-card,
    .rated-card,
    .clip-card,
    .lux-empty,
    .static-card,
    .split-band,
    .contact-panel,
    .contact-list article,
    .contact-form-shell,
    .detail-panel,
    .review-card,
    .related-card,
    .login-prompt,
    .site-footer {
        backdrop-filter: blur(12px);
    }
}

/* Homepage cinematic redesign layer */
:root {
    --cinema-bg:
        radial-gradient(circle at top right, rgba(212, 175, 55, .08), transparent 35%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, .04), transparent 45%),
        #050505;
    --cinema-gold: #d4af37;
    --cinema-gold-bright: #f7df8e;
    --cinema-gold-deep: #9f7412;
    --cinema-cream: #f7f2e8;
    --cinema-muted: #b8b3a8;
    --cinema-glass: rgba(255, 255, 255, .05);
    --cinema-glass-strong: rgba(255, 255, 255, .075);
    --cinema-border: rgba(255, 255, 255, .08);
    --cinema-shadow: 0 26px 90px rgba(0, 0, 0, .52), inset 0 1px 0 rgba(255, 255, 255, .1);
}

html {
    scroll-behavior: smooth;
}

.home-body {
    background: var(--cinema-bg);
    color: var(--cinema-cream);
    overflow-x: hidden;
}

.home-body::before {
    opacity: .34;
    transform: translateZ(0);
}

.home-body::after {
    animation: cinematicAura 16s ease-in-out infinite alternate;
    background:
        radial-gradient(circle at 72% 18%, rgba(212, 175, 55, .18), transparent 28%),
        radial-gradient(circle at 18% 72%, rgba(255, 255, 255, .06), transparent 34%),
        linear-gradient(180deg, rgba(5, 5, 5, .45), #050505 78%);
    will-change: opacity, transform;
}

.home-main {
    background:
        radial-gradient(circle at 82% 4%, rgba(212, 175, 55, .09), transparent 28%),
        linear-gradient(180deg, rgba(5, 5, 5, .1), #050505 72%);
}

.home-body .site-header {
    backdrop-filter: blur(20px) saturate(135%);
    background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 22px 90px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .12);
    isolation: isolate;
    padding-left: max(22px, calc((100vw - 1760px) / 2 + 28px));
    padding-right: max(22px, calc((100vw - 1760px) / 2 + 28px));
}

.home-body .site-header::before,
.search-field::before,
.glass-movie-card::before,
.rated-card::before,
.clip-card::before,
.lux-empty::before,
.site-footer::before,
.plan-card::before,
.review-card::before {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, .04) 34%, transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 42%);
    content: "";
    inset: 0;
    opacity: .72;
    pointer-events: none;
    position: absolute;
}

.home-body .site-header::after {
    background: linear-gradient(90deg, transparent, rgba(247, 223, 142, .3), var(--cinema-gold), rgba(247, 223, 142, .3), transparent);
    left: max(22px, calc((100vw - 1760px) / 2 + 28px));
    right: max(22px, calc((100vw - 1760px) / 2 + 28px));
}

.home-body .site-header.is-scrolled {
    background: rgba(5, 5, 5, .82);
    box-shadow: 0 24px 95px rgba(0, 0, 0, .62), 0 0 34px rgba(212, 175, 55, .16);
}

.search-field,
.live-search-results,
.search-mobile-toggle,
.hamburger {
    backdrop-filter: blur(20px) saturate(135%);
    background: var(--cinema-glass);
    border: 1px solid var(--cinema-border);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    overflow: hidden;
    position: relative;
}

.search-field {
    border-radius: 999px;
    min-height: 48px;
}

.search-field:focus-within {
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .11), 0 0 32px rgba(212, 175, 55, .2);
}

.lux-hero {
    height: clamp(680px, 88vh, 1040px);
    isolation: isolate;
    overflow: hidden;
}

.lux-hero::before {
    animation: heroParallax 18s ease-in-out infinite alternate;
    filter: saturate(1.1) contrast(1.08);
    opacity: .74;
    transform: scale(1.04);
    will-change: transform;
}

.lux-hero::after {
    animation: floatingHeroGlow 10s ease-in-out infinite alternate;
    background:
        radial-gradient(circle, rgba(247, 223, 142, .22), rgba(212, 175, 55, .08) 35%, transparent 68%);
    border-radius: 999px;
    content: "";
    filter: blur(42px);
    height: min(44vw, 560px);
    pointer-events: none;
    position: absolute;
    right: max(-120px, 4vw);
    top: 12%;
    width: min(44vw, 560px);
    z-index: 2;
    will-change: transform, opacity;
}

.hero-slide {
    transform: scale(1.055) translate3d(0, 18px, 0);
    transition: opacity 1000ms ease, transform 1600ms cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform;
}

.hero-slide.is-active {
    transform: scale(1) translate3d(0, 0, 0);
}

.hero-slide video,
.hero-slide img,
.hero-fallback {
    filter: saturate(1.16) contrast(1.08);
    opacity: .68;
}

.hero-overlay {
    background:
        radial-gradient(circle at 78% 18%, rgba(212, 175, 55, .18), transparent 28%),
        linear-gradient(90deg, rgba(5, 5, 5, .96) 0%, rgba(5, 5, 5, .72) 42%, rgba(5, 5, 5, .18) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, .18), rgba(5, 5, 5, .22) 42%, #050505 100%);
}

.hero-content {
    bottom: clamp(88px, 13vh, 150px);
    left: max(24px, calc((100vw - 1760px) / 2 + 42px));
    max-width: min(760px, calc(100vw - 48px));
    transform: translateZ(0);
}

.hero-content::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, 0));
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: -24px;
    width: min(420px, 58vw);
}

.gold-kicker {
    color: var(--cinema-gold-bright);
    letter-spacing: .12em;
    text-shadow: 0 0 24px rgba(212, 175, 55, .38);
}

.hero-content h1 {
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: clamp(44px, 5.4vw, 96px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: .96;
    max-width: 900px;
    text-shadow: 0 18px 70px rgba(0, 0, 0, .72);
}

.hero-content p {
    color: rgba(247, 242, 232, .84);
    font-size: clamp(16px, 1.1vw, 21px);
    max-width: 690px;
}

.gold-button,
.register-btn,
.footer-newsletter button {
    background:
        linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, .55) 45%, transparent 56% 100%),
        linear-gradient(135deg, #f8e59d 0%, var(--cinema-gold) 43%, var(--cinema-gold-deep) 100%);
    background-size: 240% 100%, 100% 100%;
    border: 1px solid rgba(255, 255, 255, .26);
    box-shadow: 0 14px 38px rgba(212, 175, 55, .24), inset 0 1px 0 rgba(255, 255, 255, .4);
    color: #080808 !important;
    min-height: 46px;
    overflow: hidden;
    position: relative;
    transition: background-position .75s ease, box-shadow .28s ease, transform .28s ease;
}

.gold-button:hover,
.register-btn:hover,
.footer-newsletter button:hover {
    background-position: -130% 0, 0 0;
    box-shadow: 0 18px 48px rgba(212, 175, 55, .42), 0 0 28px rgba(247, 223, 142, .28);
    transform: translateY(-2px);
}

.hero-dots {
    bottom: clamp(28px, 5vh, 56px);
}

.hero-dots button {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .16);
    box-shadow: none;
}

.hero-dots button.is-active {
    background: linear-gradient(90deg, var(--cinema-gold), var(--cinema-gold-bright));
    box-shadow: 0 0 24px rgba(212, 175, 55, .48);
}

.home-section {
    max-width: 1760px;
    padding: clamp(54px, 5vw, 92px) max(24px, calc((100vw - 1760px) / 2 + 42px));
}

.section-heading {
    margin-bottom: clamp(18px, 2vw, 34px);
}

.section-heading h2 {
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: clamp(28px, 2.4vw, 48px);
    font-weight: 900;
    letter-spacing: 0;
}

.horizontal-rail {
    gap: clamp(16px, 1.4vw, 28px);
    grid-auto-columns: clamp(220px, 15.5vw, 310px);
    margin-inline: -6px;
    padding: 8px 6px 26px;
    scroll-padding-inline: 6px;
    scrollbar-color: rgba(212, 175, 55, .68) rgba(255, 255, 255, .06);
    scrollbar-width: thin;
}

.horizontal-rail::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .06);
    border-radius: 999px;
}

.horizontal-rail::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--cinema-gold-deep), var(--cinema-gold-bright));
    border: 2px solid rgba(5, 5, 5, .7);
}

.glass-movie-card,
.rated-card,
.clip-card,
.lux-empty,
.plan-card,
.review-card {
    backdrop-filter: blur(20px) saturate(132%);
    background: linear-gradient(180deg, var(--cinema-glass-strong), rgba(255, 255, 255, .035));
    border: 1px solid var(--cinema-border);
    border-radius: 8px;
    box-shadow: var(--cinema-shadow);
    isolation: isolate;
    overflow: hidden;
}

.glass-movie-card > *,
.rated-card > *,
.clip-card > * {
    position: relative;
    z-index: 2;
}

.glass-movie-card {
    display: flex;
    flex-direction: column;
    min-height: clamp(390px, 27vw, 530px);
    padding: 12px;
    transform: translateZ(0);
    will-change: transform;
}

.glass-movie-card::after,
.rated-card::after,
.clip-card::after {
    background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 5, .82));
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity .3s ease;
    z-index: 1;
}

.glass-movie-card:hover,
.rated-card:hover,
.clip-card:hover {
    border-color: rgba(212, 175, 55, .34);
    box-shadow: 0 28px 92px rgba(0, 0, 0, .66), 0 0 34px rgba(212, 175, 55, .2), inset 0 1px 0 rgba(255, 255, 255, .14);
    transform: translateY(-8px) scale(1.018);
}

.glass-movie-card:hover::after,
.rated-card:hover::after,
.clip-card:hover::after {
    opacity: .44;
}

.poster-frame {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    flex: 0 0 auto;
}

.poster-frame img,
.rated-card img,
.clip-card video {
    transition: filter .35s ease, transform .45s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.glass-movie-card:hover .poster-frame img,
.rated-card:hover img,
.clip-card:hover video {
    filter: saturate(1.18) contrast(1.08);
    transform: scale(1.06);
}

.glass-movie-card span,
.rated-card span,
.clip-card span {
    color: var(--cinema-gold-bright);
    letter-spacing: .08em;
}

.glass-movie-card h3,
.rated-card h3,
.clip-card h3 {
    font-size: clamp(17px, 1vw, 20px);
    line-height: 1.25;
}

.glass-movie-card p,
.rated-card p {
    color: rgba(247, 242, 232, .72);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.rated-grid {
    gap: clamp(16px, 1.4vw, 26px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rated-card {
    grid-template-columns: clamp(72px, 5.6vw, 104px) minmax(0, 1fr) auto;
    min-height: clamp(126px, 8vw, 162px);
    padding: clamp(12px, 1vw, 18px);
}

.rated-card img {
    width: clamp(72px, 5.6vw, 104px);
}

.rated-card strong {
    background: linear-gradient(135deg, rgba(247, 223, 142, .22), rgba(212, 175, 55, .08));
    box-shadow: 0 0 22px rgba(212, 175, 55, .18);
}

.clip-grid {
    gap: clamp(16px, 1.4vw, 26px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clip-card video {
    min-height: 150px;
}

.clip-card div {
    padding: clamp(14px, 1.2vw, 20px);
}

.site-footer {
    backdrop-filter: blur(20px) saturate(132%);
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, .12), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, .04), transparent 45%),
        #030303;
    border-color: rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 -24px 90px rgba(0, 0, 0, .42);
    padding: clamp(52px, 5vw, 86px) max(24px, calc((100vw - 1760px) / 2 + 42px)) 26px;
}

.site-footer::before {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .16), transparent 42%),
        linear-gradient(90deg, transparent, rgba(212, 175, 55, .82), transparent);
    height: 100%;
    left: 0;
    opacity: 1;
    top: 0;
    transform: none;
    width: 100%;
}

.footer-inner,
.footer-bottom {
    max-width: 1760px;
}

.footer-inner {
    gap: clamp(28px, 4vw, 72px);
}

.site-footer h2 {
    color: var(--cinema-gold-bright);
}

.site-footer section a,
.footer-brand p,
.footer-bottom {
    color: rgba(247, 242, 232, .68);
}

.footer-newsletter div {
    border-color: rgba(255, 255, 255, .09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

@keyframes cinematicAura {
    to {
        opacity: .92;
        transform: translate3d(-2%, 2%, 0) scale(1.03);
    }
}

@keyframes heroParallax {
    to {
        transform: scale(1.09) translate3d(-1.5%, -1%, 0);
    }
}

@keyframes floatingHeroGlow {
    to {
        opacity: .72;
        transform: translate3d(-64px, 46px, 0) scale(1.08);
    }
}

@media (min-width: 1800px) {
    .live-search {
        max-width: 560px;
    }

    .clip-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .clip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-body .site-header {
        padding-inline: 16px;
    }

    .home-body .site-header::after {
        left: 16px;
        right: 16px;
    }

    .site-nav {
        background:
            radial-gradient(circle at top right, rgba(212, 175, 55, .1), transparent 38%),
            rgba(5, 5, 5, .92);
        border-left: 1px solid rgba(255, 255, 255, .08);
    }

    .lux-hero {
        height: 720px;
        min-height: 620px;
    }

    .hero-content {
        bottom: 92px;
        left: 24px;
        right: 24px;
    }

    .rated-grid {
        grid-template-columns: 1fr;
    }

    .clip-grid {
        display: grid;
        grid-auto-columns: minmax(260px, 72vw);
        grid-auto-flow: column;
        grid-template-columns: none;
        overflow-x: auto;
        padding-bottom: 22px;
        scroll-snap-type: x mandatory;
        scrollbar-color: rgba(212, 175, 55, .68) rgba(255, 255, 255, .06);
    }

    .clip-card {
        scroll-snap-align: start;
    }

    .footer-inner {
        text-align: left;
    }

    .footer-logo,
    .footer-social {
        justify-content: flex-start;
    }

    .footer-brand p,
    .footer-newsletter-column .footer-newsletter,
    .footer-newsletter {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 560px) {
    .home-body::before {
        background-attachment: scroll;
        opacity: .22;
    }

    .home-body::after {
        background:
            radial-gradient(circle at 82% 8%, rgba(212, 175, 55, .13), transparent 30%),
            linear-gradient(180deg, rgba(5, 5, 5, .58), #050505 70%);
    }

    .lux-hero {
        height: 610px;
        min-height: 560px;
    }

    .lux-hero::after {
        height: 320px;
        right: -150px;
        top: 20%;
        width: 320px;
    }

    .hero-slide video,
    .hero-slide img,
    .hero-fallback {
        opacity: .5;
    }

    .hero-overlay {
        background:
            radial-gradient(circle at 86% 12%, rgba(212, 175, 55, .14), transparent 30%),
            linear-gradient(180deg, rgba(5, 5, 5, .2), rgba(5, 5, 5, .62) 42%, #050505 100%),
            linear-gradient(90deg, rgba(5, 5, 5, .9), rgba(5, 5, 5, .42));
    }

    .hero-content {
        bottom: 76px;
        left: 18px;
        right: 18px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.02;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .gold-button {
        justify-content: center;
        width: 100%;
    }

    .home-section {
        padding: 44px 18px;
    }

    .section-heading {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .horizontal-rail {
        grid-auto-columns: minmax(220px, 82vw);
        margin-inline: -18px;
        padding-left: 18px;
        padding-right: 18px;
        scroll-padding-inline: 18px;
    }

    .glass-movie-card {
        min-height: 400px;
    }

    .rated-card {
        align-items: start;
        gap: 12px;
        grid-template-columns: 76px minmax(0, 1fr);
        padding: 12px;
    }

    .rated-card img {
        width: 76px;
    }

    .rated-card strong {
        grid-column: 2;
        height: 36px;
        min-width: 54px;
    }

    .clip-grid {
        grid-auto-columns: minmax(246px, 86vw);
        margin-inline: -18px;
        padding-left: 18px;
        padding-right: 18px;
        scroll-padding-inline: 18px;
    }

    .site-footer {
        padding-inline: 18px;
    }

    .footer-inner {
        gap: 30px;
        text-align: left;
    }

    .footer-bottom {
        align-items: flex-start;
        text-align: left;
    }
}

/* Mobile-only responsiveness repair for the homepage */
@media (max-width: 768px) {
    html,
    body,
    .home-body,
    .home-main {
        max-width: 100%;
        overflow-x: hidden;
    }

    body::after,
    .home-body::after {
        animation-duration: 22s;
        filter: blur(54px);
        height: 260px;
        opacity: .62;
        right: -120px;
        top: 120px;
        width: 260px;
    }

    .home-body::before {
        background-attachment: scroll;
        background-size: cover;
        opacity: .18;
    }

    .home-body .site-header {
        gap: 10px;
        min-height: 68px;
        padding: 12px 14px;
    }

    .ott-brand {
        font-size: 20px;
        gap: 8px;
        min-width: 0;
    }

    .brand-icon {
        border-radius: 10px;
        font-size: 10px;
        height: 32px;
        width: 32px;
    }

    .live-search {
        flex: 0 0 auto;
        min-width: 0;
    }

    .search-mobile-toggle,
    .hamburger {
        height: 40px;
        width: 40px;
    }

    .search-field {
        backdrop-filter: blur(10px) saturate(120%);
        min-height: 44px;
        right: -50px;
        top: calc(100% + 12px);
        width: min(88vw, 340px);
    }

    .live-search-results {
        backdrop-filter: blur(10px) saturate(120%);
        right: -50px;
        width: min(88vw, 340px);
    }

    .site-nav {
        backdrop-filter: blur(10px) saturate(120%);
        max-width: 340px;
        padding: 82px 20px 24px;
        width: min(84vw, 340px);
    }

    .site-nav > a,
    .site-nav .inline-logout-form button {
        font-size: 15px;
        padding: 14px 0;
    }

    .login-btn,
    .register-btn,
    .site-nav .inline-logout-form button {
        min-height: 42px;
        padding: 11px 14px !important;
    }

    .lux-hero {
        align-items: center;
        display: flex;
        height: auto;
        min-height: auto;
        overflow: hidden;
        padding: 104px 20px 64px;
    }

    .lux-hero::before {
        animation-duration: 26s;
        background-position: center top;
        transform: scale(1.02);
    }

    .lux-hero::after {
        animation-duration: 18s;
        filter: blur(32px);
        height: 240px;
        opacity: .48;
        right: -110px;
        top: 110px;
        width: 240px;
    }

    .hero-slide {
        transform: none;
    }

    .hero-slide video,
    .hero-slide img,
    .hero-fallback {
        height: 100%;
        min-height: 100%;
        opacity: .42;
    }

    .hero-overlay {
        background:
            radial-gradient(circle at 82% 16%, rgba(212, 175, 55, .13), transparent 32%),
            linear-gradient(180deg, rgba(5, 5, 5, .28), rgba(5, 5, 5, .68) 44%, #050505 100%),
            linear-gradient(90deg, rgba(5, 5, 5, .9), rgba(5, 5, 5, .42));
    }

    .hero-content {
        bottom: auto;
        left: auto;
        margin: 0 auto;
        max-width: 620px;
        position: relative;
        right: auto;
        text-align: left;
        width: 100%;
    }

    .hero-content::before {
        top: -18px;
        width: min(320px, 70vw);
    }

    .gold-kicker {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 7.5vw, 52px);
        line-height: 1.02;
        margin-bottom: 14px;
        max-width: 12ch;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 22px;
        max-width: 34rem;
    }

    .gold-button {
        min-height: 44px;
        padding: 12px 16px;
        width: auto;
    }

    .hero-dots {
        bottom: 22px;
    }

    .hero-dots button {
        height: 8px;
        width: 8px;
    }

    .hero-dots button.is-active {
        width: 26px;
    }

    .home-section {
        max-width: 100%;
        padding: 56px 20px;
    }

    .section-heading {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .section-heading h2 {
        font-size: clamp(26px, 6vw, 38px);
        line-height: 1.08;
    }

    .horizontal-rail {
        display: grid;
        gap: 16px;
        grid-auto-columns: unset;
        grid-auto-flow: unset;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        margin: 0;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .glass-movie-card,
    .rated-card,
    .clip-card,
    .lux-empty,
    .plan-card,
    .review-card,
    .site-footer,
    .search-field,
    .live-search-results {
        backdrop-filter: blur(10px) saturate(118%);
    }

    .glass-movie-card {
        min-height: 0;
        padding: 10px;
    }

    .poster-frame {
        margin-bottom: 12px;
    }

    .glass-movie-card h3,
    .rated-card h3,
    .clip-card h3 {
        font-size: 16px;
        line-height: 1.25;
    }

    .glass-movie-card p,
    .rated-card p {
        font-size: 13px;
        line-height: 1.45;
        -webkit-line-clamp: 2;
    }

    .rated-grid {
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .rated-card {
        grid-template-columns: 76px minmax(0, 1fr) auto;
        min-height: 0;
        padding: 12px;
    }

    .rated-card img {
        width: 76px;
    }

    .rated-card strong {
        font-size: 13px;
        height: 38px;
        min-width: 44px;
    }

    .clip-grid {
        display: grid;
        gap: 16px;
        grid-auto-columns: unset;
        grid-auto-flow: unset;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        margin: 0;
        overflow: visible;
        padding: 0;
        scroll-snap-type: none;
    }

    .clip-card video {
        min-height: 0;
    }

    .site-footer {
        overflow: hidden;
        padding: 52px 20px 24px;
    }

    .site-footer::after {
        filter: blur(46px);
        height: 180px;
        left: -70px;
        opacity: .42;
        top: 40px;
        width: 180px;
    }

    .footer-inner {
        gap: 28px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo,
    .footer-social {
        justify-content: center;
    }

    .footer-brand p,
    .footer-newsletter {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        align-items: center;
        flex-direction: column;
        font-size: 13px;
        gap: 8px;
        margin-top: 28px;
        text-align: center;
    }
}

@media (max-width: 425px) {
    .home-body .site-header {
        padding-inline: 12px;
    }

    .ott-brand span:last-child {
        font-size: clamp(15px, 4.2vw, 19px) !important;
        max-width: none !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: nowrap !important;
    }

    .search-field {
        right: -48px;
        width: min(92vw, 320px);
    }

    .live-search-results {
        right: -48px;
        width: min(92vw, 320px);
    }

    .lux-hero {
        padding: 96px 18px 56px;
    }

    .hero-content h1 {
        font-size: 36px;
        max-width: 11ch;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .gold-button {
        justify-content: center;
        width: 100%;
    }

    .home-section {
        padding: 48px 18px;
    }

    .horizontal-rail {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .rated-card {
        align-items: start;
        gap: 12px;
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .rated-card img {
        width: 72px;
    }

    .rated-card strong {
        grid-column: 2;
        height: 34px;
        justify-self: start;
        min-width: 50px;
    }

    .clip-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding-inline: 18px;
    }
}

@media (max-width: 375px) {
    .home-body .site-header {
        gap: 8px;
        min-height: 64px;
    }

    .ott-brand {
        font-size: 18px;
    }

    .brand-icon {
        height: 30px;
        width: 30px;
    }

    .search-mobile-toggle,
    .hamburger {
        height: 38px;
        width: 38px;
    }

    .hamburger span {
        left: 10px;
    }

    .lux-hero {
        padding: 90px 16px 52px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .home-section {
        padding: 44px 16px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .horizontal-rail {
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .glass-movie-card {
        margin: 0 auto;
        max-width: 290px;
        width: 100%;
    }

    .clip-card,
    .rated-card {
        border-radius: 8px;
    }

    .footer-newsletter div {
        border-radius: 8px;
    }
}

@media (max-width: 340px) {
    .ott-brand span:last-child {
        display: inline !important;
        font-size: clamp(14px, 4.1vw, 17px) !important;
        letter-spacing: -0.02em !important;
    }

    .site-nav {
        width: min(88vw, 300px);
    }

    .search-field,
    .live-search-results {
        right: -46px;
        width: calc(100vw - 24px);
    }

    .lux-hero {
        padding: 86px 14px 48px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .home-section {
        padding: 40px 14px;
    }

    .rated-card {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .rated-card img {
        width: 64px;
    }

    .site-footer {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 768px), (hover: none) and (pointer: coarse) {
    .glass-movie-card:hover,
    .rated-card:hover,
    .clip-card:hover,
    .dashboard-movie-card:hover,
    .dashboard-clip-card:hover,
    .plan-card:hover,
    .stat-card:hover,
    .saas-stat-card:hover,
    .static-card:hover,
    .review-card:hover,
    .related-card:hover {
        transform: none;
    }
}

/* Hard mobile layout reset: fixes oversized absolute hero/overflow on small screens */
@media (max-width: 768px) {
    .site-header,
    .home-body .site-header {
        align-items: center !important;
        background: rgba(5, 5, 5, .72) !important;
        border-radius: 0 !important;
        box-shadow: 0 12px 34px rgba(0, 0, 0, .38) !important;
        column-gap: 10px !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        height: 60px !important;
        justify-content: space-between !important;
        left: 0 !important;
        max-height: 60px !important;
        min-height: 60px !important;
        overflow: visible !important;
        padding: 8px 14px !important;
        position: fixed !important;
        right: 0 !important;
        top: 0 !important;
        transform: none !important;
        width: 100% !important;
        z-index: 1000 !important;
    }

    .site-header::before,
    .home-body .site-header::before {
        bottom: auto !important;
        height: 60px !important;
        max-height: 60px !important;
        min-height: 0 !important;
        pointer-events: none !important;
    }

    .site-header::after,
    .home-body .site-header::after {
        bottom: 0 !important;
        left: 14px !important;
        right: 14px !important;
        top: auto !important;
    }

    .site-header > *:not(.brand):not(.ott-brand):not(nav):not(.nav-glow),
    .home-body .site-header > *:not(.brand):not(.ott-brand):not(nav):not(.nav-glow) {
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .brand,
    .ott-brand {
        align-items: center !important;
        display: inline-flex !important;
        flex: 0 1 auto !important;
        font-size: clamp(17px, 4.6vw, 20px) !important;
        line-height: 1 !important;
        margin: 0 !important;
        max-width: calc(100vw - 118px) !important;
        min-width: 56px !important;
        overflow: hidden !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .ott-brand .brand-icon,
    .ott-brand .brand-logo-image {
        flex-shrink: 0 !important;
    }

    .ott-brand .brand-text,
    .ott-brand span:last-child {
        min-width: 0 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .nav-glow {
        height: 60px !important;
    }

    .home-main {
        padding-top: 0 !important;
    }

    .lux-hero {
        display: block !important;
        height: auto !important;
        margin: 0 !important;
        min-height: 0 !important;
        padding: 88px 20px 52px !important;
    }

    .hero-slide {
        display: none !important;
        inset: auto !important;
        min-height: 0 !important;
        opacity: 1 !important;
        position: relative !important;
        transform: none !important;
        transition: none !important;
        width: 100% !important;
    }

    .hero-slide.is-active {
        display: block !important;
    }

    .hero-slide video,
    .hero-slide img,
    .hero-fallback {
        height: 100% !important;
        inset: 0 !important;
        min-height: 0 !important;
        object-fit: cover !important;
        opacity: .38 !important;
        position: absolute !important;
        width: 100% !important;
    }

    .hero-overlay {
        inset: 0 !important;
        position: absolute !important;
    }

    .hero-content {
        bottom: auto !important;
        left: auto !important;
        margin: 0 auto !important;
        max-width: 620px !important;
        min-height: 0 !important;
        padding: 0 !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        z-index: 5 !important;
    }

    .hero-content h1 {
        font-size: 42px !important;
        line-height: 1.04 !important;
        margin: 0 0 14px !important;
        max-width: 12ch !important;
    }

    .hero-content p {
        font-size: 15px !important;
        line-height: 1.55 !important;
        margin: 0 0 20px !important;
        max-width: 34rem !important;
    }

    .hero-dots {
        bottom: 18px !important;
        position: absolute !important;
    }

    .home-section {
        margin: 0 auto !important;
        padding: 48px 20px !important;
        width: 100% !important;
    }

    .horizontal-rail {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
        overflow: visible !important;
        width: 100% !important;
    }

    .clip-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
        overflow: visible !important;
        width: 100% !important;
    }

    .site-footer {
        margin: 0 !important;
        padding: 48px 20px 24px !important;
    }

    .footer-inner {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
    }
}

@media (max-width: 425px) {
    .site-header,
    .home-body .site-header {
        height: 60px !important;
        max-height: 60px !important;
        min-height: 60px !important;
        padding: 9px 12px !important;
    }

    .site-header::before,
    .home-body .site-header::before,
    .nav-glow {
        height: 60px !important;
        max-height: 60px !important;
    }

    .lux-hero {
        padding: 78px 18px 42px !important;
    }

    .hero-content h1 {
        font-size: 36px !important;
    }

    .home-section {
        padding: 42px 18px !important;
    }

    .horizontal-rail,
    .clip-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 375px) {
    .site-header,
    .home-body .site-header {
        column-gap: 8px !important;
    }

    .brand,
    .ott-brand {
        font-size: 18px !important;
        max-width: calc(100vw - 102px) !important;
    }

    .lux-hero {
        padding: 74px 16px 38px !important;
    }

    .hero-content h1 {
        font-size: 32px !important;
    }

    .hero-content p {
        font-size: 14px !important;
    }
}

@media (max-width: 340px) {
    .lux-hero {
        padding: 72px 14px 36px !important;
    }

    .hero-content h1 {
        font-size: 30px !important;
    }
}

/* Mobile navigation polish */
@media (max-width: 768px) {
    .mobile-header-actions {
        align-items: center !important;
        display: flex !important;
        flex: 0 0 auto !important;
        gap: 10px !important;
        justify-content: flex-end !important;
        margin-left: auto !important;
        position: relative !important;
        z-index: 1002 !important;
    }

    .mobile-header-actions .live-search {
        display: flex !important;
        flex: 0 0 auto !important;
        margin: 0 !important;
        max-width: none !important;
        min-width: 0 !important;
        position: relative !important;
        width: 42px !important;
    }

    .mobile-header-actions .search-mobile-toggle,
    .mobile-header-actions .hamburger {
        align-items: center !important;
        backdrop-filter: blur(10px) saturate(120%) !important;
        background: rgba(255, 255, 255, .06) !important;
        border: 1px solid rgba(212, 175, 55, .28) !important;
        border-radius: 999px !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .1) !important;
        display: inline-flex !important;
        flex: 0 0 42px !important;
        height: 42px !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        position: relative !important;
        transform: none !important;
        width: 42px !important;
    }

    .mobile-header-actions .search-mobile-toggle svg {
        height: 19px !important;
        width: 19px !important;
    }

    .mobile-header-actions .hamburger span {
        background: #f7f2e8 !important;
        height: 2px !important;
        left: 11px !important;
        width: 18px !important;
    }

    .mobile-header-actions .hamburger span:nth-child(1) {
        top: 13px !important;
    }

    .mobile-header-actions .hamburger span:nth-child(2) {
        top: 20px !important;
    }

    .mobile-header-actions .hamburger span:nth-child(3) {
        top: 27px !important;
    }

    .mobile-header-actions .hamburger.is-active span:nth-child(1),
    .mobile-header-actions .hamburger.is-active span:nth-child(3) {
        top: 20px !important;
    }

    .mobile-header-actions .search-field {
        left: auto !important;
        max-width: calc(100vw - 28px) !important;
        right: 0 !important;
        top: calc(100% + 12px) !important;
        width: min(340px, calc(100vw - 28px)) !important;
    }

    .mobile-header-actions .live-search-results {
        left: auto !important;
        max-width: calc(100vw - 28px) !important;
        right: 0 !important;
        top: calc(100% + 66px) !important;
        width: min(340px, calc(100vw - 28px)) !important;
    }

    .site-nav:not(.mobile-menu-drawer) {
        background: rgba(5, 5, 5, .96) !important;
        border-left: 1px solid rgba(255, 255, 255, .08) !important;
        box-shadow: -22px 0 70px rgba(0, 0, 0, .58) !important;
        display: flex !important;
        height: 100dvh !important;
        max-height: none !important;
        overflow-y: auto !important;
        padding: 86px 22px 26px !important;
        position: fixed !important;
        right: 0 !important;
        top: 0 !important;
        transform: translateX(105%) !important;
        width: min(82vw, 340px) !important;
        z-index: 1001 !important;
    }

    .site-nav:not(.mobile-menu-drawer).is-open {
        transform: translateX(0) !important;
    }

    .menu-overlay {
        z-index: 999 !important;
    }
}

@media (max-width: 425px) {
    .mobile-header-actions {
        gap: 8px !important;
    }

    .mobile-header-actions .live-search,
    .mobile-header-actions .search-mobile-toggle,
    .mobile-header-actions .hamburger {
        flex-basis: 40px !important;
        height: 40px !important;
        width: 40px !important;
    }
}

/* Final mobile menu visibility fix: full-width dropdown avoids off-screen drawers */
@media (max-width: 768px) {
    body.menu-open,
    body.menu-open .home-main {
        overflow-x: hidden !important;
    }

    .site-nav:not(.mobile-menu-drawer) {
        align-items: stretch !important;
        background:
            radial-gradient(circle at 90% 0%, rgba(212, 175, 55, .16), transparent 34%),
            rgba(5, 5, 5, .98) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-radius: 0 0 8px 8px !important;
        box-shadow: 0 26px 70px rgba(0, 0, 0, .72), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        height: auto !important;
        left: 0 !important;
        max-height: calc(100dvh - 60px) !important;
        opacity: 0 !important;
        overflow-y: auto !important;
        padding: 14px 18px 20px !important;
        pointer-events: none !important;
        position: fixed !important;
        right: 0 !important;
        top: 60px !important;
        transform: translateY(-16px) !important;
        transition: opacity .24s ease, transform .24s ease !important;
        visibility: hidden !important;
        width: 100vw !important;
        z-index: 1200 !important;
    }

    .site-nav:not(.mobile-menu-drawer).is-open {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    .site-nav > a,
    .site-nav .inline-logout-form button {
        align-items: center !important;
        background: transparent !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
        border-radius: 0 !important;
        color: #f7f2e8 !important;
        display: flex !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        justify-content: space-between !important;
        min-height: 48px !important;
        opacity: 1 !important;
        padding: 13px 4px !important;
        text-align: left !important;
        transform: none !important;
        width: 100% !important;
    }

    .site-nav > a::after {
        display: none !important;
    }

    .site-nav .login-btn,
    .site-nav .register-btn,
    .site-nav .inline-logout-form button {
        border-radius: 999px !important;
        justify-content: center !important;
        margin-top: 12px !important;
        min-height: 46px !important;
        padding: 12px 16px !important;
        text-align: center !important;
    }

    .site-nav .login-btn {
        border: 1px solid rgba(212, 175, 55, .5) !important;
    }

    .site-nav .register-btn {
        background: linear-gradient(135deg, #f8e59d, #d4af37, #9f7412) !important;
        color: #050505 !important;
    }

    .site-nav .inline-logout-form {
        margin: 0 !important;
        width: 100% !important;
    }

    .menu-overlay {
        background: rgba(0, 0, 0, .68) !important;
        z-index: 1100 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Authoritative mobile structure normalization */
@media (max-width: 768px) {
    html,
    body {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .home-body,
    .home-main {
        display: block !important;
        max-width: 100% !important;
        min-height: 0 !important;
        overflow-x: hidden !important;
        position: relative !important;
    }

    body::after,
    .home-body::before,
    .home-body::after,
    .lux-hero::before,
    .lux-hero::after,
    .site-footer::after {
        max-width: 100vw !important;
        pointer-events: none !important;
    }

    body::after,
    .home-body::after {
        filter: blur(36px) !important;
        height: 180px !important;
        opacity: .45 !important;
        right: -80px !important;
        top: 84px !important;
        width: 180px !important;
    }

    .site-header,
    .home-body .site-header {
        align-items: center !important;
        column-gap: 8px !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        height: 60px !important;
        inset: 0 0 auto 0 !important;
        justify-content: space-between !important;
        max-height: 60px !important;
        min-height: 60px !important;
        overflow: visible !important;
        padding: 8px 12px !important;
        position: fixed !important;
        width: 100% !important;
        z-index: 1400 !important;
    }

    .site-header::before,
    .home-body .site-header::before,
    .nav-glow {
        height: 60px !important;
        max-height: 60px !important;
    }

    .brand,
    .ott-brand {
        align-items: center !important;
        display: inline-flex !important;
        flex: 0 1 auto !important;
        font-size: clamp(16px, 4.4vw, 21px) !important;
        margin: 0 !important;
        max-width: calc(100vw - 118px) !important;
        min-width: 56px !important;
        overflow: hidden !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .ott-brand .brand-icon,
    .ott-brand .brand-logo-image {
        flex-shrink: 0 !important;
    }

    .ott-brand .brand-text,
    .ott-brand span:last-child {
        min-width: 0 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .brand-icon {
        flex: 0 0 34px !important;
        height: 34px !important;
        width: 34px !important;
    }

    .mobile-header-actions {
        align-items: center !important;
        display: flex !important;
        flex: 0 0 auto !important;
        gap: 8px !important;
        margin-left: auto !important;
        z-index: 1410 !important;
    }

    .mobile-header-actions .live-search {
        flex: 0 0 40px !important;
        min-width: 0 !important;
        width: 40px !important;
    }

    .mobile-header-actions .search-mobile-toggle,
    .mobile-header-actions .hamburger {
        display: inline-flex !important;
        flex: 0 0 40px !important;
        height: 40px !important;
        width: 40px !important;
    }

    .site-nav:not(.mobile-menu-drawer) {
        background:
            radial-gradient(circle at 90% 0%, rgba(212, 175, 55, .16), transparent 34%),
            rgba(5, 5, 5, .98) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-radius: 0 0 8px 8px !important;
        box-shadow: 0 26px 70px rgba(0, 0, 0, .72), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        height: auto !important;
        left: 0 !important;
        max-height: calc(100dvh - 60px) !important;
        opacity: 0 !important;
        overflow-y: auto !important;
        padding: 14px 18px 20px !important;
        pointer-events: none !important;
        position: fixed !important;
        right: 0 !important;
        top: 60px !important;
        transform: translateY(-12px) !important;
        transition: opacity .22s ease, transform .22s ease, visibility .22s ease !important;
        visibility: hidden !important;
        width: 100vw !important;
        z-index: 1450 !important;
    }

    .site-nav:not(.mobile-menu-drawer).is-open {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    .menu-overlay {
        background: rgba(0, 0, 0, .58) !important;
        z-index: 1200 !important;
    }

    .lux-hero {
        display: block !important;
        height: auto !important;
        margin: 0 !important;
        min-height: auto !important;
        overflow: hidden !important;
        padding: 100px 20px 60px !important;
        position: relative !important;
    }

    .hero-slide,
    .hero-slide.is-active {
        min-height: 0 !important;
        position: relative !important;
        transform: none !important;
        width: 100% !important;
    }

    .hero-slide:not(.is-active) {
        display: none !important;
    }

    .hero-slide.is-active {
        display: block !important;
    }

    .hero-content {
        inset: auto !important;
        margin: 0 !important;
        max-width: 100% !important;
        padding: 0 !important;
        position: relative !important;
        transform: none !important;
        width: 100% !important;
    }

    .hero-content h1 {
        font-size: clamp(28px, 9vw, 52px) !important;
        line-height: 1.05 !important;
        margin-bottom: 16px !important;
        max-width: 12ch !important;
    }

    .hero-content p {
        font-size: 15px !important;
        line-height: 1.55 !important;
        margin-bottom: 24px !important;
    }

    .home-section {
        clear: both !important;
        display: block !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        padding: 40px 20px !important;
        position: relative !important;
        width: 100% !important;
    }

    .horizontal-rail {
        display: grid !important;
        gap: 16px !important;
        grid-auto-flow: unset !important;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
        margin: 0 !important;
        overflow: visible !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .rated-grid,
    .clip-grid {
        display: grid !important;
        gap: 16px !important;
        grid-template-columns: 1fr !important;
        margin: 0 !important;
        overflow: visible !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .glass-movie-card,
    .rated-card,
    .clip-card,
    .lux-empty,
    .site-footer {
        backdrop-filter: blur(8px) saturate(115%) !important;
        max-width: 100% !important;
    }

    .site-footer {
        clear: both !important;
        margin: 0 !important;
        overflow: hidden !important;
        padding: 40px 20px 24px !important;
        position: relative !important;
        width: 100% !important;
        z-index: 1 !important;
    }

    .footer-inner {
        display: grid !important;
        gap: 24px !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
    }

    .footer-bottom {
        align-items: center !important;
        flex-direction: column !important;
        gap: 8px !important;
        text-align: center !important;
    }

    .site-footer + .site-footer {
        display: none !important;
    }
}

@media (max-width: 425px) {
    .lux-hero {
        padding: 92px 18px 52px !important;
    }

    .home-section,
    .site-footer {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }
}

@media (max-width: 360px) {
    .brand,
    .ott-brand {
        max-width: calc(100vw - 96px) !important;
    }

    .brand-icon {
        flex-basis: 32px !important;
        height: 32px !important;
        width: 32px !important;
    }

    .mobile-header-actions .live-search,
    .mobile-header-actions .search-mobile-toggle,
    .mobile-header-actions .hamburger {
        flex-basis: 38px !important;
        height: 38px !important;
        width: 38px !important;
    }

    .hero-content h1 {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    body.menu-open {
        height: 100vh !important;
        overflow: hidden !important;
    }

    body.menu-open .home-main,
    body.menu-open .site-footer {
        filter: brightness(.72);
        transform: none !important;
    }

    .mobile-menu-overlay {
        backdrop-filter: blur(8px) !important;
        background: rgba(0, 0, 0, .7) !important;
        inset: 0 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: fixed !important;
        transition: opacity .3s ease, visibility .3s ease !important;
        visibility: hidden !important;
        z-index: 1500 !important;
    }

    .mobile-menu-overlay.is-visible {
        opacity: 1 !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }

    .site-header,
    .home-body .site-header {
        z-index: 1700 !important;
    }

    .mobile-header-actions {
        z-index: 1800 !important;
    }

    .mobile-header-actions .hamburger {
        z-index: 1900 !important;
    }

    .mobile-header-actions .hamburger.is-active {
        background: rgba(255, 255, 255, .1) !important;
        border-color: rgba(247, 223, 142, .42) !important;
        box-shadow: 0 0 24px rgba(212, 175, 55, .24), inset 0 1px 0 rgba(255, 255, 255, .14) !important;
        position: fixed !important;
        right: 18px !important;
        top: 16px !important;
    }

    .mobile-menu-drawer,
    .site-nav.mobile-menu-drawer {
        -webkit-overflow-scrolling: touch;
        align-items: stretch !important;
        backdrop-filter: blur(20px) saturate(130%) !important;
        background:
            radial-gradient(circle at 100% 0%, rgba(212, 175, 55, .16), transparent 34%),
            linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
            rgba(10, 10, 10, .92) !important;
        border: 0 !important;
        border-left: 1px solid rgba(212, 175, 55, .2) !important;
        border-radius: 0 !important;
        box-shadow: -26px 0 90px rgba(0, 0, 0, .68), inset 1px 0 0 rgba(255, 255, 255, .06) !important;
        display: block !important;
        height: 100vh !important;
        height: 100dvh !important;
        left: auto !important;
        max-height: none !important;
        max-width: 340px !important;
        opacity: 1 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        padding: 0 !important;
        pointer-events: auto !important;
        position: fixed !important;
        right: 0 !important;
        top: 0 !important;
        transform: translate3d(100%, 0, 0) !important;
        transition: transform .35s cubic-bezier(.2, .8, .2, 1) !important;
        visibility: visible !important;
        width: min(85vw, 340px) !important;
        will-change: transform;
        z-index: 1600 !important;
    }

    .mobile-menu-drawer.is-open,
    .site-nav.mobile-menu-drawer.is-open {
        transform: translate3d(0, 0, 0) !important;
    }

    .mobile-menu-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        min-height: 100% !important;
        padding: 72px 20px 32px !important;
        width: 100% !important;
    }

    .mobile-menu-content > a,
    .mobile-menu-content .inline-logout-form button {
        align-items: center !important;
        background: transparent !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, .09) !important;
        border-radius: 0 !important;
        color: #f7f2e8 !important;
        display: flex !important;
        font-size: 20px !important;
        font-weight: 600 !important;
        justify-content: flex-start !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        min-height: 56px !important;
        padding: 16px 0 !important;
        text-align: left !important;
        transform: none !important;
        transition: color .22s ease, text-shadow .22s ease, transform .22s ease !important;
        width: 100% !important;
    }

    .mobile-menu-content > a::after {
        display: none !important;
    }

    .mobile-menu-content > a:hover,
    .mobile-menu-content .inline-logout-form button:hover {
        color: #f7df8e !important;
        text-shadow: 0 0 18px rgba(212, 175, 55, .35) !important;
        transform: translateX(6px) !important;
    }

    .mobile-menu-content .login-btn,
    .mobile-menu-content .register-btn,
    .mobile-menu-content .inline-logout-form button {
        border: 1px solid rgba(212, 175, 55, .34) !important;
        border-radius: 999px !important;
        justify-content: center !important;
        margin-top: 18px !important;
        min-height: 50px !important;
        padding: 14px 18px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .mobile-menu-content .login-btn {
        background: rgba(255, 255, 255, .055) !important;
        color: #f7df8e !important;
    }

    .mobile-menu-content .register-btn {
        background:
            linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, .5) 45%, transparent 56% 100%),
            linear-gradient(135deg, #f8e59d, #d4af37, #9f7412) !important;
        color: #050505 !important;
    }

    .mobile-menu-content .inline-logout-form {
        margin: 0 !important;
        width: 100% !important;
    }
}

@media (max-width: 425px) {
    .mobile-menu-drawer,
    .site-nav.mobile-menu-drawer {
        width: min(88vw, 330px) !important;
    }

    .mobile-menu-content {
        padding: 68px 18px 30px !important;
    }

    .mobile-header-actions .hamburger.is-active {
        right: 14px !important;
        top: 10px !important;
    }
}

@media (max-width: 340px) {
    .mobile-menu-drawer,
    .site-nav.mobile-menu-drawer {
        width: min(92vw, 310px) !important;
    }

    .mobile-menu-content {
        padding: 64px 16px 28px !important;
    }

    .mobile-menu-content > a,
    .mobile-menu-content .inline-logout-form button {
        font-size: 18px !important;
        min-height: 52px !important;
    }
}

/* Mobile-only premium OTT auth flow */
@media (max-width: 768px) {
    .live-login-body {
        background:
            radial-gradient(circle at 78% 4%, rgba(212, 175, 55, .13), transparent 30%),
            radial-gradient(circle at 12% 72%, rgba(245, 210, 122, .06), transparent 34%),
            #050505 !important;
        min-height: 100svh !important;
        overflow-x: hidden !important;
    }

    .live-login-body .poster-bg {
        background-attachment: scroll !important;
        background-position: center top !important;
        filter: saturate(1.05) contrast(1.04) !important;
        opacity: .38 !important;
        transform: none !important;
    }

    .live-login-body .poster-bg::after {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, .3), rgba(5, 5, 5, .78) 42%, #050505 100%),
            linear-gradient(90deg, rgba(5, 5, 5, .72), rgba(5, 5, 5, .38), rgba(5, 5, 5, .78)) !important;
    }

    .live-login-body .cinema-glow {
        filter: blur(42px) !important;
        opacity: .26 !important;
    }

    .live-login-body .cinema-glow-one {
        background: #d4af37 !important;
        height: 160px !important;
        left: -70px !important;
        top: 12% !important;
        width: 160px !important;
    }

    .live-login-body .cinema-glow-two {
        background: #f5d27a !important;
        bottom: 18% !important;
        height: 140px !important;
        right: -76px !important;
        width: 140px !important;
    }

    .live-login-body .login-shell {
        align-items: stretch !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        grid-template-columns: none !important;
        justify-content: flex-start !important;
        max-width: 520px !important;
        min-height: 0 !important;
        padding:
            80px max(16px, env(safe-area-inset-left, 0px))
            max(28px, calc(16px + env(safe-area-inset-bottom, 0px)))
            max(16px, env(safe-area-inset-right, 0px)) !important;
        text-align: left !important;
        width: 100% !important;
    }

    .live-login-body .back-link {
        backdrop-filter: blur(12px) saturate(120%) !important;
        background: rgba(255, 255, 255, .055) !important;
        border-color: rgba(255, 255, 255, .08) !important;
        box-shadow: 0 12px 28px rgba(0, 0, 0, .24) !important;
        font-size: 13px !important;
        left: 18px !important;
        padding: 9px 12px !important;
        position: absolute !important;
        top: 18px !important;
    }

    .live-login-body .hero-copy {
        margin: 0 !important;
        padding: 0 2px 0 !important;
    }

    .live-login-body .login-badge {
        color: #f5d27a !important;
        font-size: 10px !important;
        letter-spacing: .12em !important;
        margin-bottom: 10px !important;
    }

    .live-login-body .hero-copy h1 {
        font-size: 34px !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        line-height: 1.05 !important;
        margin: 0 0 12px !important;
        max-width: 11ch !important;
    }

    .live-login-body .hero-copy p {
        color: rgba(243, 231, 194, .78) !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin: 0 !important;
        max-width: 34rem !important;
    }

    .live-login-body .login-tags {
        gap: 8px !important;
        justify-content: flex-start !important;
        margin-top: 16px !important;
    }

    .live-login-body .login-tags span {
        backdrop-filter: blur(10px) !important;
        background: rgba(255, 255, 255, .055) !important;
        border-color: rgba(212, 175, 55, .16) !important;
        border-radius: 999px !important;
        color: rgba(243, 231, 194, .78) !important;
        font-size: 10px !important;
        letter-spacing: .06em !important;
        padding: 7px 10px !important;
    }

    .live-login-body .login-card {
        backdrop-filter: blur(14px) saturate(126%) !important;
        background: rgba(20, 20, 20, .55) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        border-radius: 20px !important;
        box-shadow: 0 22px 58px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
        margin: 0 !important;
        overflow: hidden !important;
        padding: 22px 18px 20px !important;
        position: relative !important;
        width: 100% !important;
    }

    .live-login-body .login-card::before {
        background:
            linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 40%) !important;
        border-radius: inherit !important;
        content: "" !important;
        inset: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
    }

    .live-login-body .login-card::after {
        opacity: 0 !important;
    }

    .live-login-body .card-heading {
        margin-bottom: 18px !important;
    }

    .live-login-body .card-heading h2 {
        color: #f3e7c2 !important;
        font-size: 25px !important;
        line-height: 1.12 !important;
        margin: 0 0 8px !important;
    }

    .live-login-body .card-heading p,
    .live-login-body .signup-link,
    .live-login-body .form-row {
        color: rgba(255, 255, 255, .68) !important;
    }

    .live-login-body .card-heading p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .live-login-body .login-form {
        gap: 9px !important;
    }

    .live-login-body .login-form label {
        color: rgba(243, 231, 194, .86) !important;
        font-size: 11px !important;
        letter-spacing: .08em !important;
    }

    .live-login-body .login-form input {
        background: rgba(255, 255, 255, .05) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        border-radius: 14px !important;
        color: #f3e7c2 !important;
        min-height: 46px !important;
        padding: 11px 13px !important;
    }

    .live-login-body .login-form input:focus {
        border-color: #d4af37 !important;
        box-shadow: 0 0 10px rgba(212, 175, 55, .2), inset 0 1px 0 rgba(255, 255, 255, .06) !important;
    }

    .live-login-body .password-field input {
        padding-right: 66px !important;
    }

    .live-login-body .password-field button {
        color: #f5d27a !important;
        font-size: 13px !important;
        right: 12px !important;
    }

    .live-login-body .form-row {
        font-size: 13px !important;
        margin: 2px 0 4px !important;
    }

    .live-login-body .login-button {
        border-radius: 999px !important;
        box-shadow: 0 12px 28px rgba(212, 175, 55, .22), inset 0 1px 0 rgba(255, 255, 255, .28) !important;
        height: 50px !important;
        margin-top: 5px !important;
        min-height: 50px !important;
        padding: 0 18px !important;
    }

    .live-login-body .login-button:hover {
        box-shadow: 0 16px 34px rgba(212, 175, 55, .3), inset 0 1px 0 rgba(255, 255, 255, .34) !important;
        transform: scale(1.02) !important;
    }

    .live-login-body .signup-link {
        font-size: 14px !important;
        margin: 16px 0 0 !important;
        text-align: center !important;
    }

    .live-login-body .alert {
        border-radius: 14px !important;
        font-size: 13px !important;
        margin-bottom: 14px !important;
        padding: 10px 12px !important;
    }
}

@media (max-width: 425px) {
    .live-login-body .login-shell {
        gap: 18px !important;
        padding: 86px 16px 26px !important;
    }

    .live-login-body .hero-copy h1 {
        font-size: 32px !important;
    }

    .live-login-body .login-card {
        padding: 20px 16px 18px !important;
    }
}

@media (max-width: 340px) {
    .live-login-body .login-shell {
        padding: 78px 14px 22px !important;
    }

    .live-login-body .hero-copy h1 {
        font-size: 28px !important;
    }

    .live-login-body .hero-copy p {
        font-size: 14px !important;
    }

    .live-login-body .login-tags {
        display: none !important;
    }

    .live-login-body .card-heading h2 {
        font-size: 22px !important;
    }
}

/* True mobile OTT onboarding composition */
.auth-mobile-brand {
    display: none;
}

@media (max-width: 768px) {
    .live-login-body {
        background:
            radial-gradient(circle at 78% 8%, rgba(212, 175, 55, .12), transparent 30%),
            linear-gradient(180deg, rgba(5, 5, 5, .2), #050505 72%),
            #050505 !important;
        color: #f3e7c2 !important;
    }

    .live-login-body .poster-bg {
        opacity: .26 !important;
        transform: scale(1.02) !important;
    }

    .live-login-body .poster-bg::after {
        background:
            radial-gradient(circle at 74% 14%, rgba(212, 175, 55, .1), transparent 28%),
            linear-gradient(180deg, rgba(5, 5, 5, .44), rgba(5, 5, 5, .86) 56%, #050505 100%) !important;
    }

    .live-login-body .cinema-glow {
        animation: none !important;
        filter: blur(34px) !important;
        opacity: .18 !important;
    }

    .live-login-body .login-shell {
        align-items: stretch !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        justify-content: flex-start !important;
        margin: 0 auto !important;
        max-width: 430px !important;
        min-height: 0 !important;
        padding:
            72px max(14px, env(safe-area-inset-left, 0px))
            max(28px, calc(12px + env(safe-area-inset-bottom, 0px)))
            max(14px, env(safe-area-inset-right, 0px)) !important;
        position: relative !important;
        text-align: left !important;
        width: 100% !important;
    }

    .live-login-body .back-link {
        align-items: center !important;
        background: rgba(255, 255, 255, .055) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        font-size: 0 !important;
        height: 40px !important;
        justify-content: center !important;
        left: 18px !important;
        padding: 0 !important;
        top: 18px !important;
        width: 40px !important;
    }

    .live-login-body .back-link::before {
        color: #f5d27a;
        content: "<";
        font-size: 20px;
        font-weight: 900;
        line-height: 1;
    }

    .auth-mobile-brand {
        align-items: center;
        display: inline-flex !important;
        gap: 10px;
        left: 50%;
        position: absolute;
        top: 18px;
        transform: translateX(-50%);
        z-index: 2;
    }

    .auth-mobile-brand span:last-child {
        background: linear-gradient(90deg, #f3e7c2, #f5d27a, #d4af37);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-family: Poppins, Inter, Arial, sans-serif;
        font-size: 21px;
        font-weight: 900;
        text-shadow: 0 0 16px rgba(212, 175, 55, .24);
    }

    .auth-mobile-brand .brand-icon {
        flex: 0 0 34px;
        height: 34px;
        width: 34px;
    }

    .live-login-body .hero-copy {
        display: contents !important;
    }

    .live-login-body .hero-copy .login-badge {
        order: 1;
    }

    .live-login-body .hero-copy h1 {
        font-size: clamp(26px, 7vw, 36px) !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        line-height: 1.08 !important;
        margin: 0 !important;
        max-width: 100% !important;
        order: 2;
    }

    .live-login-body .hero-copy p {
        color: rgba(255, 255, 255, .72) !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin: 0 0 2px !important;
        max-width: 100% !important;
        order: 3;
    }

    .live-login-body .login-card {
        backdrop-filter: blur(14px) saturate(118%) !important;
        background: rgba(18, 18, 18, .55) !important;
        border: 1px solid rgba(255, 255, 255, .06) !important;
        border-radius: 22px !important;
        box-shadow: 0 18px 44px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .07) !important;
        order: 4;
        padding: 18px 16px 16px !important;
    }

    .live-login-body .login-card > a.auth-card-brand {
        display: none !important;
    }

    .live-login-body .login-card::before {
        background: linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 40%) !important;
    }

    .live-login-body .card-heading {
        margin-bottom: 14px !important;
    }

    .live-login-body .card-heading .login-badge,
    .live-login-body .card-heading p {
        display: none !important;
    }

    .live-login-body .card-heading h2 {
        font-size: 22px !important;
        line-height: 1.12 !important;
        margin: 0 !important;
    }

    .live-login-body .login-form {
        gap: 8px !important;
    }

    .live-login-body .login-form label {
        font-size: 11px !important;
        margin-top: 2px !important;
    }

    .live-login-body .login-form input {
        border-color: rgba(255, 255, 255, .08) !important;
        border-radius: 14px !important;
        height: 46px !important;
        min-height: 46px !important;
    }

    .live-login-body .login-button {
        height: 48px !important;
        margin-top: 8px !important;
        min-height: 48px !important;
        overflow: visible !important;
        position: relative !important;
    }

    .live-login-body .login-button::before {
        background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, .48) 45%, transparent 56% 100%);
        content: "";
        inset: 0;
        opacity: .7;
        position: absolute;
        transform: translateX(-115%);
        transition: transform .7s ease;
    }

    .live-login-body .login-button:hover::before {
        transform: translateX(115%);
    }

    .live-login-body .signup-link {
        margin-top: 14px !important;
    }

    .live-login-body .login-tags {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        justify-content: flex-start !important;
        margin: 2px -18px 0 !important;
        order: 5;
        overflow-x: auto !important;
        padding: 2px 18px 4px !important;
        scrollbar-width: none;
        white-space: nowrap !important;
    }

    .live-login-body .login-tags::-webkit-scrollbar {
        display: none;
    }

    .live-login-body .login-tags span {
        flex: 0 0 auto !important;
        font-size: 10px !important;
        padding: 8px 10px !important;
    }

    .live-login-body .login-shell::after {
        color: rgba(255, 255, 255, .42);
        content: "Premium cinema access";
        font-size: 12px;
        order: 6;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .live-login-body .login-shell {
        gap: 12px !important;
        padding: 70px 16px 18px !important;
    }

    .live-login-body .login-card {
        padding: 20px !important;
    }
}

@media (max-width: 340px) {
    .live-login-body .login-shell {
        padding: 66px 14px 16px !important;
    }

    .live-login-body .hero-copy h1 {
        font-size: 28px !important;
    }

    .live-login-body .hero-copy p {
        font-size: 14px !important;
    }

    .live-login-body .login-card {
        padding: 18px !important;
    }
}

/* Mobile auth scroll and compact-height fix */
@media (max-width: 768px) {
    html,
    .live-login-body {
        height: auto !important;
        min-height: 100% !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .live-login-body {
        -webkit-overflow-scrolling: touch;
    }

    .live-login-body .login-shell {
        justify-content: flex-start !important;
        min-height: auto !important;
        overflow: visible !important;
        padding-top: 82px !important;
        padding-bottom: 24px !important;
    }

    .live-login-body .hero-copy h1 {
        font-size: clamp(28px, 8.8vw, 38px) !important;
        max-width: 12ch !important;
    }

    .live-login-body .hero-copy p {
        font-size: 15px !important;
        line-height: 1.45 !important;
    }

    .live-login-body .login-card {
        flex: 0 0 auto !important;
        padding: 20px !important;
    }

    .live-login-body .login-form input {
        height: 46px !important;
        min-height: 46px !important;
    }

    .live-login-body .login-button {
        height: 48px !important;
        min-height: 48px !important;
    }
}

@media (max-width: 425px) {
    .live-login-body .login-shell {
        padding-top: 76px !important;
    }

    .live-login-body .hero-copy h1 {
        font-size: 34px !important;
    }
}

@media (max-width: 360px) {
    .live-login-body .login-shell {
        gap: 10px !important;
        padding: 68px 14px 18px !important;
    }

    .live-login-body .hero-copy h1 {
        font-size: 28px !important;
    }

    .live-login-body .hero-copy p {
        font-size: 13px !important;
    }

    .live-login-body .login-card {
        padding: 16px !important;
    }
}

/* High-end mobile OTT auth refinement */
@media (max-width: 768px) {
    .live-login-body {
        background:
            radial-gradient(circle at 72% 10%, rgba(212, 175, 55, .105), transparent 28%),
            radial-gradient(circle at 12% 88%, rgba(245, 210, 122, .045), transparent 32%),
            #040404 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .live-login-body .poster-bg {
        opacity: .18 !important;
        transform: scale(1.04) !important;
    }

    .live-login-body .poster-bg::after {
        background:
            linear-gradient(180deg, rgba(4, 4, 4, .58), rgba(4, 4, 4, .88) 52%, #040404 100%),
            linear-gradient(90deg, rgba(4, 4, 4, .82), rgba(4, 4, 4, .52), rgba(4, 4, 4, .86)) !important;
    }

    .live-login-body .cinema-glow {
        animation: none !important;
        filter: blur(30px) !important;
        opacity: .14 !important;
    }

    .live-login-body .login-shell {
        gap: 12px !important;
        justify-content: flex-start !important;
        max-width: 420px !important;
        min-height: 0 !important;
        padding:
            76px max(16px, env(safe-area-inset-left, 0px))
            max(28px, calc(14px + env(safe-area-inset-bottom, 0px)))
            max(16px, env(safe-area-inset-right, 0px)) !important;
    }

    .live-login-body .back-link {
        backdrop-filter: blur(12px) saturate(120%) !important;
        background: rgba(255, 255, 255, .06) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        box-shadow: 0 10px 26px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
        height: 42px !important;
        left: 20px !important;
        top: 24px !important;
        width: 42px !important;
    }

    .auth-mobile-brand {
        top: 25px !important;
    }

    .auth-mobile-brand .brand-icon {
        border-radius: 12px !important;
        flex-basis: 30px !important;
        font-size: 10px !important;
        height: 30px !important;
        width: 30px !important;
    }

    .auth-mobile-brand span:last-child {
        font-size: 18px !important;
        letter-spacing: 0 !important;
    }

    .live-login-body .hero-copy .login-badge {
        color: #f5d27a !important;
        font-size: 10px !important;
        letter-spacing: .16em !important;
        margin: 0 !important;
        order: 1;
    }

    .live-login-body .hero-copy h1 {
        color: #f3e7c2 !important;
        font-size: clamp(26px, 7.2vw, 34px) !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        line-height: 1.08 !important;
        margin: -2px 0 0 !important;
        max-width: 100% !important;
        order: 2;
        text-shadow: 0 14px 44px rgba(0, 0, 0, .55) !important;
    }

    .live-login-body .hero-copy p {
        color: rgba(255, 255, 255, .72) !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin: -2px 0 6px !important;
        max-width: 100% !important;
        order: 3;
    }

    .live-login-body .login-card {
        backdrop-filter: blur(16px) saturate(122%) !important;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)),
            rgba(14, 14, 14, .72) !important;
        border: 1px solid rgba(255, 255, 255, .06) !important;
        border-radius: 20px !important;
        box-shadow:
            0 18px 48px rgba(0, 0, 0, .42),
            0 0 0 1px rgba(212, 175, 55, .045),
            inset 0 1px 0 rgba(255, 255, 255, .075) !important;
        order: 4;
        padding: 18px 16px 16px !important;
    }

    .live-login-body .login-card > a.auth-card-brand {
        display: none !important;
    }

    .live-login-body .login-card::before {
        background:
            linear-gradient(120deg, rgba(255, 255, 255, .085), transparent 38%),
            linear-gradient(90deg, rgba(212, 175, 55, .16), transparent 34%, transparent 66%, rgba(212, 175, 55, .08)) !important;
        opacity: .74 !important;
    }

    .live-login-body .card-heading {
        margin-bottom: 16px !important;
    }

    .live-login-body .card-heading .login-badge,
    .live-login-body .card-heading p {
        display: none !important;
    }

    .live-login-body .card-heading h2 {
        color: #f3e7c2 !important;
        font-size: 21px !important;
        font-weight: 800 !important;
        letter-spacing: 0 !important;
        line-height: 1.15 !important;
        margin: 0 !important;
    }

    .live-login-body .login-form {
        gap: 10px !important;
    }

    .live-login-body .login-form label {
        color: rgba(243, 231, 194, .78) !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        letter-spacing: .1em !important;
    }

    .live-login-body .login-form input {
        background: rgba(255, 255, 255, .04) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        border-radius: 14px !important;
        color: #f3e7c2 !important;
        height: 46px !important;
        min-height: 46px !important;
        padding: 0 14px !important;
        transition: border-color .22s ease, box-shadow .22s ease, background .22s ease !important;
    }

    .live-login-body .login-form input::placeholder {
        color: rgba(255, 255, 255, .42) !important;
    }

    .live-login-body .login-form input:focus {
        background: rgba(255, 255, 255, .055) !important;
        border-color: rgba(212, 175, 55, .5) !important;
        box-shadow: 0 0 14px rgba(212, 175, 55, .15), inset 0 1px 0 rgba(255, 255, 255, .06) !important;
    }

    .live-login-body .password-field input {
        padding-right: 68px !important;
    }

    .live-login-body .password-field button {
        color: #d8c89a !important;
        font-size: 13px !important;
        font-weight: 700 !important;
    }

    .live-login-body .login-button {
        background:
            linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, .5) 45%, transparent 56% 100%),
            linear-gradient(135deg, #d4af37, #f5d27a) !important;
        background-size: 240% 100%, 100% 100% !important;
        border-radius: 999px !important;
        box-shadow: 0 14px 30px rgba(212, 175, 55, .22), inset 0 1px 0 rgba(255, 255, 255, .34) !important;
        color: #120d02 !important;
        font-weight: 600 !important;
        height: 48px !important;
        letter-spacing: 0 !important;
        min-height: 48px !important;
        transition: background-position .7s ease, box-shadow .22s ease, transform .22s ease !important;
    }

    .live-login-body .login-button:hover {
        background-position: -130% 0, 0 0 !important;
        box-shadow: 0 18px 36px rgba(212, 175, 55, .3), inset 0 1px 0 rgba(255, 255, 255, .38) !important;
        transform: translateY(-1px) scale(1.01) !important;
    }

    .live-login-body .form-row {
        margin: 0 !important;
    }

    .live-login-body .signup-link {
        color: rgba(255, 255, 255, .62) !important;
        font-size: 13px !important;
        margin-top: 14px !important;
    }

    .live-login-body .signup-link a,
    .live-login-body .form-row a {
        color: #f5d27a !important;
    }

    .live-login-body .login-tags {
        margin-top: 0 !important;
        order: 5;
    }

    .live-login-body .login-tags span {
        background: rgba(255, 255, 255, .045) !important;
        border-color: rgba(212, 175, 55, .14) !important;
        color: rgba(255, 255, 255, .62) !important;
    }

    .live-login-body .login-shell::after {
        color: rgba(255, 255, 255, .36) !important;
        margin-top: -4px;
    }
}

@media (max-width: 390px) {
    .live-login-body .login-shell {
        gap: 14px !important;
        padding: 78px 16px 22px !important;
    }

    .live-login-body .hero-copy h1 {
        font-size: 32px !important;
    }

    .live-login-body .hero-copy p {
        font-size: 14px !important;
    }

    .live-login-body .login-card {
        padding: 20px !important;
    }
}

@media (max-width: 340px) {
    .live-login-body .login-shell {
        padding: 72px 14px 18px !important;
    }

    .live-login-body .hero-copy h1 {
        font-size: 28px !important;
    }

    .live-login-body .login-card {
        padding: 18px !important;
    }

    .live-login-body .login-form input,
    .live-login-body .login-button {
        height: 48px !important;
        min-height: 48px !important;
    }
}

/* Keep main navigation visible when jumping to homepage anchors */
.site-header,
.home-body .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1400 !important;
}

#trending-movies,
#top-rated,
#latest-clips,
#mm-watchlist,
#mm-liked-clips {
    scroll-margin-top: 96px;
}

@media (max-width: 768px) {
    .site-header,
    .home-body .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1700 !important;
    }

    .home-main {
        padding-top: 0 !important;
    }

    #trending-movies,
    #top-rated,
    #latest-clips,
    #mm-watchlist,
    #mm-liked-clips {
        scroll-margin-top: 72px;
    }
}

.member-review-grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    overflow: visible;
}

.team-tabs {
    margin: 0 auto 54px;
    max-width: 1180px;
    padding: 22px;
}

.team-tabs > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.team-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.team-tab-nav label {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    color: rgba(247, 242, 232, .76);
    cursor: pointer;
    font-weight: 900;
    padding: 11px 16px;
    transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.team-tab-nav label:hover {
    color: #f5d27a;
    transform: translateY(-1px);
}

#team-tab-table:checked ~ .team-tab-nav label[for="team-tab-table"],
#team-tab-direct:checked ~ .team-tab-nav label[for="team-tab-direct"] {
    background: linear-gradient(135deg, rgba(212, 175, 55, .28), rgba(245, 210, 122, .12));
    border-color: rgba(245, 210, 122, .44);
    color: #f5d27a;
}

.team-tab-panel {
    display: none;
}

#team-tab-table:checked ~ .team-table-panel,
#team-tab-direct:checked ~ .team-direct-panel {
    display: block;
}

.team-tree {
    display: grid;
    gap: 10px;
}

.team-level-row {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 10px;
    display: grid;
    gap: 14px;
    grid-template-columns: 150px minmax(0, 1fr);
    overflow: hidden;
    padding: 14px;
}

.team-level-row aside {
    border-left: 3px solid #d4af37;
    display: grid;
    gap: 6px;
    padding: 12px 10px;
}

.team-level-row aside strong {
    color: #f5d27a;
    font-size: 13px;
    text-transform: uppercase;
}

.team-level-row aside span {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
}

.level-1 aside { border-color: #8b5cf6; }
.level-2 aside { border-color: #38bdf8; }
.level-3 aside { border-color: #22c55e; }
.level-4 aside { border-color: #f59e0b; }
.level-5 aside { border-color: #ec4899; }

.team-node-wrap {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.team-node {
    align-items: center;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
    display: grid;
    justify-items: center;
    min-width: 150px;
    padding: 12px;
    text-align: center;
}

.team-avatar {
    align-items: center;
    background: linear-gradient(135deg, #f5d27a, #d4af37);
    border-radius: 999px;
    color: #4a3204;
    display: inline-flex;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    margin-bottom: 8px;
    width: 42px;
}

.team-node strong {
    color: #f3e7c2;
    font-size: 14px;
}

.team-node span {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    margin-top: 4px;
}

.team-node em {
    background: rgba(212, 175, 55, .18);
    border-radius: 6px;
    color: #f5d27a;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    margin-top: 8px;
    padding: 5px 7px;
}

.team-summary-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 14px;
}

.team-summary-grid article {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 14px;
}

.team-summary-grid span {
    color: rgba(255, 255, 255, .68);
    display: block;
    font-size: 13px;
}

.team-summary-grid strong {
    color: #f5d27a;
    display: block;
    font-size: 24px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .team-tabs {
        margin: 84px 16px 42px;
        padding: 16px;
    }

    .team-tab-nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .team-tab-nav label {
        text-align: center;
    }

    .team-level-row {
        grid-template-columns: 1fr;
    }

    .team-node-wrap {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .team-node {
        min-width: 145px;
    }

    .team-summary-grid {
        grid-template-columns: 1fr;
    }

    .team-table-wrap {
        overflow-x: auto;
    }

    .team-table {
        min-width: 680px;
    }
}

/* Footer premium typography and glow balance */
.site-footer {
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, .08), transparent 52%),
        radial-gradient(circle at 12% 36%, rgba(245, 210, 122, .045), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012)),
        #030303 !important;
    color: #f3e7c2 !important;
}

.site-footer::after {
    background: radial-gradient(circle, rgba(212, 175, 55, .105), transparent 72%) !important;
    filter: blur(104px) !important;
    opacity: .42 !important;
}

.footer-logo {
    background: linear-gradient(90deg, #f3e7c2 0%, #f5d27a 42%, #d4af37 72%, #d8c89a 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    text-shadow: 0 0 18px rgba(212, 175, 55, .22) !important;
}

.footer-brand p {
    color: rgba(216, 200, 154, .82) !important;
}

.site-footer section a,
.footer-bottom,
.footer-newsletter input {
    color: rgba(255, 255, 255, .72) !important;
}

.site-footer section a:hover {
    color: #f5d27a !important;
    text-shadow: 0 0 16px rgba(245, 210, 122, .24) !important;
}

.footer-social a {
    border-color: rgba(212, 175, 55, .24) !important;
    color: rgba(255, 255, 255, .65) !important;
}

.footer-social a:hover {
    background: rgba(212, 175, 55, .12) !important;
    border-color: rgba(245, 210, 122, .58) !important;
    box-shadow: 0 0 22px rgba(212, 175, 55, .28) !important;
    color: #f5d27a !important;
}

/* Logo tile text should be warm/dark, not stark white */
.brand-icon {
    color: #4a3204 !important;
    font-weight: 900 !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .22) !important;
}

.referral-status {
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.4;
    margin: -3px 0 2px;
    min-height: 18px;
}

.referral-status.is-checking {
    color: rgba(216, 200, 154, .8);
}

.referral-status.is-valid {
    color: #f5d27a;
}

.referral-status.is-invalid {
    color: #fecaca;
}

/* Premium wallet/deposit dashboard polish */
body.dashboard-body:has(.wallet-invoices-panel) {
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, .08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, .03), transparent 40%),
        #050505 !important;
    color: #f3e7c2;
    overflow-x: hidden;
}

body.dashboard-body:has(.wallet-invoices-panel)::before {
    opacity: .34 !important;
    filter: saturate(.85) contrast(1.06) brightness(.56) !important;
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-main {
    max-width: 1480px;
    padding-top: 148px;
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-hero {
    align-items: center;
    gap: 40px;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
    margin-bottom: 30px;
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-hero h1 {
    color: #f3e7c2;
    font-size: clamp(24px, 2.35vw, 32px);
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 14px;
    max-width: none;
    text-shadow: 0 18px 60px rgba(0, 0, 0, .7);
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-hero p {
    color: rgba(255, 255, 255, .72);
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.7;
    max-width: 720px;
}

body.dashboard-body:has(.wallet-invoices-panel) .gold-kicker {
    color: #f5d27a;
    letter-spacing: .12em;
    text-shadow: 0 0 24px rgba(212, 175, 55, .22);
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-grid {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
}

body.dashboard-body:has(.wallet-invoices-panel) .glass-dashboard-card,
body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 34%),
        rgba(18, 18, 18, .72) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .06) !important;
    border-radius: 24px !important;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .04) !important;
    overflow: hidden;
    position: relative;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

body.dashboard-body:has(.wallet-invoices-panel) .glass-dashboard-card::before,
body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel::before {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .10), transparent 30%),
        radial-gradient(circle at 14% 0%, rgba(245, 210, 122, .12), transparent 34%);
    content: "";
    inset: 0;
    opacity: .78;
    pointer-events: none;
    position: absolute;
}

body.dashboard-body:has(.wallet-invoices-panel) .glass-dashboard-card > *,
body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel > * {
    position: relative;
    z-index: 1;
}

@media (hover: hover) {
    body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel:hover,
    body.dashboard-body:has(.wallet-invoices-panel) .profile-card:hover {
        border-color: rgba(245, 210, 122, .16) !important;
        box-shadow:
            0 16px 52px rgba(0, 0, 0, .52),
            0 0 34px rgba(212, 175, 55, .08),
            inset 0 1px 0 rgba(255, 255, 255, .05) !important;
        transform: translateY(-2px);
    }
}

body.dashboard-body:has(.wallet-invoices-panel) .profile-card {
    align-items: center;
    gap: 22px;
    min-height: 154px;
    padding: 28px;
}

body.dashboard-body:has(.wallet-invoices-panel) .profile-avatar {
    background:
        radial-gradient(circle at 30% 20%, #fff4b8, transparent 26%),
        linear-gradient(135deg, #d4af37, #f5d27a);
    box-shadow: 0 16px 34px rgba(212, 175, 55, .22);
    color: #111;
    height: 76px;
    width: 76px;
}

body.dashboard-body:has(.wallet-invoices-panel) .profile-card h2 {
    color: #f3e7c2;
    font-size: clamp(34px, 3.4vw, 42px);
    line-height: 1;
    margin-bottom: 8px;
}

body.dashboard-body:has(.wallet-invoices-panel) .profile-card p {
    color: #d8c89a;
    font-weight: 800;
}

body.dashboard-body:has(.wallet-invoices-panel) .profile-card span {
    color: rgba(255, 255, 255, .64);
    line-height: 1.45;
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel {
    padding: clamp(22px, 2.4vw, 32px);
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel-heading {
    align-items: start;
    margin-bottom: 22px;
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel-heading h2 {
    color: #f3e7c2;
    font-size: clamp(25px, 2.2vw, 34px);
    line-height: 1.05;
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel-heading span {
    color: rgba(216, 200, 154, .74);
    letter-spacing: .06em;
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel .admin-form {
    gap: 16px;
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel .admin-form label {
    color: #d8c89a;
    font-size: 13px;
    letter-spacing: .035em;
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel .admin-form input,
body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel .admin-form select {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
    color: #f3e7c2;
    height: 58px;
    padding-inline: 18px;
}

body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel .admin-form input:focus,
body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel .admin-form select:focus {
    border-color: rgba(212, 175, 55, .5);
    box-shadow:
        0 0 18px rgba(212, 175, 55, .15),
        inset 0 1px 0 rgba(255, 255, 255, .08);
}

body.dashboard-body:has(.wallet-invoices-panel) .gold-button {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .32), transparent 28%),
        linear-gradient(135deg, #d4af37, #f5d27a);
    border: 0;
    border-radius: 999px;
    box-shadow:
        0 10px 26px rgba(212, 175, 55, .18),
        inset 0 1px 0 rgba(255, 255, 255, .4);
    color: #111;
    font-weight: 800;
    height: 58px;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

body.dashboard-body:has(.wallet-invoices-panel) .gold-button:hover {
    box-shadow:
        0 14px 30px rgba(212, 175, 55, .22),
        inset 0 1px 0 rgba(255, 255, 255, .44);
    filter: saturate(1.04);
    transform: translateY(-2px);
}

body.dashboard-body:has(.wallet-invoices-panel) .wallet-invoices-panel {
    grid-column: auto;
    margin-top: 0;
    min-width: 0;
}

body.dashboard-body:has(.wallet-invoices-panel) .invoice-table-wrap {
    border: 1px solid rgba(255, 255, 255, .055);
    border-radius: 18px;
    background: rgba(0, 0, 0, .18);
    overflow-x: auto;
}

body.dashboard-body:has(.wallet-invoices-panel) .invoice-list-table {
    border-collapse: separate;
    border-spacing: 0 8px;
    min-width: 1080px;
    padding: 8px;
}

body.dashboard-body:has(.wallet-invoices-panel) .invoice-list-table th {
    border: 0;
    color: rgba(216, 200, 154, .72);
    padding: 8px 12px;
}

body.dashboard-body:has(.wallet-invoices-panel) .invoice-list-table td {
    background: rgba(255, 255, 255, .02);
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    border-top: 1px solid rgba(255, 255, 255, .055);
    color: #f3e7c2;
    padding: 16px 12px;
}

body.dashboard-body:has(.wallet-invoices-panel) .invoice-list-table tbody tr {
    transition: transform .2s ease, filter .2s ease;
}

body.dashboard-body:has(.wallet-invoices-panel) .invoice-list-table tbody tr:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

body.dashboard-body:has(.wallet-invoices-panel) .invoice-list-table td:first-child {
    border-left: 1px solid rgba(255, 255, 255, .055);
    border-radius: 14px 0 0 14px;
}

body.dashboard-body:has(.wallet-invoices-panel) .invoice-list-table td:last-child {
    border-radius: 0 14px 14px 0;
    border-right: 1px solid rgba(255, 255, 255, .055);
}

body.dashboard-body:has(.wallet-invoices-panel) .invoice-list-table code {
    color: rgba(216, 200, 154, .88);
}

body.dashboard-body:has(.wallet-invoices-panel) .invoice-status {
    backdrop-filter: blur(8px);
}

body.dashboard-body:has(.wallet-invoices-panel) .payqora-refresh {
    background: rgba(245, 210, 122, .07);
}

body.dashboard-body:has(.wallet-invoices-panel) .site-footer {
    background:
        radial-gradient(circle at 46% 0%, rgba(212, 175, 55, .07), transparent 54%),
        linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(0, 0, 0, .95)),
        #030303 !important;
}

/* Apply the same premium dashboard skin across member pages */
body.dashboard-body {
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, .08), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, .03), transparent 40%),
        #050505 !important;
    color: #f3e7c2;
    overflow-x: hidden;
}

body.dashboard-body::before {
    opacity: .34 !important;
    filter: saturate(.85) contrast(1.06) brightness(.56) !important;
}

body.dashboard-body .dashboard-main {
    max-width: 1480px;
    padding-top: 148px;
}

body.dashboard-body .dashboard-hero {
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

body.dashboard-body .dashboard-hero h1 {
    color: #f3e7c2;
    font-size: clamp(24px, 2.35vw, 32px);
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 14px;
    max-width: none;
    text-shadow: 0 18px 60px rgba(0, 0, 0, .7);
}

body.dashboard-body .dashboard-hero p {
    color: rgba(255, 255, 255, .72);
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.7;
    max-width: 720px;
}

body.dashboard-body .gold-kicker {
    color: #f5d27a;
    letter-spacing: .12em;
    text-shadow: 0 0 24px rgba(212, 175, 55, .22);
}

body.dashboard-body .dashboard-grid {
    align-items: start;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Team page (?page=team): cap content width to match .team-tabs so columns align */
body.team-page .dashboard-hero,
body.team-page .team-analytics-grid,
body.team-page .premium-analytics-grid,
body.team-page .team-commission-schedule,
body.team-page .team-commission-card,
body.team-page .team-network-card,
body.team-page .team-tabs {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    width: 100%;
}

body.team-page .premium-analytics-grid,
body.team-page .team-analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
}

body.team-page .team-tabs {
    margin-bottom: 54px;
}

body.team-page .team-commission-schedule,
body.team-page .team-commission-card {
    margin-bottom: 28px;
}

.team-commission-schedule-intro {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1.25rem;
    max-width: 56rem;
}

.team-commission-table-wrap {
    overflow-x: auto;
}

.team-commission-table {
    border-collapse: collapse;
    font-size: 0.92rem;
    width: 100%;
}

.team-commission-table th,
.team-commission-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.65rem 1rem;
    text-align: left;
}

.team-commission-table th {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.team-commission-table tbody tr:last-child td {
    border-bottom: none;
}

body.dashboard-body .glass-dashboard-card,
body.dashboard-body .dashboard-panel,
body.dashboard-body .stat-card,
body.dashboard-body .plan-card,
body.dashboard-body .team-tabs {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 34%),
        rgba(18, 18, 18, .72) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .06) !important;
    border-radius: 24px !important;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, .45),
        inset 0 1px 0 rgba(255, 255, 255, .04) !important;
    overflow: hidden;
    position: relative;
}

body.dashboard-body .dashboard-panel::before,
body.dashboard-body .glass-dashboard-card::before,
body.dashboard-body .stat-card::before,
body.dashboard-body .plan-card::before,
body.dashboard-body .team-tabs::before {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .10), transparent 30%),
        radial-gradient(circle at 14% 0%, rgba(245, 210, 122, .12), transparent 34%);
    content: "";
    inset: 0;
    opacity: .78;
    pointer-events: none;
    position: absolute;
}

body.dashboard-body .dashboard-panel > *,
body.dashboard-body .glass-dashboard-card > *,
body.dashboard-body .stat-card > *,
body.dashboard-body .plan-card > *,
body.dashboard-body .team-tabs > * {
    position: relative;
    z-index: 1;
}

body.dashboard-body .dashboard-panel-heading h2 {
    color: #f3e7c2;
}

body.dashboard-body .dashboard-panel-heading span,
body.dashboard-body .dashboard-empty,
body.dashboard-body .activity-item small {
    color: rgba(255, 255, 255, .62);
}

body.dashboard-body .admin-table-wrap {
    border-radius: 18px;
    overflow-x: auto;
}

body.dashboard-body .admin-table th {
    color: rgba(216, 200, 154, .78);
}

body.dashboard-body .admin-table td {
    color: #f3e7c2;
}

body.dashboard-body .gold-button,
body.dashboard-body .admin-button:not(.danger):not(.subtle) {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .32), transparent 28%),
        linear-gradient(135deg, #d4af37, #f5d27a);
    border-radius: 999px;
    box-shadow:
        0 10px 26px rgba(212, 175, 55, .18),
        inset 0 1px 0 rgba(255, 255, 255, .4);
    color: #111;
}

@media (max-width: 920px) {
    body.dashboard-body .dashboard-main {
        padding: 112px 18px 64px;
    }

    body.dashboard-body .dashboard-hero,
    body.dashboard-body .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body.dashboard-body .dashboard-main {
        padding-inline: 14px;
        padding-top: 100px;
    }

    body.dashboard-body .dashboard-hero h1 {
        font-size: clamp(22px, 5vw, 28px);
    }

    body.dashboard-body .dashboard-hero p {
        font-size: 15px;
    }

    body.dashboard-body .dashboard-panel,
    body.dashboard-body .glass-dashboard-card,
    body.dashboard-body .stat-card,
    body.dashboard-body .plan-card,
    body.dashboard-body .team-tabs {
        border-radius: 20px !important;
    }
}

@media (max-width: 920px) {
    body.dashboard-body:has(.wallet-invoices-panel) .dashboard-main {
        padding: 112px 18px 64px;
    }

    body.dashboard-body:has(.wallet-invoices-panel) .dashboard-hero {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    body.dashboard-body:has(.wallet-invoices-panel) .dashboard-grid {
        grid-template-columns: 1fr;
    }

    body.dashboard-body:has(.wallet-invoices-panel) .wallet-invoices-panel {
        grid-column: 1;
    }
}

@media (max-width: 560px) {
    body.dashboard-body:has(.wallet-invoices-panel) .dashboard-main {
        padding-inline: 14px;
        padding-top: 100px;
    }

    body.dashboard-body:has(.wallet-invoices-panel) .dashboard-hero h1 {
        font-size: clamp(22px, 5vw, 28px);
    }

    body.dashboard-body:has(.wallet-invoices-panel) .dashboard-hero p {
        font-size: 15px;
    }

    body.dashboard-body:has(.wallet-invoices-panel) .profile-card {
        align-items: flex-start;
        padding: 22px;
    }

    body.dashboard-body:has(.wallet-invoices-panel) .profile-avatar {
        height: 58px;
        width: 58px;
    }

    body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel {
        border-radius: 20px !important;
        padding: 18px;
    }

    body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel .admin-form input,
    body.dashboard-body:has(.wallet-invoices-panel) .dashboard-panel .admin-form select,
    body.dashboard-body:has(.wallet-invoices-panel) .gold-button {
        height: 52px;
    }

    body.dashboard-body:has(.wallet-invoices-panel) .invoice-list-table {
        min-width: 980px;
    }
}

/* Global UI design system standardization */
:root {
    --ui-bg: #050505;
    --ui-surface: rgba(18, 18, 18, .68);
    --ui-surface-strong: rgba(18, 18, 18, .78);
    --ui-border: rgba(255, 255, 255, .06);
    --ui-border-gold: rgba(212, 175, 55, .22);
    --ui-gold: #d4af37;
    --ui-gold-soft: #f5d27a;
    --ui-text: #f3e7c2;
    --ui-text-muted: rgba(255, 255, 255, .72);
    --ui-text-soft: #d8c89a;
    --ui-radius-sm: 10px;
    --ui-radius-md: 16px;
    --ui-radius-lg: 22px;
    --ui-shadow: 0 10px 36px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .04);
    --ui-container: 1400px;
    --ui-container-wide: 1600px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

.container,
.dashboard-main,
.admin-main,
.footer-inner,
.footer-bottom,
.movie-section,
.static-page,
.movie-detail,
.review-section,
.hero-content {
    max-width: min(var(--ui-container), calc(100vw - 48px));
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1800px) {
    .container,
    .dashboard-main,
    .admin-main,
    .footer-inner,
    .footer-bottom,
    .movie-section,
    .static-page,
    .movie-detail,
    .review-section,
    .hero-content {
        max-width: min(var(--ui-container-wide), calc(100vw - 96px));
    }
}

.site-header,
.home-body .site-header {
    min-height: 76px !important;
    padding: 14px clamp(24px, 4vw, 56px) !important;
}

.brand,
.ott-brand,
.footer-logo,
.auth-mobile-brand {
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.brand,
.ott-brand {
    font-size: clamp(24px, 2vw, 32px) !important;
}

.ott-brand span:last-child,
.footer-logo span:last-child,
.auth-mobile-brand span:last-child {
    font-size: inherit;
    letter-spacing: 0;
}

.brand-icon {
    border-radius: 11px !important;
    flex: 0 0 auto;
    font-size: 11px !important;
    height: 36px !important;
    width: 36px !important;
}

.site-nav {
    gap: clamp(12px, 1.4vw, 22px) !important;
}

.site-nav > a,
.site-nav .inline-logout-form button,
.mobile-menu-content a,
.mobile-menu-content .inline-logout-form button {
    font-size: 15px !important;
    font-weight: 650 !important;
    line-height: 1.2;
}

.login-btn,
.register-btn,
.site-nav .inline-logout-form button,
.gold-button,
.admin-button,
.login-button,
.auth-panel button,
.cinema-auth-panel button,
.footer-newsletter button {
    align-items: center;
    border-radius: 999px !important;
    display: inline-flex;
    font-size: 14px;
    font-weight: 750;
    min-height: 48px;
    padding: 0 22px;
}

.admin-button.small,
.payqora-refresh,
.invoice-actions .payqora-refresh {
    min-height: 38px;
    padding: 0 14px;
}

.search-field {
    min-height: 46px;
    padding: 0 16px !important;
}

.live-search {
    max-width: 480px;
}

h1,
.hero-title,
.auth-showcase h1,
.live-login-body .hero-copy h1 {
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: 0;
}

h2,
.section-heading h2,
.dashboard-panel-heading h2 {
    font-size: clamp(26px, 2.6vw, 42px);
    line-height: 1.12;
    letter-spacing: 0;
}

h3,
.card-heading h2,
.plan-card h2,
.movie-card h2,
.glass-movie-card h3,
.rated-card h3,
.clip-card h3 {
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.18;
}

p,
li,
input,
select,
textarea,
button {
    font-size: 15px;
}

.gold-kicker,
.login-badge,
.dashboard-panel-heading span,
.panel-heading span,
.admin-table th,
.invoice-list-table th,
.site-footer h2 {
    font-size: 12px !important;
    letter-spacing: .08em;
}

.glass-dashboard-card,
.dashboard-panel,
.stat-card,
.plan-card,
.review-card,
.static-card,
.glass-movie-card,
.rated-card,
.clip-card,
.dashboard-movie-card,
.dashboard-clip-card,
.auth-panel,
.cinema-auth-panel,
.live-login-body .login-card,
.saas-stat-card,
.admin-panel,
.admin-table-wrap,
.team-tabs {
    background: linear-gradient(145deg, rgba(255, 255, 255, .05), transparent 34%), var(--ui-surface) !important;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid var(--ui-border) !important;
    border-radius: var(--ui-radius-lg) !important;
    box-shadow: var(--ui-shadow) !important;
}

.dashboard-panel,
.admin-panel,
.static-card,
.auth-panel,
.cinema-auth-panel,
.live-login-body .login-card,
.team-tabs {
    padding: clamp(22px, 2.2vw, 30px) !important;
}

.stat-card,
.saas-stat-card,
.plan-card,
.review-card,
.glass-movie-card,
.rated-card,
.clip-card,
.dashboard-movie-card,
.dashboard-clip-card {
    padding: clamp(18px, 1.8vw, 24px) !important;
}

.admin-form,
.login-form,
.contact-form,
.footer-newsletter,
form {
    gap: 14px;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.login-form input,
.cinema-auth-panel input,
.auth-panel input,
.contact-form input,
.contact-form textarea,
.footer-newsletter input {
    background: rgba(255, 255, 255, .04) !important;
    border: 1px solid rgba(255, 255, 255, .07) !important;
    border-radius: var(--ui-radius-md) !important;
    color: var(--ui-text) !important;
    min-height: 48px;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.login-form input:focus,
.cinema-auth-panel input:focus,
.auth-panel input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.footer-newsletter input:focus {
    border-color: rgba(212, 175, 55, .48) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .10), 0 0 16px rgba(212, 175, 55, .12) !important;
    outline: none;
}

.gold-button,
.register-btn,
.login-button,
.auth-panel button,
.cinema-auth-panel button,
.admin-button:not(.subtle):not(.danger) {
    background: linear-gradient(115deg, rgba(255, 255, 255, .28), transparent 30%), linear-gradient(135deg, var(--ui-gold), var(--ui-gold-soft)) !important;
    box-shadow: 0 10px 24px rgba(212, 175, 55, .18), inset 0 1px 0 rgba(255, 255, 255, .36) !important;
    color: #111 !important;
}

.admin-button.subtle,
.login-btn,
.ghost-button {
    background: rgba(255, 255, 255, .045) !important;
    border: 1px solid var(--ui-border-gold) !important;
    color: var(--ui-gold-soft) !important;
}

.gold-button:hover,
.register-btn:hover,
.login-button:hover,
.auth-panel button:hover,
.cinema-auth-panel button:hover,
.admin-button:hover {
    transform: translateY(-1px);
}

.admin-table,
.invoice-list-table,
.team-table {
    font-size: 13px;
}

.admin-table th,
.admin-table td,
.invoice-list-table th,
.invoice-list-table td,
.team-table th,
.team-table td {
    padding: 13px 14px;
    vertical-align: middle;
}

.admin-table th,
.invoice-list-table th,
.team-table th {
    color: rgba(216, 200, 154, .78) !important;
    font-weight: 850;
}

.admin-table tbody tr,
.invoice-list-table tbody tr,
.team-table tbody tr {
    transition: background .2s ease, filter .2s ease;
}

.admin-table tbody tr:hover,
.invoice-list-table tbody tr:hover,
.team-table tbody tr:hover {
    background: rgba(255, 255, 255, .035);
}

.site-footer {
    padding: 54px 0 24px !important;
}

.footer-inner {
    align-items: start !important;
    gap: clamp(28px, 4vw, 64px) !important;
    grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.92fr) minmax(160px, 0.95fr) minmax(220px, 1.05fr) !important;
}

.footer-logo {
    font-size: clamp(24px, 2vw, 30px) !important;
}

.footer-brand p {
    font-size: 15px !important;
    line-height: 1.65 !important;
    max-width: 390px;
}

.footer-social a {
    height: 38px !important;
    width: 38px !important;
}

.footer-social svg {
    height: 17px;
    width: 17px;
}

.footer-links {
    gap: 10px !important;
}

.footer-bottom {
    font-size: 13px;
    margin-top: 34px !important;
    padding-top: 18px !important;
}

.admin-body {
    font-size: 15px;
}

.admin-sidebar {
    width: 260px;
}

.admin-sidebar nav a,
.admin-sidebar nav form button {
    border-radius: 12px;
    font-size: 14px;
    min-height: 42px;
    padding: 10px 12px;
}

.admin-main {
    padding: 30px clamp(24px, 3vw, 42px);
}

.admin-topbar h1 {
    font-size: clamp(22px, 1.75vw, 30px);
    font-weight: 700;
    line-height: 1.18;
    max-width: none;
}

.auth-page,
.live-login-body .login-shell {
    max-width: min(1120px, calc(100vw - 36px));
}

.live-login-body .login-card {
    max-width: 430px;
}

.auth-mobile-brand {
    font-size: clamp(22px, 5vw, 28px);
}

@media (max-width: 980px) {
    .site-header,
    .home-body .site-header {
        min-height: 68px !important;
        padding: 12px 18px !important;
    }

    .brand,
    .ott-brand {
        font-size: 24px !important;
    }

    .brand-icon {
        border-radius: 9px !important;
        height: 32px !important;
        width: 32px !important;
    }

    .container,
    .dashboard-main,
    .admin-main,
    .footer-inner,
    .footer-bottom,
    .movie-section,
    .static-page,
    .movie-detail,
    .review-section,
    .hero-content {
        max-width: calc(100vw - 36px);
    }

    h1,
    .hero-title,
    .auth-showcase h1,
    .live-login-body .hero-copy h1 {
        font-size: clamp(34px, 9vw, 48px);
    }

    h2,
    .section-heading h2,
    .dashboard-panel-heading h2 {
        font-size: clamp(24px, 7vw, 34px);
    }

    .dashboard-panel,
    .admin-panel,
    .static-card,
    .auth-panel,
    .cinema-auth-panel,
    .live-login-body .login-card,
    .team-tabs {
        padding: 20px !important;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr !important;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-newsletter-column {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: min(420px, 100%);
        width: 100%;
    }
}

@media (max-width: 640px) {
    .site-header,
    .home-body .site-header {
        min-height: 64px !important;
    }

    .brand,
    .ott-brand {
        font-size: 22px !important;
    }

    .brand-icon {
        font-size: 10px !important;
        height: 30px !important;
        width: 30px !important;
    }

    .container,
    .dashboard-main,
    .admin-main,
    .footer-inner,
    .footer-bottom,
    .movie-section,
    .static-page,
    .movie-detail,
    .review-section,
    .hero-content {
        max-width: calc(100vw - 28px);
    }

    p,
    li,
    input,
    select,
    textarea,
    button {
        font-size: 14px;
    }

    .login-btn,
    .register-btn,
    .site-nav .inline-logout-form button,
    .gold-button,
    .admin-button,
    .login-button,
    .auth-panel button,
    .cinema-auth-panel button {
        min-height: 44px;
        padding: 0 18px;
    }

    .admin-form input,
    .admin-form select,
    .admin-form textarea,
    .login-form input,
    .cinema-auth-panel input,
    .auth-panel input,
    .contact-form input,
    .contact-form textarea {
        min-height: 46px;
    }

    .site-footer {
        padding: 42px 0 20px !important;
    }

    .footer-inner {
        gap: 24px !important;
        grid-template-columns: 1fr !important;
        text-align: left;
    }

    .footer-bottom {
        gap: 8px;
        text-align: left;
    }
}

/* Compact View & Review page */
.dashboard-body .member-review-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    overflow: visible;
    padding: 0;
}

.dashboard-body .member-review-grid .glass-movie-card {
    border-radius: 8px;
    min-height: 0 !important;
    padding: 10px;
}

.dashboard-body .member-review-grid .poster-frame {
    aspect-ratio: 16 / 10;
    margin-bottom: 10px;
}

.dashboard-body .member-review-grid .poster-frame img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.dashboard-body .member-review-grid .glass-movie-card span {
    font-size: 11px;
}

.dashboard-body .member-review-grid .glass-movie-card h3 {
    font-size: 16px;
    line-height: 1.25;
    margin: 6px 0;
}

.dashboard-body .member-review-grid .glass-movie-card p {
    font-size: 13px;
    line-height: 1.35;
    margin: 0 0 10px;
}

.dashboard-body .review-status-pill {
    font-size: 11px;
    padding: 6px 8px;
}

.dashboard-body .review-history-section {
    padding-top: 18px;
}

.dashboard-body .review-history-list {
    gap: 8px;
}

.dashboard-body .review-history-item {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    min-height: 66px;
    padding: 9px 10px;
}

.dashboard-body .review-history-item img,
.dashboard-body .review-history-item .dashboard-thumb {
    height: 48px;
    width: 48px;
}

.dashboard-body .review-history-item time,
.dashboard-body .review-history-item small,
.dashboard-body .review-history-item p,
.dashboard-body .review-history-item > span {
    font-size: 12px;
}

.dashboard-body .review-history-item strong {
    font-size: 14px;
}

.level-table-stack {
    display: grid;
    gap: 26px;
}

.network-level-table {
    color: #ecfffb;
}

.network-level-heading {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 10px;
}

.network-level-heading h3 {
    align-items: center;
    display: inline-flex;
    font-size: 18px;
    gap: 10px;
    margin: 0;
}

.network-level-heading h3 span {
    background: linear-gradient(135deg, #23f6b0, #00a983);
    border-radius: 3px;
    box-shadow: 0 0 16px rgba(35, 246, 176, .32);
    display: inline-block;
    height: 13px;
    width: 13px;
}

.network-level-heading p {
    color: rgba(236, 255, 251, .74);
    font-size: 12px;
    font-weight: 800;
    margin: 0;
}

.network-level-heading b {
    color: rgba(236, 255, 251, .45);
    padding: 0 8px;
}

.network-table-tools {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 6px;
}

.network-table-tools label {
    align-items: center;
    color: rgba(236, 255, 251, .86);
    display: inline-flex;
    font-size: 13px;
    gap: 6px;
}

.network-table-tools select,
.network-table-tools input {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(236, 255, 251, .25);
    border-radius: 0;
    color: #ecfffb;
    min-height: 32px;
    padding: 5px 8px;
}

.network-table-tools select {
    width: 64px;
}

.network-table-wrap {
    overflow-x: auto;
}

.network-table {
    background: #ffffff;
    border-collapse: collapse;
    color: #26323d;
    font-size: 13px;
    min-width: 680px;
    width: 100%;
}

.network-table th,
.network-table td {
    border-bottom: 1px solid #9aa4ad;
    padding: 10px 12px;
    text-align: left;
}

.network-table th {
    color: #9aa0ad;
    font-weight: 800;
}

.network-table th::after {
    color: #d7dbe0;
    content: " ";
    float: right;
    font-size: 11px;
}

.network-table td:last-child {
    font-weight: 800;
}

body.team-page .network-table .member-uid-tag,
body.team-page .network-table .team-uid-tag {
    color: #8b6914;
}

.network-table-footer {
    align-items: center;
    color: rgba(236, 255, 251, .86);
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    margin-top: 8px;
}

.network-table-footer > div {
    display: inline-flex;
    overflow: hidden;
}

.network-table-footer button,
.network-table-footer strong {
    align-items: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .04);
    color: rgba(236, 255, 251, .52);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
}

.network-table-footer strong {
    background: #03e29c;
    color: #073d35;
}

@media (max-width: 640px) {
    .dashboard-body .member-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-body .member-review-grid .glass-movie-card h3 {
        font-size: 14px;
    }

    .dashboard-body .member-review-grid .glass-movie-card p {
        font-size: 12px;
    }

    .dashboard-body .review-history-item {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .dashboard-body .review-history-item img,
    .dashboard-body .review-history-item .dashboard-thumb {
        height: 42px;
        width: 42px;
    }

    .network-level-heading,
    .network-table-tools,
    .network-table-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .network-table-tools input {
        width: min(260px, 100%);
    }
}

/* Premium liquid glass admin + member experience */
:root {
    --premium-bg: #050709;
    --premium-panel: rgba(13, 18, 24, .68);
    --premium-panel-strong: rgba(18, 24, 32, .78);
    --premium-line: rgba(255, 255, 255, .12);
    --premium-line-soft: rgba(255, 255, 255, .075);
    --premium-text: #f6f1e6;
    --premium-muted: rgba(246, 241, 230, .66);
    --premium-gold: #d4af37;
    --premium-gold-bright: #f7df8e;
    --premium-teal: #1ee6b7;
    --premium-blue: #6bb8ff;
    --premium-red: #ff7b7b;
    --premium-shadow: 0 28px 90px rgba(0, 0, 0, .52), inset 0 1px 0 rgba(255, 255, 255, .13);
}

.admin-body,
body.dashboard-body {
    background:
        radial-gradient(circle at 8% 0%, rgba(30, 230, 183, .16), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(212, 175, 55, .13), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(107, 184, 255, .08), transparent 38%),
        linear-gradient(145deg, #030405, #07100f 44%, #050709);
    color: var(--premium-text);
}

.admin-body::before,
body.dashboard-body::before {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .07), transparent 28%, rgba(255, 255, 255, .035) 52%, transparent 72%),
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, .065), transparent 24%);
    content: "";
    inset: 0;
    opacity: .9;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.admin-main,
.dashboard-main {
    position: relative;
    z-index: 1;
}

/* Consistent vertical rhythm: all admin pages stack topbar, notices, grids, and panels evenly */
.admin-body .admin-main {
    align-items: stretch;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2.2vw, 24px);
}

.admin-body .admin-main > .admin-topbar {
    margin-bottom: 0;
}

.admin-body .admin-main > .admin-notice,
.admin-body .admin-main > .admin-alert {
    margin-bottom: 0;
}

.admin-body .admin-main > .saas-stat-grid {
    margin-bottom: 0;
}

.admin-body .admin-main > .saas-dashboard-grid {
    margin-bottom: 0;
}

/* Full-width panels: match topbar track (flex children default min-width:auto can shrink panels) */
body.admin-body .admin-main > .admin-panel.saas-panel {
    align-self: stretch;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

.admin-saas-body .admin-main > .admin-notice {
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 40px rgba(0, 0, 0, 0.22);
}

.admin-saas-body .admin-main > .admin-notice.success {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.2), rgba(5, 46, 26, 0.45));
    border: 1px solid rgba(34, 197, 94, 0.38);
    color: #d1fae5;
}

.admin-saas-body .admin-main > .admin-notice.error {
    background: linear-gradient(145deg, rgba(248, 113, 113, 0.14), rgba(63, 17, 17, 0.52));
    border: 1px solid rgba(248, 113, 113, 0.38);
    color: #fecaca;
}

.admin-saas-body .admin-main > .admin-notice:not(.success):not(.error) {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(248, 250, 252, 0.92);
}

.admin-sidebar {
    backdrop-filter: blur(24px) saturate(145%);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .04)),
        rgba(5, 7, 9, .8);
    border-right: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 24px 0 80px rgba(0, 0, 0, .34), inset -1px 0 0 rgba(255, 255, 255, .04);
}

.admin-logo {
    color: var(--premium-gold-bright) !important;
    font-weight: 950;
    letter-spacing: 0;
    text-shadow: 0 0 24px rgba(212, 175, 55, .3);
}

.admin-sidebar nav a,
.admin-sidebar nav form button {
    align-items: center;
    border: 1px solid transparent;
    color: rgba(246, 241, 230, .68);
    display: flex;
    gap: 10px;
}

.admin-sidebar nav a::before,
.admin-sidebar nav form button::before {
    content: none;
    display: none;
}

.admin-nav-icon {
    align-items: center;
    color: rgba(247, 223, 142, 0.82);
    display: flex;
    flex-shrink: 0;
    height: 22px;
    justify-content: center;
    width: 22px;
}

.admin-nav-icon svg {
    display: block;
    height: 20px;
    width: 20px;
}

.admin-nav-text {
    flex: 1;
    line-height: 1.25;
    min-width: 0;
}

.admin-sidebar nav a.active .admin-nav-icon,
.admin-sidebar nav a:hover .admin-nav-icon,
.admin-sidebar nav form button:hover .admin-nav-icon {
    color: rgba(247, 223, 142, 1);
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover,
.admin-sidebar nav form button:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(247, 223, 142, .22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 10px 28px rgba(0, 0, 0, .18);
    color: #ffffff;
}

.admin-topbar,
.dashboard-hero {
    backdrop-filter: blur(24px) saturate(140%);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)),
        radial-gradient(circle at 16% 0%, rgba(247, 223, 142, .13), transparent 34%),
        var(--premium-panel);
    border: 1px solid var(--premium-line);
    border-radius: 8px;
    box-shadow: var(--premium-shadow);
    overflow: hidden;
    padding: clamp(20px, 2.2vw, 30px);
    position: relative;
}

.admin-topbar::after,
.dashboard-hero::after,
.admin-panel::after,
.glass-dashboard-card::after,
.saas-stat-card::after,
.stat-card::after,
.team-tabs::after {
    background: linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, .13) 46%, transparent 58% 100%);
    content: "";
    inset: 0;
    opacity: .22;
    pointer-events: none;
    position: absolute;
    transform: translateX(-34%);
}

.admin-topbar h1,
.dashboard-hero h1,
.dashboard-panel-heading h2 {
    color: #ffffff;
    font-weight: 950;
    letter-spacing: 0;
}

.admin-topbar p,
.dashboard-hero p,
.panel-heading span,
.dashboard-panel-heading span {
    color: var(--premium-muted);
}

/* Premium member dashboard hero: aligned with dashboard-body gold + liquid glass */
@keyframes mm-dashboard-hero-fade-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mm-dashboard-hero-glow-pulse {
    0%,
    100% {
        opacity: 0.82;
    }

    50% {
        opacity: 1;
    }
}

@keyframes mm-dashboard-hero-particles {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-3%, -2%, 0);
    }
}

@keyframes mm-dashboard-cta-arrow {
    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(4px);
    }
}

body.mm-dashboard-page .dashboard-hero.dashboard-hero--premium {
    animation: mm-dashboard-hero-fade-in 0.85s ease-out both;
    backdrop-filter: blur(24px) saturate(140%);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at 14% 0%, rgba(247, 223, 142, 0.12), transparent 34%),
        var(--premium-panel);
    border: 1px solid var(--premium-line);
    border-radius: 16px;
    box-shadow: var(--premium-shadow);
    display: block;
    margin-bottom: 22px;
    overflow: hidden;
    padding: clamp(16px, 2.2vw, 26px) clamp(16px, 2.4vw, 28px) clamp(18px, 2.4vw, 28px);
    position: relative;
}

body.mm-dashboard-page .dashboard-hero-premium-bg {
    animation: mm-dashboard-hero-glow-pulse 12s ease-in-out infinite;
    background:
        radial-gradient(circle at 8% 0%, rgba(30, 230, 183, 0.14), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(212, 175, 55, 0.16), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(107, 184, 255, 0.08), transparent 40%),
        linear-gradient(145deg, #030405, #07100f 44%, #050709);
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

body.mm-dashboard-page .dashboard-hero-premium-bg::after {
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.28), transparent),
        radial-gradient(1px 1px at 30% 8%, rgba(255, 255, 255, 0.14), transparent),
        radial-gradient(1px 1px at 70% 15%, rgba(247, 223, 142, 0.2), transparent),
        radial-gradient(1px 1px at 88% 32%, rgba(255, 255, 255, 0.12), transparent),
        radial-gradient(1px 1px at 45% 40%, rgba(30, 230, 183, 0.12), transparent),
        linear-gradient(105deg, transparent 0%, rgba(212, 175, 55, 0.045) 50%, transparent 100%);
    background-size: 100% 100%;
    content: "";
    inset: 0;
    opacity: 0.7;
    position: absolute;
}

body.mm-dashboard-page .dashboard-hero-premium-vignette {
    background: radial-gradient(ellipse 88% 72% at 50% 48%, transparent 28%, rgba(3, 4, 5, 0.68) 100%);
    inset: 0;
    mix-blend-mode: multiply;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

body.mm-dashboard-page .dashboard-hero-premium-particles {
    animation: mm-dashboard-hero-particles 28s linear infinite alternate;
    background-image:
        radial-gradient(1.5px 1.5px at 14% 22%, rgba(247, 223, 142, 0.35), transparent),
        radial-gradient(1px 1px at 44% 16%, rgba(30, 230, 183, 0.22), transparent),
        radial-gradient(1px 1px at 76% 34%, rgba(107, 184, 255, 0.18), transparent),
        radial-gradient(2px 120px at 22% 0%, rgba(212, 175, 55, 0.08), transparent 72%),
        radial-gradient(2px 100px at 82% 8%, rgba(30, 230, 183, 0.06), transparent 72%);
    background-size: 100% 100%;
    inset: 0;
    opacity: 0.45;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

body.mm-dashboard-page .dashboard-hero-premium-grid {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 28px);
    position: relative;
    z-index: 2;
}

body.mm-dashboard-page .dashboard-hero-left {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: clamp(14px, 2vw, 22px);
    margin: 0;
    max-width: 100%;
    min-width: 0;
}

body.mm-dashboard-page .dashboard-hero-intro-head {
    position: relative;
    z-index: 2;
}

body.mm-dashboard-page .dashboard-hero-visual-block {
    border-radius: 20px;
    margin-top: 4px;
    min-height: 158px;
    overflow: hidden;
    padding: clamp(12px, 1.6vw, 18px);
    position: relative;
}

body.mm-dashboard-page .dashboard-hero-scenic {
    bottom: 0;
    left: -8%;
    mix-blend-mode: soft-light;
    opacity: 0.72;
    pointer-events: none;
    position: absolute;
    right: -5%;
    top: 0;
    z-index: 0;
}

body.mm-dashboard-page .dashboard-hero-scenic-moon {
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 252, 245, 0.92), rgba(247, 223, 142, 0.42) 28%, rgba(212, 175, 55, 0.48) 52%, rgba(60, 48, 18, 0.38) 72%, transparent 74%);
    border-radius: 50%;
    box-shadow:
        0 0 48px rgba(212, 175, 55, 0.32),
        0 0 96px rgba(30, 230, 183, 0.12);
    height: clamp(88px, 14vw, 128px);
    left: 8%;
    position: absolute;
    top: 8%;
    width: clamp(88px, 14vw, 128px);
}

body.mm-dashboard-page .dashboard-hero-scenic-mountains {
    background:
        linear-gradient(to top, rgba(3, 8, 7, 0.95) 0%, transparent 55%),
        linear-gradient(125deg, transparent 40%, rgba(7, 16, 15, 0.88) 40.5%, transparent 41%),
        linear-gradient(110deg, transparent 52%, rgba(5, 12, 10, 0.92) 52.5%, transparent 53%),
        linear-gradient(95deg, transparent 64%, rgba(8, 22, 20, 0.78) 64.5%, transparent 65%),
        linear-gradient(88deg, transparent 78%, rgba(5, 10, 9, 0.9) 78.5%, transparent 79%);
    bottom: 0;
    height: 58%;
    left: 0;
    mask-image: linear-gradient(to top, #000 55%, transparent 100%);
    position: absolute;
    right: 0;
}

body.mm-dashboard-page .dashboard-hero-scenic-figure {
    background: radial-gradient(ellipse 50% 120% at 50% 100%, rgba(3, 4, 5, 0.92) 0%, transparent 72%);
    bottom: 0;
    height: 42%;
    left: 18%;
    position: absolute;
    width: 14%;
}

body.mm-dashboard-page .dashboard-hero-scenic-figure::after {
    background: linear-gradient(to top, rgba(3, 4, 5, 0.96), rgba(7, 16, 15, 0.4));
    border-radius: 999px 999px 0 0;
    bottom: 0;
    content: "";
    height: 72%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 42%;
}

body.mm-dashboard-page .dashboard-hero-stats-cta {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 2vw, 20px);
    position: relative;
    z-index: 1;
}

body.mm-dashboard-page .dashboard-hero-kicker {
    align-items: center;
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.12);
    color: var(--premium-gold) !important;
    display: inline-flex;
    font-size: 11px !important;
    font-weight: 700;
    gap: 8px;
    letter-spacing: 2px !important;
    margin-bottom: 8px;
    text-transform: uppercase;
}

body.mm-dashboard-page .dashboard-hero-kicker-ic {
    align-items: center;
    background: rgba(247, 223, 142, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;
    color: var(--premium-gold-bright);
    display: inline-flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

body.mm-dashboard-page .dashboard-hero-title {
    color: var(--premium-text);
    display: flex;
    flex-direction: column;
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif !important;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem) !important;
    font-weight: 800 !important;
    gap: 4px;
    letter-spacing: -0.035em !important;
    line-height: 1.12 !important;
    margin: 0 0 10px !important;
    max-width: none !important;
    text-shadow: 0 4px 36px rgba(0, 0, 0, 0.45);
}

body.mm-dashboard-page .dashboard-hero-title-line {
    color: var(--premium-text);
    font-weight: 800;
}

body.mm-dashboard-page .dashboard-hero-title-name {
    background: linear-gradient(95deg, var(--premium-gold-bright) 0%, var(--premium-gold) 42%, var(--premium-teal) 88%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

body.mm-dashboard-page .dashboard-hero-lede {
    color: var(--premium-muted) !important;
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif !important;
    font-size: clamp(13px, 1.15vw, 14.5px) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    max-width: 520px;
}

body.mm-dashboard-page .dashboard-hero-quickstats {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
    body.mm-dashboard-page .dashboard-hero-quickstats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 640px) and (max-width: 959px) {
    body.mm-dashboard-page .dashboard-hero-quickstats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

body.mm-dashboard-page .dashboard-hero-stat {
    backdrop-filter: blur(18px) saturate(140%);
    background: var(--premium-panel-strong);
    border: 1px solid var(--premium-line-soft);
    border-radius: 16px;
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 0;
    padding: 14px 14px 16px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

body.mm-dashboard-page .dashboard-hero-stat:hover {
    border-color: rgba(247, 223, 142, 0.38);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

body.mm-dashboard-page .dashboard-hero-stat-icon {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color: var(--premium-gold-bright);
    display: inline-flex;
    height: 38px;
    justify-content: center;
    order: 1;
    text-shadow: 0 0 14px rgba(247, 223, 142, 0.22);
    width: 38px;
}

body.mm-dashboard-page .dashboard-hero-stat:nth-child(1) .dashboard-hero-stat-icon {
    background: linear-gradient(135deg, rgba(247, 223, 142, 0.32), rgba(30, 230, 183, 0.2)), rgba(255, 255, 255, 0.06);
}

body.mm-dashboard-page .dashboard-hero-stat:nth-child(2) .dashboard-hero-stat-icon {
    background: linear-gradient(135deg, rgba(30, 230, 183, 0.26), rgba(247, 223, 142, 0.18)), rgba(255, 255, 255, 0.05);
}

body.mm-dashboard-page .dashboard-hero-stat:nth-child(3) .dashboard-hero-stat-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(247, 223, 142, 0.15)), rgba(255, 255, 255, 0.055);
}

body.mm-dashboard-page .dashboard-hero-stat:nth-child(4) .dashboard-hero-stat-icon {
    background: linear-gradient(135deg, rgba(107, 184, 255, 0.22), rgba(247, 223, 142, 0.2)), rgba(255, 255, 255, 0.05);
}

body.mm-dashboard-page .dashboard-hero-stat-label {
    color: rgba(246, 241, 230, 0.58);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.3;
    order: 3;
    text-transform: uppercase;
}

body.mm-dashboard-page .dashboard-hero-stat strong {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    order: 2;
    text-shadow: 0 0 22px rgba(247, 223, 142, 0.12);
}

body.mm-dashboard-page .dashboard-hero-cta--primary {
    align-items: center;
    align-self: flex-start;
    background: linear-gradient(135deg, #f7df8e, #c9a227);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    color: #0a0c0d !important;
    display: inline-flex;
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    gap: 12px;
    margin-top: 0;
    max-width: 100%;
    padding: 14px 22px 14px 18px;
    text-decoration: none !important;
    transition:
        box-shadow 0.25s ease,
        transform 0.22s ease;
}

body.mm-dashboard-page .dashboard-hero-cta--primary:hover {
    box-shadow: 0 14px 36px rgba(212, 175, 55, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    color: #050709 !important;
    transform: translateY(-2px);
}

body.mm-dashboard-page .dashboard-hero-cta--primary:hover .dashboard-hero-cta-arrow {
    animation: mm-dashboard-cta-arrow 0.9s ease-in-out infinite;
}

body.mm-dashboard-page .dashboard-hero-cta-ic {
    display: inline-flex;
    opacity: 0.95;
}

body.mm-dashboard-page .dashboard-hero-cta-text {
    flex: 1;
    min-width: 0;
}

body.mm-dashboard-page .dashboard-hero-cta-arrow {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    opacity: 0.88;
    transition: transform 0.2s ease;
}

body.mm-dashboard-page .dashboard-hero-profile-col {
    flex: 0 1 auto;
    min-width: 0;
    position: relative;
    width: 100%;
}

body.mm-dashboard-page .dashboard-hero-profile-ambient {
    background: radial-gradient(circle at 18% 28%, rgba(124, 58, 237, 0.38), transparent 52%);
    filter: blur(46px);
    height: 200px;
    opacity: 0.55;
    pointer-events: none;
    position: absolute;
    right: -30px;
    top: -48px;
    width: 240px;
    z-index: 0;
}

body.mm-dashboard-page .profile-card.profile-card--premium {
    align-items: flex-start;
    backdrop-filter: blur(22px) saturate(160%);
    /* background:
        linear-gradient(165deg, rgba(32, 26, 52, 0.88), rgba(10, 12, 26, 0.94)),
        radial-gradient(circle at 10% 0%, rgba(124, 58, 237, 0.18), transparent 45%),
        rgba(12, 10, 22, 0.92) !important; */
    border: 1px solid rgba(139, 92, 246, 0.28) !important;
    border-radius: 18px !important;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.52),
        0 0 48px rgba(109, 74, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    flex-direction: row;
    gap: 16px;
    margin: 0;
    overflow: hidden;
    padding: clamp(18px, 2vw, 24px) clamp(18px, 2vw, 24px) clamp(56px, 6vw, 72px) !important;
    position: relative;
}

body.mm-dashboard-page .profile-card--premium .profile-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

body.mm-dashboard-page .profile-card--premium .profile-card-content h2 {
    color: #f8fafc !important;
    font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif !important;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem) !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

body.mm-dashboard-page .profile-badge-premium {
    align-self: flex-start;
    /* background: rgba(46, 16, 101, 0.88); */
    border: 1px solid rgba(167, 139, 250, 0.4);
    border-radius: 999px;
    color: #f5f3ff !important;
    display: inline-block;
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 2px !important;
    padding: 5px 11px;
    text-transform: uppercase;
}

body.mm-dashboard-page .profile-card--premium .profile-meta-row {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    margin: 0;
}

body.mm-dashboard-page .profile-card--premium .profile-meta-icon {
    color: rgba(196, 181, 253, 0.88);
    flex-shrink: 0;
    margin-top: 1px;
}

body.mm-dashboard-page .profile-card--premium .profile-meta-text {
    color: rgba(226, 232, 240, 0.92) !important;
    font-size: 12.5px !important;
    line-height: 1.45;
    word-break: break-word;
}

body.mm-dashboard-page .profile-card--premium .profile-referral-code {
    color: #f8fafc !important;
    font-weight: 700;
}

body.mm-dashboard-page .profile-avatar--premium {
    /* background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 42%, #4c1d95 100%) !important; */
    /* border: 1px solid rgba(255, 255, 255, 0.22); */
    /* box-shadow:
        0 10px 32px rgba(91, 33, 182, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.22); */
    color: #f8fafc !important;
    flex-shrink: 0;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    height: clamp(56px, 9vw, 72px);
    width: clamp(56px, 9vw, 72px);
}

body.mm-dashboard-page .referral-share-premium-label {
    /* color: rgba(167, 139, 250, 0.72) !important; */
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 0;
    text-transform: uppercase;
}

body.mm-dashboard-page .referral-share-premium {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 2px 0 0;
}

body.mm-dashboard-page .referral-share-premium-row {
    align-items: center;
    background: rgba(22, 16, 38, 0.88);
    border: 1px solid rgba(100, 80, 160, 0.28);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    display: flex;
    gap: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 2px;
}

body.mm-dashboard-page .referral-share-premium-row:focus-within {
    border-color: rgba(167, 139, 250, 0.45);
    box-shadow:
        0 0 0 1px rgba(109, 74, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.mm-dashboard-page .referral-share-premium-input {
    background: transparent !important;
    border: none !important;
    border-radius: 8px !important;
    color: rgba(226, 232, 240, 0.95) !important;
    flex: 1;
    font-size: 11.5px !important;
    line-height: 1.3;
    min-height: 32px;
    min-width: 0;
    outline: none !important;
    padding: 0 8px !important;
}

body.mm-dashboard-page button.referral-share-premium-btn,
body.mm-dashboard-page .referral-share-premium-btn {
    align-items: center;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(180deg, rgba(58, 24, 105, 0.96), rgba(40, 14, 88, 0.98)) !important;
    border: 1px solid rgba(167, 139, 250, 0.42) !important;
    border-radius: 9px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #f5f3ff !important;
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 11px !important;
    font-family: inherit;
    font-weight: 600;
    gap: 5px;
    justify-content: center;
    letter-spacing: 0.02em;
    min-height: 32px;
    padding: 0 10px !important;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

body.mm-dashboard-page .referral-share-premium-btn svg {
    color: rgba(245, 243, 255, 0.95);
    flex-shrink: 0;
    height: 14px;
    width: 14px;
}

body.mm-dashboard-page button.referral-share-premium-btn:hover,
body.mm-dashboard-page .referral-share-premium-btn:hover {
    background: linear-gradient(180deg, rgba(88, 40, 160, 0.98), rgba(58, 24, 105, 1)) !important;
    border-color: rgba(196, 181, 253, 0.55) !important;
    box-shadow:
        0 0 18px rgba(109, 74, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    transform: none;
}

body.mm-dashboard-page .referral-share-premium-btn:hover svg {
    color: #ffffff;
}

body.mm-dashboard-page .profile-card-premium-deco {
    bottom: 0;
    height: clamp(72px, 12vw, 100px);
    opacity: 0.36;
    pointer-events: none;
    position: absolute;
    right: 6px;
    width: clamp(96px, 18vw, 120px);
}

body.mm-dashboard-page .profile-card-premium-deco-svg {
    color: rgba(167, 139, 250, 0.55);
    filter: drop-shadow(0 0 10px rgba(109, 74, 255, 0.35));
    height: 100%;
    width: 100%;
}

@media (min-width: 700px) and (max-width: 959px) {
    body.mm-dashboard-page .dashboard-hero.dashboard-hero--premium {
        padding: 18px 20px 22px;
    }

    body.mm-dashboard-page .dashboard-hero-premium-grid {
        gap: 20px;
    }

    body.mm-dashboard-page .dashboard-hero-visual-block {
        min-height: 158px;
        padding: 12px 14px;
    }
}

@media (min-width: 960px) {
    body.mm-dashboard-page .dashboard-hero-premium-grid {
        align-items: stretch;
        display: grid;
        gap: 28px 40px;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    }

    body.mm-dashboard-page .dashboard-hero-profile-col {
        width: auto;
    }

    body.mm-dashboard-page .dashboard-hero-visual-block {
        min-height: 158px;
    }
}

@media (max-width: 639px) {
    body.mm-dashboard-page .dashboard-hero.dashboard-hero--premium {
        border-radius: 18px;
        padding: 14px 14px 16px;
    }

    body.mm-dashboard-page .dashboard-hero-premium-grid {
        gap: 18px;
    }

    body.mm-dashboard-page .dashboard-hero-scenic {
        left: -18%;
        opacity: 0.72;
    }

    body.mm-dashboard-page .dashboard-hero-quickstats {
        gap: 10px;
    }

    body.mm-dashboard-page .dashboard-hero-stat {
        padding: 12px 12px 14px;
    }

    body.mm-dashboard-page .dashboard-hero-cta--primary {
        align-self: stretch;
        justify-content: center;
        width: 100%;
    }
}

body.dashboard-body.mm-dashboard-page .dashboard-hero .dashboard-hero-title {
    font-size: clamp(1.65rem, 3.2vw, 2.35rem) !important;
    line-height: 1.12 !important;
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.45), 0 0 40px rgba(247, 223, 142, 0.06);
}

@media (prefers-reduced-motion: reduce) {
    body.mm-dashboard-page .dashboard-hero.dashboard-hero--premium,
    body.mm-dashboard-page .dashboard-hero-premium-bg,
    body.mm-dashboard-page .dashboard-hero-premium-particles {
        animation: none !important;
    }

    body.mm-dashboard-page .dashboard-hero-cta--primary:hover .dashboard-hero-cta-arrow {
        animation: none !important;
    }
}

/* Dashboard (?page=dashboard): recent transactions as a data table */
body.mm-dashboard-page .mm-panel--transactions .mm-tx-table-host {
    margin-top: 4px;
}

body.mm-dashboard-page .mm-tx-table-scroll {
    margin: 0 -4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

body.mm-dashboard-page .mm-tx-table {
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.8125rem;
    line-height: 1.35;
    min-width: 100%;
    width: 100%;
}

body.mm-dashboard-page .mm-tx-table thead th {
    border-bottom: 1px solid rgba(247, 223, 142, 0.22);
    color: rgba(255, 248, 230, 0.72);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 10px 12px 12px;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

body.mm-dashboard-page .mm-tx-table thead th.mm-tx-table__col-amt {
    text-align: right;
}

body.mm-dashboard-page .mm-tx-table thead th.mm-tx-table__col-status {
    text-align: right;
}

body.mm-dashboard-page .mm-tx-table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 252, 245, 0.92);
    padding: 12px 12px;
    vertical-align: middle;
}

body.mm-dashboard-page .mm-tx-table tbody tr.mm-tx-table__row:nth-child(even) td {
    background: rgba(0, 0, 0, 0.14);
}

body.mm-dashboard-page .mm-tx-table tbody tr.mm-tx-table__row:last-child td {
    border-bottom: none;
}

body.mm-dashboard-page .mm-tx-table__desc-text {
    display: block;
    font-weight: 600;
    letter-spacing: 0.02em;
}

body.mm-dashboard-page .mm-tx-table__col-amt {
    font-variant-numeric: tabular-nums;
    text-align: right;
    white-space: nowrap;
}

body.mm-dashboard-page .mm-tx-table__date {
    color: rgba(255, 248, 230, 0.58);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

body.mm-dashboard-page .mm-tx-table__col-status {
    text-align: right;
    white-space: nowrap;
}

body.mm-dashboard-page .mm-tx-table__amt {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

body.mm-dashboard-page .mm-tx-table__sign {
    font-weight: 800;
    margin-right: 2px;
    user-select: none;
}

body.mm-dashboard-page .mm-tx-table__amt--in {
    color: rgba(125, 220, 170, 0.95);
}

body.mm-dashboard-page .mm-tx-table__amt--out {
    color: rgba(255, 214, 140, 0.92);
}

body.mm-dashboard-page .mm-panel--transactions .mm-badge {
    border-radius: 999px;
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    padding: 4px 8px;
    text-transform: uppercase;
}

body.mm-dashboard-page .mm-panel--transactions .mm-badge--success {
    background: rgba(30, 230, 183, 0.14);
    border: 1px solid rgba(30, 230, 183, 0.35);
    color: rgba(165, 245, 210, 0.95);
}

body.mm-dashboard-page .mm-panel--transactions .mm-badge--pending {
    background: rgba(247, 223, 142, 0.1);
    border: 1px solid rgba(247, 223, 142, 0.32);
    color: rgba(247, 223, 142, 0.95);
}

body.mm-dashboard-page .mm-panel--transactions .mm-badge--danger {
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.35);
    color: rgba(255, 185, 175, 0.98);
}

body.mm-dashboard-page .mm-panel--transactions .mm-badge--neutral {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 248, 230, 0.78);
}

/* Dashboard (?page=dashboard): Rank & team KPI cards */
body.mm-dashboard-page .mm-panel--rank .mm-rank-heading-meta {
    align-items: center;
    color: rgba(255, 248, 230, 0.62);
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    gap: 6px;
    line-height: 1.35;
}

body.mm-dashboard-page .mm-rank-heading-link {
    color: rgba(247, 223, 142, 0.92);
    font-weight: 650;
    text-decoration: none;
}

body.mm-dashboard-page .mm-rank-heading-link:hover {
    text-decoration: underline;
}

body.mm-dashboard-page .mm-rank-heading-dot {
    color: rgba(255, 255, 255, 0.28);
    user-select: none;
}

body.mm-dashboard-page .mm-rank-heading-rank {
    color: rgba(255, 252, 245, 0.82);
    font-weight: 600;
}

body.mm-dashboard-page .mm-rank-grid {
    align-items: stretch;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 6px;
}

body.mm-dashboard-page .mm-rank-card {
    align-items: stretch;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    padding: 12px 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.mm-dashboard-page .mm-rank-card:hover {
    border-color: rgba(247, 223, 142, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 28px rgba(0, 0, 0, 0.22);
}

body.mm-dashboard-page .mm-rank-card__icon {
    align-items: center;
    align-self: flex-start;
    background: linear-gradient(145deg, rgba(247, 223, 142, 0.22), rgba(247, 223, 142, 0.06));
    border: 1px solid rgba(247, 223, 142, 0.28);
    border-radius: 11px;
    color: rgba(247, 223, 142, 0.95);
    display: flex;
    flex-shrink: 0;
    height: 40px;
    justify-content: center;
    width: 40px;
}

body.mm-dashboard-page .mm-rank-card--weaker .mm-rank-card__icon {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    border-color: rgba(255, 255, 255, 0.14);
    color: rgba(255, 248, 230, 0.78);
}

body.mm-dashboard-page .mm-rank-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

body.mm-dashboard-page .mm-rank-card__label {
    color: rgba(247, 223, 142, 0.9);
    font-size: 0.6rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.mm-dashboard-page .mm-rank-card__value {
    color: rgba(255, 252, 245, 0.98);
    font-size: clamp(0.88rem, 0.32rem + 2.4vw, 1.28rem);
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

body.mm-dashboard-page .mm-rank-card__hint {
    color: rgba(255, 248, 230, 0.52);
    font-size: 0.68rem;
    line-height: 1.35;
    margin: 0;
    overflow-wrap: anywhere;
}

body.mm-dashboard-page .mm-rank-card__progress {
    background: rgba(0, 0, 0, 0.32);
    border-radius: 999px;
    height: 5px;
    margin-top: 8px;
    overflow: hidden;
    width: 100%;
}

body.mm-dashboard-page .mm-rank-card__progress-bar {
    background: linear-gradient(90deg, rgba(247, 223, 142, 0.65), rgba(30, 230, 183, 0.75));
    border-radius: 999px;
    display: block;
    height: 100%;
    min-width: 0;
    transition: width 0.35s ease;
}

@media (max-width: 600px) {
    body.mm-dashboard-page .mm-rank-grid {
        grid-template-columns: 1fr;
    }

    body.mm-dashboard-page .mm-rank-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 14px 16px;
    }

    body.mm-dashboard-page .mm-rank-card__icon {
        height: 44px;
        width: 44px;
    }

    body.mm-dashboard-page .mm-rank-card__value {
        font-size: 1.35rem;
    }
}

/* View & Review (?page=view_review) — ultra-premium layout */
body.view-review-page .dashboard-hero {
    margin-bottom: 22px;
}

body.view-review-page .premium-analytics-grid {
    margin-bottom: 22px;
}

body.view-review-page .vr-today-panel,
body.view-review-page .vr-history-panel {
    margin-bottom: 22px;
}

body.view-review-page .vr-today-count {
    color: rgba(255, 248, 230, 0.62);
    font-size: 0.8125rem;
    font-weight: 600;
}

body.view-review-page .vr-empty {
    color: rgba(255, 248, 230, 0.65);
    padding: 28px 20px;
    text-align: center;
}

body.view-review-page .vr-today-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

body.view-review-page .vr-today-card {
    align-items: stretch;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: grid;
    gap: 0;
    grid-template-columns: 88px minmax(0, 1fr);
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.view-review-page .vr-today-card:hover {
    border-color: rgba(247, 223, 142, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 12px 36px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}

body.view-review-page .vr-today-card__poster {
    background: rgba(0, 0, 0, 0.35);
    display: block;
    min-height: 120px;
    overflow: hidden;
}

body.view-review-page .vr-today-card__poster img {
    display: block;
    height: 100%;
    min-height: 120px;
    object-fit: cover;
    width: 100%;
}

body.view-review-page .vr-today-card__placeholder {
    background: linear-gradient(160deg, rgba(247, 223, 142, 0.12), rgba(0, 0, 0, 0.4));
    display: block;
    min-height: 120px;
    width: 100%;
}

body.view-review-page .vr-today-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    padding: 14px 14px 12px;
}

body.view-review-page .vr-today-card__cat {
    color: rgba(247, 223, 142, 0.88);
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

body.view-review-page .vr-today-card__title {
    color: rgba(255, 252, 245, 0.98);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
}

body.view-review-page .vr-today-card__meta {
    color: rgba(255, 248, 230, 0.52);
    font-size: 0.72rem;
    line-height: 1.35;
}

body.view-review-page .vr-today-card__pill {
    align-self: flex-start;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-top: 4px;
    padding: 5px 10px;
    text-transform: uppercase;
}

body.view-review-page .vr-today-card--due .vr-today-card__pill {
    background: rgba(247, 223, 142, 0.16);
    border: 1px solid rgba(247, 223, 142, 0.35);
    color: rgba(247, 223, 142, 0.98);
}

body.view-review-page .vr-today-card--viewed .vr-today-card__pill {
    background: rgba(30, 230, 183, 0.12);
    border: 1px solid rgba(30, 230, 183, 0.32);
    color: rgba(165, 245, 210, 0.95);
}

body.view-review-page .vr-today-card--submitted .vr-today-card__pill {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: rgba(187, 247, 208, 0.98);
}

body.view-review-page .vr-history-panel__head {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px 16px;
}

body.view-review-page .vr-history-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.view-review-page .vr-history-summary__chip {
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    padding: 5px 11px;
    text-transform: uppercase;
}

body.view-review-page .vr-history-summary__chip--ok {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.32);
    color: rgba(187, 247, 208, 0.95);
}

body.view-review-page .vr-history-summary__chip--due {
    background: rgba(247, 223, 142, 0.1);
    border: 1px solid rgba(247, 223, 142, 0.32);
    color: rgba(247, 223, 142, 0.95);
}

body.view-review-page .vr-history-summary__chip--miss {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.32);
    color: rgba(254, 202, 202, 0.95);
}

/* Review history (?page=view_review) — elegant datatable */
body.view-review-page .vr-history-panel .dashboard-panel-heading {
    margin-bottom: 12px;
}

body.view-review-page .vr-history-summary__chip {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    padding: 6px 12px;
}

body.view-review-page .vr-review-shell {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-top: 4px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

body.view-review-page .vr-review-toolbar {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: space-between;
    padding: 14px 18px;
}

body.view-review-page .vr-review-toolbar__field {
    align-items: center;
    color: rgba(255, 248, 230, 0.55);
    display: inline-flex;
    font-size: 0.8125rem;
    gap: 8px;
    margin: 0;
}

body.view-review-page .vr-review-toolbar__field--search {
    flex: 1;
    justify-content: flex-end;
    min-width: min(100%, 280px);
}

body.view-review-page .vr-review-toolbar__label {
    font-weight: 600;
    white-space: nowrap;
}

body.view-review-page .vr-review-toolbar select,
body.view-review-page .vr-review-toolbar input[type="search"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 252, 245, 0.92);
    font: inherit;
    font-size: 0.8125rem;
    min-height: 36px;
    padding: 0 12px;
}

body.view-review-page .vr-review-toolbar input[type="search"] {
    min-width: min(240px, 100%);
    width: min(320px, 100%);
}

body.view-review-page .vr-review-toolbar select:focus,
body.view-review-page .vr-review-toolbar input[type="search"]:focus {
    border-color: rgba(247, 223, 142, 0.45);
    box-shadow: 0 0 0 3px rgba(247, 223, 142, 0.08);
    outline: none;
}

body.view-review-page .vr-review-table-wrap {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
}

body.view-review-page .vr-review-datatable {
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 100%;
    width: 100%;
}

body.view-review-page .vr-review-datatable thead {
    background: rgba(255, 255, 255, 0.04);
}

body.view-review-page .vr-review-datatable thead th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 248, 230, 0.55);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 12px 16px;
    text-align: left;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

body.view-review-page .vr-review-datatable thead th:last-child {
    text-align: right;
}

body.view-review-page .vr-review-datatable th button {
    align-items: center;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 600;
    gap: 6px;
    letter-spacing: inherit;
    margin: 0;
    min-height: 0;
    padding: 0;
    text-transform: inherit;
    width: auto;
}

body.view-review-page .vr-review-datatable th button:hover {
    color: rgba(247, 223, 142, 0.95);
}

body.view-review-page .vr-review-datatable th button::after {
    height: 12px;
    margin-left: 4px;
    opacity: 0.35;
    width: 10px;
}

body.view-review-page .vr-review-datatable th button[data-sort-direction="asc"]::after,
body.view-review-page .vr-review-datatable th button[data-sort-direction="desc"]::after {
    opacity: 0.85;
}

body.view-review-page .vr-review-datatable tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 248, 230, 0.82);
    font-size: 0.8125rem;
    padding: 14px 16px;
    vertical-align: middle;
}

body.view-review-page .vr-review-datatable tbody tr:last-child td {
    border-bottom: none;
}

body.view-review-page .vr-review-datatable tbody td.vr-review-row__status {
    text-align: right;
}

body.view-review-page .vr-review-row {
    transition: background 0.15s ease;
}

body.view-review-page .vr-review-row:hover td {
    background: rgba(255, 255, 255, 0.03);
}

body.view-review-page .vr-review-row--due td {
    background: rgba(247, 223, 142, 0.03);
}

body.view-review-page .vr-review-row--due td:first-child {
    box-shadow: inset 3px 0 0 rgba(247, 223, 142, 0.7);
}

body.view-review-page .vr-review-row--missed td {
    background: rgba(248, 113, 113, 0.06);
}

body.view-review-page .vr-review-row--missed td:first-child {
    box-shadow: inset 3px 0 0 rgba(248, 113, 113, 0.55);
}

body.view-review-page .vr-review-row--submitted td {
    background: rgba(34, 197, 94, 0.04);
}

body.view-review-page .vr-review-row--submitted td:first-child {
    box-shadow: inset 3px 0 0 rgba(34, 197, 94, 0.5);
}

body.view-review-page .vr-review-datatable .table-empty {
    color: rgba(255, 248, 230, 0.45);
    font-size: 0.875rem;
    padding: 32px 16px;
    text-align: center;
}

body.view-review-page .vr-review-footer {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding: 12px 18px;
}

body.view-review-page .vr-review-footer__info {
    color: rgba(255, 248, 230, 0.5);
    font-size: 0.8125rem;
    font-weight: 500;
}

body.view-review-page .vr-review-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
}

body.view-review-page .vr-review-pagination button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 248, 230, 0.7);
    cursor: pointer;
    font: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    min-height: 34px;
    min-width: 34px;
    padding: 0 10px;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

body.view-review-page .vr-review-pagination button:hover:not(:disabled):not(.active) {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(247, 223, 142, 0.35);
    color: rgba(247, 223, 142, 0.95);
}

body.view-review-page .vr-review-pagination button.active {
    background: rgba(247, 223, 142, 0.18) !important;
    border-color: rgba(247, 223, 142, 0.5) !important;
    color: rgba(247, 223, 142, 0.98) !important;
    box-shadow: none !important;
}

body.view-review-page .vr-review-pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

body.view-review-page .vr-review-pagination span {
    color: rgba(255, 248, 230, 0.35);
    line-height: 34px;
    padding: 0 2px;
}

body.view-review-page .vr-ledger__movie {
    align-items: center;
    color: inherit;
    display: flex;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

body.view-review-page .vr-ledger__movie:hover .vr-ledger__movie-title {
    color: rgba(247, 223, 142, 0.98);
}

body.view-review-page .vr-ledger__thumb {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    flex-shrink: 0;
    height: 44px;
    overflow: hidden;
    position: relative;
    width: 44px;
}

body.view-review-page .vr-ledger__thumb-icon {
    align-items: center;
    color: rgba(247, 223, 142, 0.75);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

body.view-review-page .vr-ledger__thumb-img {
    display: block;
    height: 100%;
    object-fit: cover;
    position: relative;
    width: 100%;
    z-index: 1;
}

body.view-review-page .vr-ledger__movie-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

body.view-review-page .vr-ledger__movie-title {
    color: rgba(255, 252, 245, 0.98);
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.view-review-page .vr-ledger__movie-cat {
    color: rgba(255, 248, 230, 0.5);
    display: block;
    font-size: 0.72rem;
    line-height: 1.2;
}

body.view-review-page .vr-review-datatable time {
    color: rgba(255, 248, 230, 0.78);
    font-size: 0.8125rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

body.view-review-page .vr-ledger__watch {
    border-radius: 6px;
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 4px 8px;
    white-space: nowrap;
}

body.view-review-page .vr-ledger__watch--yes {
    background: rgba(34, 197, 94, 0.1);
    color: rgba(187, 247, 208, 0.9);
}

body.view-review-page .vr-ledger__watch--no {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 248, 230, 0.45);
}

body.view-review-page .vr-ledger__detail {
    color: rgba(255, 248, 230, 0.55);
    font-size: 0.8125rem;
    line-height: 1.4;
}

body.view-review-page .vr-ledger__detail--miss {
    color: rgba(254, 202, 202, 0.85);
}

body.view-review-page .vr-ledger__status {
    border-radius: 6px;
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 5px 10px;
    text-transform: uppercase;
    white-space: nowrap;
}

body.view-review-page .vr-ledger__status--submitted {
    background: rgba(34, 197, 94, 0.12);
    color: rgba(187, 247, 208, 0.95);
}

body.view-review-page .vr-ledger__status--due {
    background: rgba(247, 223, 142, 0.12);
    color: rgba(247, 223, 142, 0.95);
}

body.view-review-page .vr-ledger__status--missed {
    background: rgba(248, 113, 113, 0.12);
    color: rgba(254, 202, 202, 0.92);
}

@media (max-width: 640px) {
    body.view-review-page .vr-review-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    body.view-review-page .vr-review-toolbar__field,
    body.view-review-page .vr-review-toolbar__field--search {
        justify-content: flex-start;
        min-width: 0;
        width: 100%;
    }

    body.view-review-page .vr-review-toolbar input[type="search"] {
        width: 100%;
    }

    body.view-review-page .vr-today-grid {
        grid-template-columns: 1fr;
    }

    body.view-review-page .vr-history-panel__head {
        flex-direction: column;
    }

    body.view-review-page .vr-review-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

.admin-panel,
.saas-panel,
.table-panel,
.glass-dashboard-card,
.dashboard-panel,
.profile-card,
.stat-card,
.saas-stat-card,
.team-tabs,
.premium-chart-card,
.premium-orbit-card {
    backdrop-filter: blur(26px) saturate(150%);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035)),
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .08), transparent 32%),
        var(--premium-panel);
    border: 1px solid var(--premium-line);
    border-radius: 8px;
    box-shadow: var(--premium-shadow);
    color: var(--premium-text);
}

.admin-panel:hover,
.saas-stat-card:hover,
.glass-dashboard-card:hover,
.dashboard-panel:hover,
.stat-card:hover {
    border-color: rgba(247, 223, 142, .26);
    box-shadow: 0 34px 110px rgba(0, 0, 0, .58), 0 0 34px rgba(212, 175, 55, .12), inset 0 1px 0 rgba(255, 255, 255, .17);
    transform: translateY(-2px);
}

.saas-stat-grid,
.dashboard-stats {
    gap: 18px;
}

.saas-stat-card,
.stat-card {
    min-height: 142px;
    padding: 20px 20px 18px 74px !important;
}

.saas-stat-card::before,
.stat-card::before {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(247, 223, 142, .24), rgba(30, 230, 183, .16)),
        rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .18);
    color: var(--premium-gold-bright);
    content: "";
    display: flex;
    font-size: 18px;
    font-weight: 950;
    height: 40px;
    justify-content: center;
    left: 20px;
    position: absolute;
    top: 22px;
    width: 40px;
    z-index: 2;
}

.saas-stat-card:nth-child(1)::before,
.stat-card:nth-child(1)::before {
    content: "$";
}

.saas-stat-card:nth-child(2)::before,
.stat-card:nth-child(2)::before {
    content: "#";
}

.saas-stat-card:nth-child(3)::before,
.stat-card:nth-child(3)::before {
    content: "%";
}

.saas-stat-card:nth-child(4)::before,
.stat-card:nth-child(4)::before {
    content: "+";
}

.saas-stat-card:nth-child(5)::before,
.stat-card:nth-child(5)::before {
    content: "*";
}

.saas-stat-card:nth-child(6)::before,
.stat-card:nth-child(6)::before {
    content: ">";
}

body.dashboard-body .dashboard-stats .stat-card::before {
    content: "";
    display: none;
}

body.dashboard-body .dashboard-stats .stat-icon {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(247, 223, 142, .26), rgba(30, 230, 183, .18)),
        rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .2);
    color: var(--premium-gold-bright);
    display: flex;
    font-size: 18px;
    font-weight: 950;
    height: 40px;
    justify-content: center;
    left: 20px;
    line-height: 1;
    position: absolute;
    text-shadow: 0 0 16px rgba(247, 223, 142, .28);
    top: 22px;
    width: 40px;
    z-index: 4;
}

.saas-stat-card span,
.stat-card span {
    color: rgba(246, 241, 230, .68);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.saas-stat-card strong,
.stat-card strong {
    color: #ffffff;
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1;
    text-shadow: 0 0 28px rgba(247, 223, 142, .15);
}

.saas-stat-card small {
    color: var(--premium-muted);
}

.bar-chart,
.premium-bars {
    display: grid;
    gap: 12px;
}

.bar-row,
.premium-bar-row {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 10px;
}

.bar-row div,
.premium-bar-row i,
.investment-plan-meter {
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 999px;
    overflow: hidden;
}

.bar-row div i,
.premium-bar-row i b,
.investment-plan-meter i {
    background:
        linear-gradient(90deg, var(--premium-teal), var(--premium-gold-bright), var(--premium-blue));
    box-shadow: 0 0 18px rgba(30, 230, 183, .24);
}

.admin-table-wrap,
.invoice-table-wrap,
.team-table-wrap,
.network-table-wrap {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
}

.admin-table,
.invoice-list-table,
.team-table {
    background: transparent;
    color: var(--premium-text);
}

.admin-table th,
.invoice-list-table th,
.team-table th {
    background: rgba(255, 255, 255, .055);
    color: rgba(247, 223, 142, .9) !important;
    font-size: 12px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.admin-table td,
.invoice-list-table td,
.team-table td {
    border-color: rgba(255, 255, 255, .07);
    color: rgba(246, 241, 230, .86);
}

.admin-table tbody tr:hover,
.invoice-list-table tbody tr:hover,
.team-table tbody tr:hover {
    background: rgba(247, 223, 142, .055);
}

.admin-button,
.gold-button,
.login-button,
.register-btn,
.footer-newsletter button {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .48), transparent 28%),
        linear-gradient(135deg, var(--premium-gold-bright), var(--premium-gold));
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(212, 175, 55, .22), inset 0 1px 0 rgba(255, 255, 255, .38);
    color: #090b0d !important;
    font-weight: 950;
}

.admin-button.subtle,
.ghost-button,
.admin-button.small.subtle {
    background: rgba(255, 255, 255, .065);
    border-color: rgba(255, 255, 255, .12);
    color: var(--premium-gold-bright) !important;
}

.admin-button.danger,
.danger-text {
    background: rgba(255, 123, 123, .14);
    border-color: rgba(255, 123, 123, .36);
    color: #ffd2d2 !important;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
body.dashboard-body input,
body.dashboard-body textarea,
body.dashboard-body select {
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    color: #ffffff;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
body.dashboard-body input:focus,
body.dashboard-body textarea:focus,
body.dashboard-body select:focus {
    border-color: rgba(247, 223, 142, .74);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .12), 0 0 24px rgba(30, 230, 183, .1);
}

.profile-avatar,
.investment-plan-icon,
.premium-ring {
    background:
        conic-gradient(from 150deg, var(--premium-teal), var(--premium-gold-bright), var(--premium-blue), var(--premium-teal));
    box-shadow: 0 0 34px rgba(30, 230, 183, .14), inset 0 1px 0 rgba(255, 255, 255, .18);
}

.activity-item,
.dashboard-review-item,
.today-review-item,
.review-history-item,
.investment-plan-item {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 8px;
}

.activity-item:hover,
.dashboard-review-item:hover,
.today-review-item:hover,
.review-history-item:hover,
.investment-plan-item:hover {
    background: rgba(255, 255, 255, .075);
    border-color: rgba(247, 223, 142, .18);
}

/* Dashboard panel density fixes */
body.dashboard-body .dashboard-balance-row {
    align-items: start;
}

body.dashboard-body .dashboard-equal-panel {
    min-height: 0 !important;
}

body.dashboard-body .dashboard-equal-panel .dashboard-scroll-list,
body.dashboard-body .dashboard-equal-panel .activity-feed {
    max-height: none !important;
    min-height: 0 !important;
}

body.dashboard-body .dashboard-investment-panel .dashboard-list {
    gap: 12px;
}

body.dashboard-body .dashboard-equal-panel .dashboard-empty {
    align-items: center;
    display: flex;
    min-height: 72px !important;
    padding: 18px 20px !important;
}

body.dashboard-body .dashboard-equal-panel .activity-item {
    align-items: start;
    display: grid;
    gap: 8px;
    min-height: 0 !important;
    padding: 16px !important;
}

body.dashboard-body .dashboard-equal-panel .activity-item strong {
    font-size: 20px !important;
}

body.dashboard-body .dashboard-equal-panel .activity-item small {
    margin-top: 0 !important;
}

/* Premium liquid glass public website */
body.home-body:not(.dashboard-body):not(.contact-page-body),
.home-body:not(.contact-page-body) .home-main,
.home-body:not(.contact-page-body) .detail-main,
.home-body:not(.contact-page-body) .static-main {
    background:
        radial-gradient(circle at 8% 0%, rgba(30, 230, 183, .13), transparent 30%),
        radial-gradient(circle at 86% 10%, rgba(212, 175, 55, .16), transparent 34%),
        radial-gradient(circle at 50% 100%, rgba(107, 184, 255, .08), transparent 40%),
        linear-gradient(145deg, #030405, #081110 46%, #050709);
    color: var(--premium-text);
}

body.home-body:not(.dashboard-body)::before {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .055), transparent 30%, rgba(255, 255, 255, .035) 58%, transparent 76%),
        radial-gradient(circle at 34% 12%, rgba(255, 255, 255, .055), transparent 24%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: 0;
}

.home-body .site-header {
    backdrop-filter: blur(26px) saturate(150%);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .04)),
        rgba(5, 7, 9, .78);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 22px 80px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .13);
}

.home-body .site-header::before {
    background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, .16) 45%, transparent 58% 100%);
    opacity: .22;
}

.home-body .site-header::after {
    background: linear-gradient(90deg, transparent, rgba(30, 230, 183, .35), var(--premium-gold-bright), rgba(107, 184, 255, .28), transparent);
}

.home-body .brand-icon {
    background:
        linear-gradient(135deg, rgba(247, 223, 142, .95), rgba(30, 230, 183, .82));
    box-shadow: 0 0 28px rgba(30, 230, 183, .16), inset 0 1px 0 rgba(255, 255, 255, .36);
    color: #06110f;
}

.home-body .site-nav:not(.mobile-menu-drawer) > a,
.home-body .site-nav:not(.mobile-menu-drawer) .inline-logout-form button {
    color: rgba(246, 241, 230, .72) !important;
}

.home-body .site-nav:not(.mobile-menu-drawer) > a:hover,
.home-body .site-nav:not(.mobile-menu-drawer) .inline-logout-form button:hover {
    color: var(--premium-gold-bright) !important;
}

.home-body .search-field,
.home-body .live-search-results,
.home-body .search-mobile-toggle,
.home-body .hamburger {
    backdrop-filter: blur(20px) saturate(145%);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.lux-hero {
    background: #030405;
    isolation: isolate;
}

.lux-hero::after {
    background:
        radial-gradient(circle at 78% 18%, rgba(30, 230, 183, .2), transparent 26%),
        radial-gradient(circle at 22% 78%, rgba(212, 175, 55, .14), transparent 32%);
    opacity: .8;
}

.hero-slide video,
.hero-slide img,
.hero-fallback {
    filter: saturate(1.08) contrast(1.04);
    opacity: .62;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(3, 4, 5, .96) 0%, rgba(3, 4, 5, .78) 40%, rgba(3, 4, 5, .22) 100%),
        linear-gradient(180deg, rgba(3, 4, 5, .18), rgba(3, 4, 5, .24) 48%, #050709 100%),
        radial-gradient(circle at 76% 18%, rgba(30, 230, 183, .12), transparent 28%);
}

.hero-content h1,
.section-heading h2,
.static-page h1,
.detail-info h1 {
    color: #ffffff;
    font-weight: 950;
    letter-spacing: 0;
    text-shadow: 0 18px 70px rgba(0, 0, 0, .58);
}

.hero-content p,
.section-heading p,
.static-page p,
.detail-info p {
    color: rgba(246, 241, 230, .76);
}

.gold-kicker {
    color: var(--premium-gold-bright);
    text-shadow: 0 0 24px rgba(212, 175, 55, .24);
}

.home-body .home-section {
    position: relative;
    z-index: 1;
}

.glass-movie-card,
.rated-card,
.clip-card,
.static-card,
.contact-panel,
.contact-list article,
.contact-form-shell,
.detail-player,
.review-panel,
.clip-panel,
.review-card,
.login-prompt,
.lux-empty {
    backdrop-filter: blur(24px) saturate(150%);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035)),
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .08), transparent 34%),
        var(--premium-panel);
    border: 1px solid var(--premium-line);
    border-radius: 8px;
    box-shadow: var(--premium-shadow);
    color: var(--premium-text);
    overflow: hidden;
}

.glass-movie-card::before,
.rated-card::before,
.clip-card::before,
.static-card::before,
.contact-panel::before,
.contact-list article::before,
.contact-form-shell::before,
.detail-player::before,
.review-card::before,
.login-prompt::before {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .18), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 46%);
    opacity: .55;
}

.glass-movie-card::after,
.rated-card::after,
.clip-card::after,
.static-card::after,
.contact-panel::after,
.contact-form-shell::after,
.detail-player::after {
    background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, .13) 46%, transparent 58% 100%);
    content: "";
    inset: 0;
    opacity: .18;
    pointer-events: none;
    position: absolute;
    transform: translateX(-30%);
}

.glass-movie-card:hover,
.rated-card:hover,
.clip-card:hover,
.static-card:hover,
.contact-list article:hover {
    border-color: rgba(247, 223, 142, .28);
    box-shadow: 0 34px 110px rgba(0, 0, 0, .58), 0 0 34px rgba(212, 175, 55, .12), inset 0 1px 0 rgba(255, 255, 255, .17);
    transform: translateY(-4px);
}

.poster-frame,
.rated-card img,
.clip-card video,
.clip-card iframe {
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.glass-movie-card span,
.rated-card span,
.clip-card span,
.static-card span,
.contact-list span {
    color: var(--premium-gold-bright);
}

.glass-movie-card h3,
.rated-card h3,
.clip-card h3,
.static-card h2,
.contact-panel h2,
.contact-form-shell h2,
.review-card strong {
    color: #ffffff;
}

.glass-movie-card p,
.rated-card p,
.clip-card p,
.static-card p,
.contact-panel p,
.review-card p {
    color: rgba(246, 241, 230, .7);
}

.rated-card strong,
.hero-dots button.is-active,
.review-status-pill.submitted,
.review-status-pill.viewed {
    background: linear-gradient(135deg, rgba(30, 230, 183, .28), rgba(247, 223, 142, .16));
    border-color: rgba(30, 230, 183, .28);
    color: #d9fff4;
}

.detail-hero {
    background:
        radial-gradient(circle at 74% 15%, rgba(30, 230, 183, .16), transparent 32%),
        linear-gradient(180deg, rgba(3, 4, 5, .16), #050709 88%);
}

.detail-backdrop {
    background:
        radial-gradient(circle at 72% 20%, rgba(212, 175, 55, .13), transparent 32%),
        linear-gradient(180deg, rgba(5, 7, 9, .1), #050709);
}

.contact-form input,
.contact-form textarea,
.footer-newsletter input,
.review-form textarea,
.live-search input {
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.footer-newsletter input:focus,
.review-form textarea:focus {
    border-color: rgba(247, 223, 142, .74);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .12), 0 0 24px rgba(30, 230, 183, .1);
}

.site-footer {
    backdrop-filter: blur(24px) saturate(150%);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
        radial-gradient(circle at 84% 0%, rgba(212, 175, 55, .13), transparent 34%),
        rgba(3, 4, 5, .9);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 -26px 90px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.site-footer h2,
.site-footer .footer-logo span:last-child {
    color: #ffffff;
}

.site-footer p,
.site-footer a,
.site-footer span {
    color: rgba(246, 241, 230, .7);
}

.site-footer a:hover {
    color: var(--premium-gold-bright);
}

@media (max-width: 640px) {
    .glass-movie-card:hover,
    .rated-card:hover,
    .clip-card:hover,
    .static-card:hover,
    .contact-list article:hover {
        transform: none;
    }
}

.admin-muted {
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.7;
    margin: 0 0 20px;
}

.admin-alert {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 18px;
    padding: 14px 16px;
}

.admin-alert p {
    margin: 0;
}

.admin-alert.error,
.danger-zone {
    border-color: rgba(255, 105, 105, 0.42);
}

.admin-alert.error {
    background: rgba(130, 20, 30, 0.24);
}

.admin-alert.success {
    background: rgba(28, 120, 82, 0.18);
    border-color: rgba(60, 220, 150, 0.35);
}

.admin-login-body {
    align-items: center;
    background:
        radial-gradient(circle at 18% 16%, rgba(30, 230, 183, 0.18), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(247, 223, 142, 0.14), transparent 28%),
        linear-gradient(135deg, #030506 0%, #071012 46%, #050607 100%);
    color: var(--premium-text, #f6f1e6);
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 32px;
}

.admin-login-bg {
    inset: 0;
    pointer-events: none;
    position: fixed;
}

.admin-login-bg::before,
.admin-login-bg::after {
    content: "";
    position: absolute;
}

.admin-login-bg::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 76px 76px;
    inset: 0;
    mask-image: linear-gradient(120deg, transparent, #000 18%, #000 72%, transparent);
}

.admin-login-bg::after {
    background: linear-gradient(90deg, transparent, rgba(247, 223, 142, 0.22), rgba(30, 230, 183, 0.18), transparent);
    filter: blur(1px);
    height: 1px;
    left: 8%;
    opacity: 0.9;
    right: 8%;
    top: 20%;
}

.admin-login-shell {
    align-items: center;
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    margin: 0 auto;
    max-width: 1120px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.admin-login-hero {
    max-width: 620px;
}

.admin-login-brand {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    gap: 12px;
    margin-bottom: 42px;
    text-decoration: none;
}

.admin-login-brand span {
    align-items: center;
    background: linear-gradient(135deg, rgba(247, 223, 142, 0.95), rgba(30, 230, 183, 0.8));
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(30, 230, 183, 0.16);
    color: #08100f;
    display: inline-flex;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.admin-login-brand strong {
    font-size: 1.15rem;
    letter-spacing: 0;
}

.admin-login-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: var(--premium-gold-bright, #f7df8e);
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 900;
    padding: 9px 13px;
    text-transform: uppercase;
}

.admin-login-hero h1 {
    color: #ffffff;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 0.96;
    margin: 18px 0;
}

.admin-login-hero p,
.admin-login-card-head p {
    color: rgba(246, 241, 230, 0.68);
    line-height: 1.7;
}

.admin-login-hero p {
    font-size: 1.05rem;
    max-width: 560px;
}

.admin-login-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.admin-login-metrics span {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    min-width: 118px;
    padding: 14px 18px;
}

.admin-login-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
        rgba(8, 12, 15, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    overflow: hidden;
    padding: 34px;
    position: relative;
}

.admin-login-card::before {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 42%);
    content: "";
    height: 160px;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
}

.admin-login-card > * {
    position: relative;
    z-index: 1;
}

.admin-login-card-head {
    margin-bottom: 28px;
}

.admin-login-card-head h2 {
    color: #ffffff;
    font-size: 2.1rem;
    margin: 14px 0 8px;
}

.admin-login-form {
    display: grid;
    gap: 12px;
}

.admin-login-form label {
    color: rgba(246, 241, 230, 0.76);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-login-form input {
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    color: #ffffff;
    font: inherit;
    min-height: 54px;
    padding: 0 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.admin-login-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(247, 223, 142, 0.72);
    box-shadow: 0 0 0 4px rgba(247, 223, 142, 0.1), 0 0 34px rgba(30, 230, 183, 0.1);
    outline: none;
}

.admin-login-form .password-field {
    margin-bottom: 8px;
}

.admin-login-form .password-field input {
    padding-right: 82px;
}

.admin-login-form .password-field button {
    background: transparent;
    border: 0;
    color: var(--premium-gold-bright, #f7df8e);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    height: 100%;
    padding: 0 16px;
    position: absolute;
    right: 0;
    top: 0;
}

.admin-login-button {
    background: linear-gradient(135deg, var(--premium-gold-bright, #f7df8e), var(--premium-gold, #d4af37));
    border: 0;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.18);
    color: #120f05;
    cursor: pointer;
    font: inherit;
    font-weight: 950;
    min-height: 56px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-login-button:hover {
    box-shadow: 0 22px 56px rgba(212, 175, 55, 0.28);
    transform: translateY(-2px);
}

.admin-login-alert {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #7f1d1d;
    margin-bottom: 22px;
    padding: 12px 14px;
}

.admin-login-alert p {
    color: #7f1d1d;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}

.admin-login-alert p + p {
    margin-top: 6px;
}

.admin-datatable-toolbar,
.admin-datatable-footer {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.admin-datatable-footer {
    margin: 16px 0 0;
}

.admin-datatable-toolbar label {
    align-items: center;
    color: rgba(246, 241, 230, 0.68);
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 800;
    gap: 8px;
}

.admin-datatable-toolbar input,
.admin-datatable-toolbar select {
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: #ffffff;
    font: inherit;
    min-height: 38px;
    padding: 0 12px;
}

.admin-datatable-toolbar input {
    min-width: min(320px, 44vw);
}

.admin-datatable-toolbar input:focus,
.admin-datatable-toolbar select:focus {
    border-color: rgba(247, 223, 142, 0.68);
    box-shadow: 0 0 0 4px rgba(247, 223, 142, 0.1);
    outline: none;
}

.admin-body .admin-datatable thead,
.admin-body .admin-reviews-table thead {
    background: linear-gradient(180deg, rgba(40, 46, 58, 0.98), rgba(20, 24, 32, 0.98));
    box-shadow: inset 0 -1px 0 rgba(212, 175, 55, 0.22);
}

.admin-body .admin-datatable thead th,
.admin-body .admin-reviews-table thead th {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-right: 0 !important;
    color: rgba(247, 223, 142, 0.96) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    line-height: 1.35;
    padding: 17px 20px !important;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

.admin-body .admin-datatable thead th:last-child,
.admin-body .admin-reviews-table thead th:last-child {
    padding-right: 22px !important;
    text-align: right;
}

.admin-datatable th button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 800;
    gap: 10px;
    justify-content: flex-start;
    letter-spacing: inherit;
    line-height: 1.35;
    min-height: 0;
    padding: 6px 4px;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
}

.admin-datatable th button:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.admin-datatable th button:focus-visible {
    outline: 2px solid rgba(247, 223, 142, 0.55);
    outline-offset: 2px;
}

.admin-datatable th button::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23a89252' fill-opacity='0.45' d='M12 5l4.5 5.5h-9L12 5z'/%3E%3Cpath fill='%23a89252' fill-opacity='0.45' d='M12 19l-4.5-5.5h9L12 19z'/%3E%3C/svg%3E") center / contain no-repeat;
    content: "";
    flex-shrink: 0;
    height: 18px;
    margin-left: auto;
    width: 14px;
}

.admin-datatable th button[data-sort-direction="asc"]::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f7df8e' d='M12 5l4.5 5.5h-9L12 5z'/%3E%3Cpath fill='%23a89252' fill-opacity='0.28' d='M12 19l-4.5-5.5h9L12 19z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.admin-datatable th button[data-sort-direction="desc"]::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23a89252' fill-opacity='0.28' d='M12 5l4.5 5.5h-9L12 5z'/%3E%3Cpath fill='%23f7df8e' d='M12 19l-4.5-5.5h9L12 19z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.admin-body .admin-datatable tbody td,
.admin-body .admin-reviews-table tbody td {
    padding: 14px 20px !important;
    vertical-align: middle;
}

.admin-datatable-footer [data-datatable-info] {
    color: rgba(246, 241, 230, 0.68);
    font-size: 0.88rem;
    font-weight: 800;
}

.admin-datatable-footer .pagination {
    margin: 0;
}

.admin-datatable-footer .pagination button {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: rgba(246, 241, 230, 0.76);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    min-height: 36px;
    padding: 0 12px;
}

.admin-datatable-footer .pagination button.active {
    background: linear-gradient(135deg, var(--premium-teal, #1ee6b7), var(--premium-gold-bright, #f7df8e));
    color: #07100f;
}

.admin-datatable-footer .pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.admin-datatable-footer .pagination span {
    color: rgba(246, 241, 230, 0.5);
    padding: 0 2px;
}

.admin-package-form {
    align-items: end;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(180px, 1.4fr) repeat(3, minmax(120px, 1fr)) auto;
    margin-bottom: 18px;
}

.admin-package-form label {
    margin-bottom: 7px;
}

.admin-package-form .admin-button {
    min-height: 48px;
    white-space: nowrap;
}

.admin-income-actions-panel {
    margin-bottom: 22px;
}

.admin-income-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-income-actions form {
    margin: 0;
}

.admin-income-actions .admin-button {
    min-height: 44px;
}

.admin-finance-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-finance-stat-grid .saas-stat-card {
    min-height: 126px;
    min-width: 0;
}

.admin-finance-stat-grid .saas-stat-card strong {
    font-size: clamp(1rem, 2.8cqi, 1.5rem);
    line-height: 1.2;
    max-width: 100%;
}

.admin-report-filter {
    align-items: end;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(180px, 240px)) auto;
}

.admin-report-filter .admin-button {
    min-height: 48px;
}

.brand-logo-image {
    overflow: hidden;
}

.brand-logo-image img,
.admin-logo-image {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.brand-text {
    display: inline-block;
}

.admin-logo {
    align-items: center;
    display: flex;
    gap: 10px;
}

.admin-logo-image {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    height: 38px;
    padding: 5px;
    width: 38px;
}

.admin-logo-preview {
    align-items: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
        rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: flex;
    height: 112px;
    justify-content: center;
    margin-bottom: 18px;
    max-width: 260px;
    padding: 18px;
}

.admin-logo-preview .admin-brand-preview {
    pointer-events: none;
}

.admin-logo-preview img {
    max-height: 76px;
    max-width: 210px;
    object-fit: contain;
}

.admin-logo-preview .brand-icon:not(.brand-logo-image) {
    align-items: center;
    background: linear-gradient(135deg, var(--premium-gold-bright, #f7df8e), var(--premium-teal, #1ee6b7));
    border-radius: 16px;
    color: #07100f;
    display: inline-flex;
    flex-shrink: 0;
    font-weight: 950;
    height: 64px;
    justify-content: center;
    width: 64px;
}

.admin-logo-preview .brand-icon.brand-logo-image {
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-sizing: border-box;
    display: inline-flex;
    flex-shrink: 0;
    height: 68px;
    justify-content: center;
    padding: 6px;
    width: 68px;
}

.admin-logo-preview .brand-text {
    background: none;
    border-radius: 0;
    color: rgba(248, 250, 252, 0.96);
    display: inline-block;
    font-weight: 800;
    font-size: clamp(18px, 2vw, 26px);
    height: auto;
    letter-spacing: -0.02em;
    line-height: 1.2;
    width: auto;
    white-space: nowrap;
}

.admin-logo-form {
    max-width: 520px;
}

.admin-brand-mode-form {
    max-width: 520px;
    margin-bottom: 18px;
}

.admin-logo-remove-form {
    margin-top: 14px;
}

@media (max-width: 900px) {
    .admin-login-body {
        align-items: flex-start;
        padding: 22px;
    }

    .admin-login-shell {
        gap: 28px;
        grid-template-columns: 1fr;
    }

    .admin-login-brand {
        margin-bottom: 28px;
    }

    .admin-login-hero h1 {
        font-size: clamp(2.35rem, 13vw, 4.2rem);
    }
}

@media (max-width: 520px) {
    .admin-login-body {
        padding: 16px;
    }

    .admin-login-card {
        border-radius: 22px;
        padding: 24px;
    }

    .admin-login-metrics span {
        min-width: 0;
        width: calc(50% - 6px);
    }

    .admin-income-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-income-actions .admin-button {
        width: 100%;
    }

    .admin-finance-stat-grid {
        grid-template-columns: 1fr;
    }
}

/* Professional desktop dashboard scale */
body.dashboard-body .dashboard-main {
    max-width: 1320px;
}

body.dashboard-body .dashboard-hero {
    gap: 28px;
    padding: 26px 28px;
}

body.dashboard-body .dashboard-hero h1 {
    font-size: clamp(24px, 2.35vw, 32px);
    line-height: 1.18;
    margin-bottom: 12px;
    max-width: none;
}

body.dashboard-body .dashboard-hero p {
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 620px;
}

body.dashboard-body .profile-card {
    padding: 18px;
}

body.dashboard-body .profile-avatar {
    font-size: 26px;
    height: 64px;
    width: 64px;
}

body.dashboard-body .profile-card h2 {
    font-size: 20px;
}

body.dashboard-body .profile-card p,
body.dashboard-body .profile-card span,
body.dashboard-body .profile-card em {
    font-size: 12.5px;
}

body.dashboard-body .dashboard-stats {
    gap: 14px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.dashboard-body .dashboard-stats .stat-card {
    min-height: 112px;
    padding: 18px 16px 16px 64px !important;
}

body.dashboard-body .dashboard-stats .stat-icon {
    font-size: 15px;
    height: 34px;
    left: 16px;
    top: 18px;
    width: 34px;
}

body.dashboard-body .dashboard-stats .stat-card span:not(.stat-icon) {
    font-size: 11px;
    margin-bottom: 10px;
}

body.dashboard-body .dashboard-stats .stat-card strong {
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1;
}

body.dashboard-body .dashboard-panel,
body.dashboard-body .glass-dashboard-card,
body.dashboard-body .premium-chart-card,
body.dashboard-body .premium-orbit-card {
    border-radius: 16px !important;
}

body.dashboard-body .dashboard-panel {
    padding: 20px;
}

body.dashboard-body .dashboard-panel-heading h2 {
    font-size: 22px;
    line-height: 1.15;
}

body.dashboard-body .dashboard-panel-heading span,
body.dashboard-body .dashboard-panel-heading a {
    font-size: 13px;
}

body.dashboard-body .premium-analytics-grid,
body.dashboard-body .dashboard-grid {
    gap: 20px;
}

body.dashboard-body .today-review-summary strong {
    font-size: clamp(28px, 2.4vw, 40px);
}

body.dashboard-body .investment-summary-strip {
    gap: 12px;
}

body.dashboard-body .investment-summary-strip article {
    min-height: 74px;
    padding: 14px 16px;
}

body.dashboard-body .investment-summary-strip span,
body.dashboard-body .activity-item span,
body.dashboard-body .dashboard-review-item small,
body.dashboard-body .activity-item small {
    font-size: 12px;
}

body.dashboard-body .investment-summary-strip strong {
    font-size: 22px;
}

body.dashboard-body .activity-item {
    min-height: auto;
    padding: 14px 16px;
}

body.dashboard-body .activity-item strong,
body.dashboard-body .dashboard-review-item strong,
body.dashboard-body .dashboard-movie-card strong,
body.dashboard-body .dashboard-clip-card a {
    font-size: 15px;
}

body.dashboard-body .investment-plan-icon {
    height: 38px;
    width: 38px;
}

body.dashboard-body .investment-plan-icon svg {
    height: 18px;
    width: 18px;
}

body.dashboard-body .investment-plan-ring {
    height: 48px;
    width: 48px;
}

body.dashboard-body .investment-plan-ring b {
    font-size: 11px;
}

body.dashboard-body .premium-ring {
    height: 132px;
    width: 132px;
}

body.dashboard-body .premium-ring span {
    background: rgba(3, 6, 7, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 26px;
    min-width: 74px;
    padding: 10px 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.78);
}

body.dashboard-body .dashboard-movie-card,
body.dashboard-body .dashboard-clip-card {
    border-radius: 14px !important;
}

@media (min-width: 1440px) {
    body.dashboard-body .dashboard-main {
        padding-top: 128px;
    }
}

@media (max-width: 1180px) {
    body.dashboard-body .dashboard-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body.dashboard-body .dashboard-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Wallet page professional scale */
body.wallet-page-body .dashboard-main {
    max-width: 1320px !important;
    padding-top: 128px !important;
}

body.wallet-page-body .dashboard-hero {
    gap: 28px !important;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
    margin-bottom: 22px !important;
    padding: 26px 28px !important;
}

body.wallet-page-body .dashboard-hero h1 {
    font-size: clamp(24px, 2.35vw, 32px) !important;
    line-height: 1.18 !important;
    margin-bottom: 12px !important;
    max-width: none !important;
}

body.wallet-page-body .dashboard-hero p {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
    max-width: 620px !important;
}

body.wallet-page-body .profile-card {
    gap: 16px !important;
    min-height: 126px !important;
    padding: 18px !important;
}

body.wallet-page-body .profile-avatar {
    font-size: 24px !important;
    height: 58px !important;
    width: 58px !important;
}

body.wallet-page-body .profile-card h2 {
    font-size: clamp(26px, 2.2vw, 34px) !important;
}

body.wallet-page-body .profile-card p,
body.wallet-page-body .profile-card span {
    font-size: 12.5px !important;
}

body.wallet-page-body .wallet-balance-card__content {
    flex: 1;
    min-width: 0;
}

body.wallet-page-body .wallet-balance-card__label {
    color: rgba(226, 232, 240, 0.72);
    display: block;
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

body.wallet-page-body .wallet-balance-breakdown {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    width: 100%;
}

body.wallet-page-body .wallet-balance-breakdown__row {
    align-items: baseline;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding-top: 8px;
    margin-top: 8px;
}

body.wallet-page-body .wallet-balance-breakdown__row span {
    color: rgba(226, 232, 240, 0.78);
    font-size: 12px !important;
}

body.wallet-page-body .wallet-balance-breakdown__row strong {
    color: #f8fafc;
    font-size: 14px !important;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

body.wallet-page-body .wallet-balance-breakdown__row--withdraw strong {
    color: #86efac;
}

body.wallet-page-body .wallet-balance-breakdown__row--plan strong {
    color: #fcd34d;
}

body.wallet-page-body .wallet-pending-notice {
    border: 1px solid rgba(251, 191, 36, 0.35);
    margin-bottom: 20px;
    padding: 14px 18px;
}

body.wallet-page-body .wallet-pending-notice p {
    color: rgba(226, 232, 240, 0.9);
    font-size: 13px !important;
    line-height: 1.55;
    margin: 0 0 8px;
}

body.wallet-page-body .wallet-pending-notice p:last-of-type {
    margin-bottom: 10px;
}

body.wallet-page-body .wallet-pending-notice__link {
    color: #fcd34d;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
}

body.wallet-page-body .wallet-pending-notice__link:hover {
    text-decoration: underline;
}

body.wallet-page-body .premium-analytics-grid {
    gap: 20px;
    grid-template-columns: minmax(300px, .42fr) minmax(0, .58fr);
}

body.wallet-page-body .premium-orbit-card,
body.wallet-page-body .premium-chart-card,
body.wallet-page-body .dashboard-panel,
body.wallet-page-body .glass-dashboard-card {
    border-radius: 16px !important;
}

body.wallet-page-body .premium-orbit-card,
body.wallet-page-body .premium-chart-card {
    min-height: 190px;
    padding: 20px;
}

body.wallet-page-body .premium-ring {
    height: 118px;
    width: 118px;
}

body.wallet-page-body .premium-ring span {
    font-size: 24px;
    min-width: 68px;
    padding: 9px 11px;
}

body.wallet-page-body .premium-orbit-card h2 {
    font-size: 22px;
}

body.wallet-page-body .premium-orbit-card p {
    font-size: 13px;
    line-height: 1.55;
}

body.wallet-page-body .premium-bar-row {
    gap: 12px;
    grid-template-columns: 92px minmax(0, 1fr) 72px;
    padding: 10px 12px;
}

body.wallet-page-body .premium-bar-row span,
body.wallet-page-body .premium-bar-row strong {
    font-size: 12px;
}

body.wallet-page-body .dashboard-grid {
    gap: 20px !important;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) !important;
}

body.wallet-page-body .dashboard-panel {
    padding: 20px !important;
}

body.wallet-page-body .dashboard-panel-heading {
    margin-bottom: 16px !important;
}

body.wallet-page-body .dashboard-panel-heading h2 {
    font-size: 22px !important;
}

body.wallet-page-body .dashboard-panel-heading span {
    font-size: 12.5px !important;
}

body.wallet-page-body .dashboard-panel .admin-form {
    gap: 12px !important;
}

body.wallet-page-body .dashboard-panel .admin-form label {
    font-size: 12px !important;
}

body.wallet-page-body .dashboard-panel .admin-form input,
body.wallet-page-body .dashboard-panel .admin-form select,
body.wallet-page-body .gold-button {
    border-radius: 12px !important;
    font-size: 14px;
    height: 48px !important;
}

body.wallet-page-body .wallet-invoices-panel {
    min-width: 0;
}

body.wallet-page-body .wallet-history-panel {
    margin-bottom: 20px;
}

body.wallet-page-body .wallet-history-table {
    min-width: 640px !important;
}

body.wallet-page-body .wallet-history-amount {
    font-size: 12.5px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

body.wallet-page-body .wallet-history-amount--in {
    color: #7dcea8;
}

body.wallet-page-body .wallet-history-amount--out {
    color: #f5b7b1;
}

body.wallet-page-body .wallet-history-tx-link {
    border-radius: 10px;
    border: 1px solid rgba(214, 178, 94, 0.45);
    color: #d6b25e;
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

body.wallet-page-body .wallet-history-tx-link:hover {
    background: rgba(214, 178, 94, 0.12);
    border-color: rgba(214, 178, 94, 0.75);
}

body.wallet-page-body .wallet-transaction-detail {
    margin-bottom: 24px;
}

body.wallet-page-body .wallet-tx-detail-list {
    display: grid;
    gap: 0;
    margin: 0 0 20px;
}

body.wallet-page-body .wallet-tx-detail-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 4px;
    grid-template-columns: minmax(120px, 200px) minmax(0, 1fr);
    padding: 14px 0;
}

body.wallet-page-body .wallet-tx-detail-row:last-child {
    border-bottom: none;
}

body.wallet-page-body .wallet-tx-detail-row dt {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

body.wallet-page-body .wallet-tx-detail-row dd {
    font-size: 14px;
    margin: 0;
    word-break: break-word;
}

body.wallet-page-body .wallet-tx-detail-sub {
    color: rgba(255, 255, 255, 0.45);
    display: block;
    font-size: 12px;
    margin-top: 4px;
}

body.wallet-page-body .wallet-tx-detail-code {
    display: inline-block;
    font-size: 12px;
    line-height: 1.45;
    max-width: 100%;
    word-break: break-all;
}

body.wallet-page-body .wallet-tx-detail-qr {
    margin-bottom: 16px;
}

body.wallet-page-body .wallet-tx-detail-qr img {
    border-radius: 12px;
    display: block;
    margin-top: 8px;
}

body.wallet-page-body .wallet-tx-detail-back {
    margin: 0;
}

body.wallet-page-body .invoice-table-wrap {
    border-radius: 14px !important;
}

body.wallet-page-body .invoice-list-table {
    border-spacing: 0 6px !important;
    min-width: 1040px !important;
    padding: 6px !important;
}

body.wallet-page-body .invoice-list-table th {
    font-size: 10px !important;
    padding: 7px 10px !important;
}

body.wallet-page-body .invoice-list-table td {
    font-size: 11.5px !important;
    padding: 12px 10px !important;
}

body.wallet-page-body .invoice-list-table small {
    font-size: 10.5px;
}

body.wallet-page-body .invoice-list-table code {
    font-size: 10.5px;
    max-width: 160px;
}

body.wallet-page-body .invoice-status {
    font-size: 10px;
    padding: 5px 8px;
}

body.wallet-page-body .invoice-qr {
    width: 38px;
}

body.wallet-page-body .payqora-refresh {
    border-radius: 10px;
    font-size: 11px;
    min-height: 32px;
    padding: 6px 9px;
}

body.wallet-page-body .crypto-payment-card {
    background:
        radial-gradient(circle at 50% 0%, rgba(66, 153, 225, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(3, 12, 24, 0.94), rgba(2, 8, 15, 0.98)) !important;
    border: 1px solid rgba(116, 178, 255, 0.28) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    display: grid;
    justify-items: center;
    margin: 0 auto 22px;
    max-width: 520px;
    padding: 22px;
    text-align: center;
}

body.wallet-page-body .crypto-payment-card--modal {
    border-radius: 18px;
    max-width: 440px;
    padding: 26px 24px 24px;
    scroll-margin-top: 120px;
}

body.wallet-page-body .crypto-payment-heading h2 {
    color: #ffffff;
    font-family: Inter, system-ui, sans-serif;
    font-size: 22px;
    font-weight: 950;
    letter-spacing: 0.06em;
    margin: 0 0 6px;
    text-transform: uppercase;
}

body.wallet-page-body .crypto-payment-heading p {
    color: rgba(235, 242, 255, 0.7);
    font-size: 14px;
    margin: 0 0 18px;
}

body.wallet-page-body .crypto-payment-kicker {
    color: #5eb0ff;
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    text-align: left;
    text-transform: uppercase;
}

body.wallet-page-body .crypto-payment-amount {
    margin-bottom: 4px;
    width: 100%;
}

body.wallet-page-body .crypto-payment-amount-row {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
}

body.wallet-page-body .crypto-coin-badge {
    flex-shrink: 0;
}

body.wallet-page-body .crypto-coin-badge--generic {
    align-items: center;
    background: linear-gradient(135deg, #ffb13b, #ff7b22);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 18px;
    font-weight: 950;
    height: 40px;
    justify-content: center;
    width: 40px;
}

body.wallet-page-body .crypto-payment-amount-values {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

body.wallet-page-body .crypto-payment-amount-primary {
    align-items: baseline;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    font-size: clamp(26px, 4.5vw, 36px);
    font-weight: 950;
    gap: 8px;
    line-height: 1.05;
    margin: 0;
}

body.wallet-page-body .crypto-payment-amount-primary em {
    color: rgba(235, 242, 255, 0.78);
    font-size: 0.45em;
    font-style: normal;
    font-weight: 800;
}

body.wallet-page-body .crypto-payment-usd {
    color: rgba(235, 242, 255, 0.62);
    font-size: 14px;
}

body.wallet-page-body .crypto-payment-qr {
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    height: 232px;
    justify-content: center;
    margin: 16px 0 14px;
    padding: 12px;
    width: 232px;
}

body.wallet-page-body .crypto-payment-qr img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

body.wallet-page-body .crypto-payment-qr span {
    color: #111827;
    font-weight: 900;
}

body.wallet-page-body .crypto-address-block {
    margin: 0 0 14px;
    max-width: 100%;
    width: 100%;
}

body.wallet-page-body .crypto-address-row {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(116, 178, 255, 0.22);
    border-radius: 10px;
    display: flex;
    min-height: 44px;
    overflow: hidden;
}

body.wallet-page-body .crypto-address-input {
    background: transparent;
    border: 0;
    color: rgba(235, 242, 255, 0.92);
    flex: 1;
    font: inherit;
    font-size: 12px;
    min-width: 0;
    padding: 0 12px;
    text-align: left;
}

body.wallet-page-body .crypto-address-copy {
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 0;
    border-left: 1px solid rgba(116, 178, 255, 0.2);
    color: #5eb0ff;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    padding: 0 12px;
    transition: color 0.15s ease, background 0.15s ease;
}

body.wallet-page-body .crypto-address-copy:hover {
    background: rgba(94, 176, 255, 0.12);
    color: #8cc8ff;
}

body.wallet-page-body .crypto-network-block {
    margin-bottom: 14px;
    text-align: left;
    width: 100%;
}

body.wallet-page-body .crypto-network-pill--badge {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(116, 178, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    gap: 10px;
    min-height: 40px;
    padding: 4px 16px 4px 6px;
}

body.wallet-page-body .crypto-network-pill__icon {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    height: 28px;
    justify-content: center;
    width: 28px;
}

body.wallet-page-body .crypto-network-pill__icon .crypto-coin-badge,
body.wallet-page-body .crypto-network-pill__icon svg {
    height: 28px;
    width: 28px;
}

body.wallet-page-body .crypto-network-pill__icon .crypto-coin-badge--generic {
    height: 28px;
    width: 28px;
}

body.wallet-page-body .crypto-network-pill--badge strong {
    font-size: 13px;
    font-weight: 800;
}

body.wallet-page-body .crypto-expiry-box {
    background: rgba(130, 20, 35, 0.2);
    border: 1px solid rgba(255, 91, 91, 0.55);
    border-radius: 10px;
    max-width: 100%;
    padding: 14px 16px;
    width: 100%;
}

body.wallet-page-body .crypto-expiry-box--expired {
    opacity: 0.92;
}

body.wallet-page-body .crypto-expiry-label {
    color: #ff6b6b;
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
}

body.wallet-page-body .crypto-expiry-timer {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

body.wallet-page-body .crypto-expiry-timer.expired .crypto-countdown-mm,
body.wallet-page-body .crypto-expiry-timer.expired .crypto-countdown-ss,
body.wallet-page-body .crypto-expiry-timer.expired .crypto-countdown-sep {
    color: #ff8a8a;
}

body.wallet-page-body .crypto-expiry-clock {
    color: #ff6b6b;
    flex-shrink: 0;
}

body.wallet-page-body .crypto-expiry-digits {
    align-items: flex-end;
    display: flex;
    gap: 6px;
}

body.wallet-page-body .crypto-countdown-mm,
body.wallet-page-body .crypto-countdown-ss {
    color: #ff6b6b;
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 950;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

body.wallet-page-body .crypto-countdown-sep {
    color: #ff6b6b;
    font-size: clamp(26px, 5vw, 36px);
    font-weight: 950;
    line-height: 1;
    padding-bottom: 4px;
}

body.wallet-page-body .crypto-expiry-unit {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

body.wallet-page-body .crypto-expiry-unit-label {
    color: #ff6b6b;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

body.wallet-page-body .crypto-expiry-timer--na {
    color: #ff6b6b;
    font-size: 22px;
    font-weight: 800;
}

body.wallet-page-body .wallet-deposit-locked-panel .wallet-deposit-locked-copy {
    color: rgba(235, 242, 255, 0.78);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
}

body.wallet-page-body .crypto-payment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
}

body.wallet-page-body .crypto-payment-actions form {
    margin: 0;
}

@media (max-width: 980px) {
    body.wallet-page-body .dashboard-hero,
    body.wallet-page-body .premium-analytics-grid,
    body.wallet-page-body .dashboard-grid {
        grid-template-columns: 1fr !important;
    }

    body.wallet-page-body .dashboard-main {
        padding-top: 112px !important;
    }
}

@media (max-width: 560px) {
    body.wallet-page-body .dashboard-main {
        padding-top: 100px !important;
    }

    body.wallet-page-body .dashboard-hero h1 {
        font-size: clamp(22px, 5vw, 28px) !important;
    }

    body.wallet-page-body .crypto-payment-card {
        padding: 18px;
    }

    body.wallet-page-body .crypto-payment-qr {
        height: 170px;
        width: 170px;
    }
}

/* Professional movie card refinement */
.glass-movie-card,
.dashboard-movie-card,
.rated-card {
    background: linear-gradient(180deg, rgba(18, 20, 23, .96), rgba(9, 10, 12, .98)) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 8px !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .06) !important;
}

.glass-movie-card::before,
.glass-movie-card::after,
.dashboard-movie-card::before,
.dashboard-movie-card::after,
.rated-card::before,
.rated-card::after {
    display: none !important;
}

.glass-movie-card {
    gap: 9px !important;
    min-height: 0 !important;
    padding: 10px !important;
}

.poster-frame,
.dashboard-movie-card div {
    aspect-ratio: 16 / 10 !important;
    background: #111316 !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    margin: 0 0 4px !important;
    overflow: hidden;
}

.poster-frame img,
.dashboard-movie-card img,
.rated-card img {
    filter: saturate(1.03) contrast(1.02) !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: none;
    width: 100% !important;
}

.glass-movie-card span,
.dashboard-movie-card span,
.rated-card span {
    color: #d8b85f !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.glass-movie-card h3,
.dashboard-movie-card strong,
.rated-card h3 {
    color: #f8fafc !important;
    font-size: 16px !important;
    font-weight: 750 !important;
    line-height: 1.25 !important;
    margin: 0 !important;
}

.glass-movie-card p,
.rated-card p {
    color: rgba(226, 232, 240, .72) !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    -webkit-line-clamp: 2 !important;
}

.glass-movie-card:hover,
.dashboard-movie-card:hover,
.rated-card:hover {
    border-color: rgba(216, 184, 95, .38) !important;
    box-shadow: 0 22px 54px rgba(0, 0, 0, .46), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    transform: translateY(-3px) !important;
}

.glass-movie-card:hover .poster-frame img,
.dashboard-movie-card:hover img,
.rated-card:hover img {
    filter: saturate(1.08) contrast(1.04) !important;
    transform: scale(1.025);
}

.dashboard-movie-card {
    gap: 8px !important;
    padding: 10px !important;
}

.rated-card {
    gap: 14px !important;
}

/* Premium OTT auth treatment: login and signup only */
.auth-entry-body .login-card {
    backdrop-filter: blur(26px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(26px) saturate(150%) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035)) padding-box,
        linear-gradient(135deg, rgba(245, 210, 122, .52), rgba(255, 255, 255, .12), rgba(212, 175, 55, .18)) border-box,
        rgba(8, 10, 14, .9) !important;
    border: 1px solid transparent !important;
    border-radius: 28px !important;
    box-shadow: 0 34px 120px rgba(0, 0, 0, .62), 0 0 54px rgba(212, 175, 55, .1), inset 0 1px 0 rgba(255, 255, 255, .15) !important;
    padding: clamp(28px, 3vw, 42px) !important;
}

.auth-entry-body .login-card::before {
    background:
        linear-gradient(90deg, transparent, rgba(245, 210, 122, .9), transparent),
        linear-gradient(90deg, rgba(212, 175, 55, .16), rgba(255, 255, 255, .22), rgba(212, 175, 55, .16)) !important;
    height: 1px !important;
    left: 28px !important;
    right: 28px !important;
    top: 0 !important;
}

.auth-entry-body .auth-card-brand {
    background: rgba(0, 0, 0, .22) !important;
    border: 1px solid rgba(245, 210, 122, .18) !important;
    border-radius: 18px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    margin: 0 0 30px !important;
    padding: 10px 14px 10px 10px !important;
}

.auth-entry-body .auth-card-brand .brand-icon {
    border: 1px solid rgba(245, 210, 122, .35) !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .38), 0 0 18px rgba(212, 175, 55, .16) !important;
    flex-basis: 52px !important;
    height: 52px !important;
    width: 52px !important;
}

.auth-entry-body .auth-card-brand .brand-text {
    background: linear-gradient(90deg, #ffffff 0%, #fff6d6 42%, #d4af37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(27px, 2.5vw, 36px) !important;
    font-weight: 950 !important;
    text-shadow: 0 18px 48px rgba(212, 175, 55, .18) !important;
}

.auth-entry-body .card-heading {
    margin-bottom: 28px !important;
}

.auth-entry-body .login-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, .22), rgba(255, 255, 255, .06)) !important;
    border: 1px solid rgba(245, 210, 122, .26) !important;
    border-radius: 999px !important;
    color: #f5d27a !important;
    display: inline-flex !important;
    font-size: 11px !important;
    letter-spacing: 1.4px !important;
    margin-bottom: 18px !important;
    padding: 9px 13px !important;
}

.auth-entry-body .card-heading h2 {
    color: #ffffff !important;
    font-size: clamp(34px, 3.35vw, 48px) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: .98 !important;
    margin-bottom: 16px !important;
    text-shadow: 0 24px 72px rgba(0, 0, 0, .58) !important;
}

.login-auth-body .card-heading h2 {
    display: none !important;
}

.forgot-auth-body .card-heading h2 {
    display: none !important;
}

.signup-auth-body .card-heading h2 {
    display: none !important;
}

.login-auth-body .card-heading {
    margin-bottom: 22px !important;
}

.forgot-auth-body .card-heading {
    margin-bottom: 22px !important;
}

.signup-auth-body .card-heading {
    margin-bottom: 22px !important;
}

.signup-auth-body .login-card {
    max-width: min(720px, calc(100vw - 36px)) !important;
}

.signup-auth-body .auth-card-brand {
    margin-bottom: 22px !important;
}

.signup-auth-body .card-heading p {
    max-width: 48ch !important;
}

.signup-auth-body .signup-form {
    column-gap: 14px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 14px !important;
}

.signup-auth-body .signup-field {
    display: grid !important;
    gap: 8px !important;
    min-width: 0 !important;
}

.signup-auth-body .signup-field:nth-of-type(3),
.signup-auth-body .signup-form .login-button {
    grid-column: 1 / -1 !important;
}

.signup-auth-body .signup-field:nth-of-type(4) {
    grid-column: 1 / -1 !important;
}

.signup-auth-body .signup-form input {
    min-height: 52px !important;
}

.signup-auth-body .signup-form .password-field input {
    padding-right: 82px !important;
}

.signup-auth-body .referral-status {
    background: rgba(255, 255, 255, .045) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 999px !important;
    color: rgba(245, 245, 245, .66) !important;
    font-size: 12px !important;
    margin: 0 !important;
    min-height: 28px !important;
    padding: 6px 11px !important;
}

.signup-auth-body .referral-status:empty {
    display: none !important;
}

.signup-auth-body .signup-link {
    margin-top: 18px !important;
}

.auth-entry-body .card-heading p {
    color: rgba(245, 245, 245, .72) !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    max-width: 34ch !important;
}

.auth-entry-body .login-form {
    gap: 14px !important;
}

.auth-entry-body .login-form label {
    color: rgba(255, 246, 214, .88) !important;
    font-size: 11px !important;
    letter-spacing: 1.1px !important;
}

.auth-entry-body .login-form input {
    background: rgba(255, 255, 255, .075) !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 16px !important;
    min-height: 56px !important;
}

.auth-entry-body .login-form input:focus {
    background: rgba(255, 255, 255, .1) !important;
    border-color: rgba(245, 210, 122, .75) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .13), 0 0 32px rgba(212, 175, 55, .18) !important;
}

.auth-entry-body .login-button {
    border-radius: 16px !important;
    box-shadow: 0 14px 38px rgba(212, 175, 55, .24), inset 0 1px 0 rgba(255, 255, 255, .34) !important;
    min-height: 56px !important;
}

.auth-entry-body .signup-link {
    color: rgba(245, 245, 245, .68) !important;
}

.signup-auth-body .login-card .card-heading p {
    max-width: 48ch !important;
}

.signup-auth-body .login-form.signup-form input {
    min-height: 52px !important;
}

.signup-auth-body .login-form.signup-form .login-button {
    margin-top: 2px !important;
}

@media (max-width: 768px) {
    .auth-entry-body .login-card {
        border-radius: 24px !important;
        padding: 24px !important;
    }

    .auth-entry-body .auth-card-brand {
        justify-content: flex-start !important;
        margin: 0 0 24px !important;
        width: 100% !important;
    }

    .auth-entry-body .card-heading h2 {
        font-size: clamp(30px, 9vw, 40px) !important;
    }

    .signup-auth-body .login-card {
        max-width: 430px !important;
    }

    .signup-auth-body .signup-form {
        grid-template-columns: 1fr !important;
    }

    .signup-auth-body .signup-field,
    .signup-auth-body .signup-form .login-button {
        grid-column: 1 / -1 !important;
    }
}

/* Auth logo placement for login, signup, and password recovery */
.live-login-body .auth-card-brand {
    align-items: center;
    color: #ffffff;
    display: inline-flex;
    gap: 12px;
    margin: 0 0 24px;
    position: relative;
    text-decoration: none;
    width: fit-content;
    z-index: 2;
}

.live-login-body .auth-card-brand .brand-icon {
    border-radius: 14px;
    flex: 0 0 44px;
    height: 44px;
    width: 44px;
}

.live-login-body .auth-card-brand .brand-text {
    background: linear-gradient(90deg, #ffffff, #f5d27a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
}

.live-login-body .success-alert {
    background: rgba(34, 197, 94, .12);
    border-color: rgba(34, 197, 94, .34);
    color: #d1fae5;
}

@media (max-width: 768px) {
    .live-login-body .auth-card-brand {
        justify-content: center;
        margin-bottom: 18px;
        width: 100%;
    }

    .live-login-body .auth-card-brand .brand-icon {
        flex-basis: 38px;
        height: 38px;
        width: 38px;
    }

    .live-login-body .auth-card-brand .brand-text {
        font-size: 21px;
    }
}

/* Homepage Latest Clips: premium OTT card system */
.latest-clips-section {
    position: relative;
}

.latest-clips-lede {
    color: rgba(246, 241, 230, 0.62) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.55 !important;
    margin: 10px 0 0 !important;
    max-width: 44ch !important;
}

@media (max-width: 560px) {
    .latest-clips-lede {
        font-size: 14px !important;
    }
}

.latest-clips-grid {
    display: grid !important;
    gap: clamp(18px, 2vw, 28px) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    overflow: visible !important;
}

.latest-clip-card {
    backdrop-filter: blur(18px) saturate(135%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(135%) !important;
    background:
        linear-gradient(145deg, rgba(24, 27, 33, .92), rgba(9, 11, 15, .98)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(216, 184, 95, .34), rgba(255, 255, 255, .07)) border-box,
        rgba(12, 14, 18, .94) !important;
    border: 1px solid transparent !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .09) !important;
    color: #f8fafc !important;
    display: flex !important;
    flex-direction: column !important;
    isolation: isolate !important;
    min-width: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: relative !important;
    transform: translateY(0) !important;
    transition: all .3s ease !important;
}

.latest-clip-card::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, .1), transparent 44%) !important;
    border-radius: inherit !important;
    content: "" !important;
    inset: 0 !important;
    opacity: .62 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: 3 !important;
}

.latest-clip-card::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 42%) !important;
    border-radius: inherit !important;
    content: "" !important;
    inset: 0 !important;
    opacity: .55 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: 2 !important;
}

.latest-clip-media,
.latest-clip-card video,
.latest-clip-card iframe,
.latest-clip-card .locked-clip-poster {
    aspect-ratio: 16 / 9 !important;
    background: #07090d !important;
    border: 0 !important;
    border-radius: 24px 24px 0 0 !important;
    box-shadow: none !important;
    display: block !important;
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
    z-index: 1 !important;
}

.latest-clip-card video,
.latest-clip-card iframe,
.latest-clip-card .locked-clip-poster img {
    height: 100% !important;
    object-fit: cover !important;
    width: 100% !important;
}

.latest-clip-card video,
.latest-clip-card .locked-clip-poster img {
    transform: scale(1) !important;
    transition: all .3s ease !important;
}

.latest-clip-card iframe {
    transform: scale(1) !important;
    transition: all .3s ease !important;
}

.latest-clip-content {
    display: grid !important;
    gap: 9px !important;
    padding: 18px 18px 20px !important;
    position: relative !important;
    z-index: 4 !important;
}

.latest-clip-content span {
    color: #e5c76b !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    text-transform: uppercase !important;
}

.latest-clip-content h3 {
    color: #ffffff !important;
    font-size: clamp(16px, 1.05vw, 18px) !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
    line-height: 1.28 !important;
    margin: 0 !important;
}

.latest-clip-content a {
    color: inherit !important;
    display: -webkit-box !important;
    overflow: hidden !important;
    text-decoration: none !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
}

.latest-clip-card .locked-clip-overlay {
    align-items: flex-start !important;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .34), transparent 48%),
        linear-gradient(90deg, transparent, rgba(0, 0, 0, .18)) !important;
    border-radius: inherit !important;
    justify-content: flex-end !important;
    opacity: .94 !important;
    padding: 14px !important;
    z-index: 2 !important;
}

.latest-clip-access-badge {
    align-items: center !important;
    backdrop-filter: blur(10px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(140%) !important;
    background: rgba(5, 7, 10, .58) !important;
    border: 1px solid rgba(212, 175, 55, .38) !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .09) !important;
    color: #d4af37 !important;
    display: inline-flex !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    gap: 7px !important;
    letter-spacing: 1px !important;
    line-height: 1 !important;
    padding: 8px 14px !important;
    text-transform: uppercase !important;
    transform: translateY(0) !important;
    transition: all .3s ease !important;
}

.latest-clip-access-badge svg {
    display: block !important;
    flex: 0 0 13px !important;
    height: 13px !important;
    stroke: currentColor !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    stroke-width: 2 !important;
    width: 13px !important;
}

.latest-clip-access-badge svg rect {
    fill: none !important;
}

.latest-clip-access-badge span {
    color: inherit !important;
    font: inherit !important;
    letter-spacing: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: none !important;
}

.latest-clip-card:hover {
    border-color: rgba(229, 199, 107, .32) !important;
    box-shadow: 0 30px 82px rgba(0, 0, 0, .5), 0 0 38px rgba(216, 184, 95, .12), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
    transform: translateY(-6px) !important;
}

.latest-clip-card:hover video,
.latest-clip-card:hover iframe,
.latest-clip-card:hover .locked-clip-poster img {
    filter: saturate(1.08) contrast(1.04) brightness(1.03) !important;
    transform: scale(1.045) !important;
}

.latest-clip-card:hover .latest-clip-access-badge {
    background: rgba(5, 7, 10, .72) !important;
    border-color: rgba(212, 175, 55, .56) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .34), 0 0 18px rgba(212, 175, 55, .16), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
    opacity: 1 !important;
    transform: translateY(-1px) !important;
}

.latest-clip-card:focus-within {
    outline: 2px solid rgba(229, 199, 107, .54) !important;
    outline-offset: 4px !important;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .latest-clip-card {
        background: #11151b !important;
    }
}

@media (max-width: 1180px) {
    .latest-clips-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .latest-clips-grid {
        gap: 18px !important;
        grid-template-columns: 1fr !important;
    }

    .latest-clip-card {
        border-radius: 22px !important;
    }

    .latest-clip-media,
    .latest-clip-card video,
    .latest-clip-card iframe,
    .latest-clip-card .locked-clip-poster {
        border-radius: 22px 22px 0 0 !important;
    }

    .latest-clip-content {
        padding: 16px 16px 18px !important;
    }
}

/* Premium admin settings screen */
.admin-settings-body {
    background:
        radial-gradient(circle at 72% 8%, rgba(212, 175, 55, .13), transparent 28%),
        radial-gradient(circle at 18% 10%, rgba(30, 230, 183, .1), transparent 30%),
        linear-gradient(135deg, #050806 0%, #08110f 48%, #0b1020 100%) !important;
    color: #f8fafc !important;
}

.admin-settings-body .admin-sidebar {
    backdrop-filter: blur(22px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(145%) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025)),
        rgba(5, 8, 8, .76) !important;
    border-right: 1px solid rgba(255, 255, 255, .1) !important;
    box-shadow: 18px 0 70px rgba(0, 0, 0, .34) !important;
}

.admin-settings-body .admin-sidebar .admin-logo {
    color: #f8fafc !important;
    font-weight: 950 !important;
    margin-bottom: 36px !important;
}

.admin-settings-body .admin-sidebar nav a,
.admin-settings-body .admin-sidebar nav form button {
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 14px !important;
    color: rgba(248, 250, 252, .7) !important;
    font-weight: 750 !important;
    min-height: 42px !important;
    padding: 12px 14px !important;
}

.admin-settings-body .admin-sidebar nav a.active,
.admin-settings-body .admin-sidebar nav a:hover,
.admin-settings-body .admin-sidebar nav form button:hover {
    background: rgba(255, 255, 255, .075) !important;
    border-color: rgba(245, 210, 122, .2) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 14px 34px rgba(0, 0, 0, .24) !important;
    color: #ffffff !important;
}

.admin-settings-body .admin-main {
    background:
        radial-gradient(circle at 66% 0%, rgba(245, 210, 122, .12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 360px) !important;
    display: grid !important;
    gap: 18px !important;
    justify-content: center !important;
    padding: clamp(28px, 4vw, 56px) !important;
}

.admin-settings-body .admin-main > .admin-topbar,
.admin-settings-body .admin-main > .admin-notice,
.admin-settings-body .admin-main > .admin-panel.saas-panel:not(.settings-about-panel):not(.settings-home-hero-panel):not(.settings-mobile-menu-panel) {
    box-sizing: border-box;
    justify-self: center;
    max-width: min(720px, 100%) !important;
    width: 100% !important;
}

.admin-settings-body .admin-main > .settings-about-panel,
.admin-settings-body .admin-main > .settings-home-hero-panel,
.admin-settings-body .admin-main > .settings-mobile-menu-panel {
    box-sizing: border-box;
    justify-self: center;
}

.admin-settings-body .admin-topbar {
    backdrop-filter: blur(20px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035)) padding-box,
        linear-gradient(135deg, rgba(245, 210, 122, .46), rgba(255, 255, 255, .12), rgba(30, 230, 183, .22)) border-box !important;
    border: 1px solid transparent !important;
    border-radius: 24px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .11) !important;
    margin: 0 !important;
    padding: 28px !important;
}

.admin-settings-body .admin-topbar p {
    color: #d4af37 !important;
    font-size: 12px !important;
    letter-spacing: 1.4px !important;
}

.admin-settings-body .admin-topbar h1 {
    color: #ffffff !important;
    font-size: clamp(22px, 1.75vw, 30px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.18 !important;
    margin: 0 !important;
    max-width: none !important;
    text-shadow: none !important;
}

.admin-settings-body .admin-notice {
    border-radius: 14px !important;
    margin: 0 !important;
    padding: 14px 16px !important;
}

.admin-settings-body .settings-branding-panel,
.admin-settings-body .settings-contact-panel {
    backdrop-filter: blur(24px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(145%) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035)) padding-box,
        linear-gradient(135deg, rgba(245, 210, 122, .34), rgba(255, 255, 255, .11), rgba(30, 230, 183, .16)) border-box,
        rgba(7, 10, 18, .88) !important;
    border: 1px solid transparent !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .46), 0 0 46px rgba(212, 175, 55, .08), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
    display: grid !important;
    gap: 22px !important;
    margin: 0 !important;
    overflow: hidden !important;
    padding: clamp(26px, 3vw, 34px) !important;
}

.admin-settings-body .settings-branding-panel .panel-heading,
.admin-settings-body .settings-contact-panel .panel-heading {
    align-items: end !important;
    border-bottom: 1px solid rgba(255, 255, 255, .09) !important;
    display: flex !important;
    gap: 12px !important;
    justify-content: space-between !important;
    margin: 0 !important;
    padding-bottom: 18px !important;
}

.admin-settings-body .settings-branding-panel .panel-heading h2,
.admin-settings-body .settings-contact-panel .panel-heading h2 {
    color: #ffffff !important;
    font-size: clamp(15px, 1.05vw, 20px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.22 !important;
    margin: 0 !important;
}

.admin-settings-body .settings-branding-panel .panel-heading span,
.admin-settings-body .settings-contact-panel .panel-heading span {
    color: rgba(248, 250, 252, .58) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .8px !important;
    text-transform: uppercase !important;
}

.admin-settings-body .admin-logo-preview {
    background:
        radial-gradient(circle at 50% 0%, rgba(245, 210, 122, .16), transparent 42%),
        linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)),
        rgba(0, 0, 0, .22) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 22px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09), 0 18px 46px rgba(0, 0, 0, .28) !important;
    height: 142px !important;
    margin: 0 !important;
    max-width: none !important;
    padding: 24px !important;
    width: 100% !important;
}

.admin-settings-body .admin-logo-preview .admin-brand-preview {
    align-items: center !important;
    color: #ffffff !important;
    display: inline-flex !important;
    gap: 14px !important;
}

.admin-settings-body .admin-logo-preview img {
    max-height: 90px !important;
    max-width: 240px !important;
}

.admin-settings-body .admin-logo-preview .brand-icon:not(.brand-logo-image) {
    align-items: center !important;
    background: linear-gradient(135deg, #f7df8e, #1ee6b7) !important;
    border-radius: 18px !important;
    color: #07100f !important;
    display: inline-flex !important;
    flex-shrink: 0 !important;
    font-weight: 950 !important;
    height: 64px !important;
    justify-content: center !important;
    width: 64px !important;
}

.admin-settings-body .admin-logo-preview .brand-icon.brand-logo-image {
    align-items: center !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    flex-shrink: 0 !important;
    height: 72px !important;
    justify-content: center !important;
    padding: 6px !important;
    width: 72px !important;
}

.admin-settings-body .admin-logo-preview .brand-text {
    background: none !important;
    border-radius: 0 !important;
    color: #f8fafc !important;
    display: inline-block !important;
    font-size: clamp(20px, 2.4vw, 28px) !important;
    font-weight: 800 !important;
    height: auto !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
    width: auto !important;
    white-space: nowrap !important;
}

.admin-settings-body .admin-form {
    display: grid !important;
    gap: 12px !important;
    max-width: none !important;
}

.admin-settings-body .admin-brand-mode-form {
    margin: 0 !important;
}

.admin-settings-body .admin-logo-form {
    border-top: 1px solid rgba(255, 255, 255, .08) !important;
    padding-top: 20px !important;
}

.admin-settings-body .admin-form label {
    color: rgba(235, 242, 255, .88) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .65px !important;
}

.admin-settings-body .admin-form select,
.admin-settings-body .admin-form input[type="file"],
.admin-settings-body .settings-contact-panel input,
.admin-settings-body .settings-contact-panel textarea {
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    min-height: 48px !important;
    outline: 0 !important;
    padding: 0 14px !important;
}

.admin-settings-body .admin-form input[type="file"] {
    align-items: center !important;
    display: flex !important;
    padding: 10px !important;
}

.admin-settings-body .settings-contact-panel textarea {
    min-height: 118px !important;
    padding: 14px !important;
    resize: vertical !important;
}

.admin-settings-body .admin-form input[type="file"]::file-selector-button {
    background: rgba(245, 210, 122, .16) !important;
    border: 1px solid rgba(245, 210, 122, .28) !important;
    border-radius: 12px !important;
    color: #f7df8e !important;
    cursor: pointer !important;
    font-weight: 900 !important;
    margin-right: 12px !important;
    padding: 9px 12px !important;
}

.admin-settings-body .admin-field-help {
    color: rgba(235, 242, 255, .58) !important;
    font-size: 12px !important;
}

.admin-settings-body .admin-button {
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.25 !important;
    min-height: 40px !important;
    padding: 9px 18px !important;
}

.admin-settings-body .admin-button.subtle {
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(245, 210, 122, .3) !important;
    color: #f7df8e !important;
}

.admin-settings-body .admin-logo-remove-form {
    margin: -2px 0 0 !important;
}

.admin-settings-body .admin-button.danger {
    background: rgba(244, 63, 94, .12) !important;
    border: 1px solid rgba(251, 113, 133, .42) !important;
    color: #fecdd3 !important;
    padding-inline: 22px !important;
}

@media (max-width: 900px) {
    .admin-settings-body .admin-main {
        padding: clamp(72px, 11vw, 96px) 16px 24px !important;
    }

    .admin-settings-body .admin-panel.saas-panel .panel-heading {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
}

/* Premium OTT contact page */
.contact-page-body {
    background: #050709 !important;
}

.contact-page-body .contact-main {
    max-width: 1240px !important;
    padding: clamp(92px, 9vw, 128px) 24px 80px !important;
}

.contact-page-body .static-hero {
    backdrop-filter: blur(22px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(145%) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .025)) padding-box,
        linear-gradient(135deg, rgba(245, 210, 122, .28), rgba(255, 255, 255, .08), rgba(30, 230, 183, .16)) border-box,
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, .16), transparent 42%),
        rgba(5, 7, 9, .72) !important;
    border: 1px solid transparent !important;
    border-radius: 34px !important;
    box-shadow: 0 34px 120px rgba(0, 0, 0, .42), 0 0 54px rgba(212, 175, 55, .08), inset 0 1px 0 rgba(255, 255, 255, .1) !important;
    isolation: isolate !important;
    margin: 0 auto 32px !important;
    max-width: 1040px !important;
    overflow: hidden !important;
    padding: clamp(48px, 7vw, 86px) clamp(22px, 5vw, 72px) !important;
    position: relative !important;
    text-align: center !important;
}

.contact-page-body .static-hero::before {
    background:
        radial-gradient(circle at 18% 20%, rgba(30, 230, 183, .16), transparent 28%),
        radial-gradient(circle at 82% 8%, rgba(245, 210, 122, .18), transparent 26%),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, .16)) !important;
    content: "" !important;
    inset: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: 0 !important;
}

.contact-page-body .static-hero > * {
    position: relative !important;
    z-index: 1 !important;
}

.contact-page-body .static-hero .gold-kicker {
    background: rgba(212, 175, 55, .12) !important;
    border: 1px solid rgba(212, 175, 55, .28) !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    font-size: 12px !important;
    letter-spacing: 1.6px !important;
    margin-bottom: 22px !important;
    padding: 9px 14px !important;
}

.contact-page-body .static-hero h1 {
    color: #ffffff !important;
    font-family: Poppins, Inter, Arial, sans-serif !important;
    font-size: clamp(42px, 6.6vw, 86px) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: .96 !important;
    margin: 0 auto 22px !important;
    max-width: 13ch !important;
    text-shadow: 0 28px 86px rgba(0, 0, 0, .68) !important;
}

.contact-page-body .static-hero p {
    color: rgba(246, 241, 230, .76) !important;
    font-size: clamp(16px, 1.4vw, 20px) !important;
    line-height: 1.7 !important;
    margin: 0 auto !important;
    max-width: 720px !important;
}

.contact-page-body .static-hero p::after {
    background: linear-gradient(90deg, transparent, #d4af37, transparent) !important;
    content: "" !important;
    display: block !important;
    height: 1px !important;
    margin: 26px auto 0 !important;
    opacity: .7 !important;
    width: min(280px, 70%) !important;
}

.contact-page-body .contact-layout {
    align-items: stretch !important;
    display: grid !important;
    gap: 22px !important;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr) !important;
    margin-bottom: 22px !important;
}

.contact-page-body .contact-panel,
.contact-page-body .contact-list article,
.contact-page-body .contact-form-shell {
    backdrop-filter: blur(24px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(150%) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035)) padding-box,
        linear-gradient(135deg, rgba(245, 210, 122, .34), rgba(255, 255, 255, .1), rgba(30, 230, 183, .14)) border-box,
        rgba(9, 12, 18, .88) !important;
    border: 1px solid transparent !important;
    border-radius: 28px !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .44), inset 0 1px 0 rgba(255, 255, 255, .1) !important;
    isolation: isolate !important;
    overflow: hidden !important;
    position: relative !important;
}

.contact-page-body .contact-panel::before,
.contact-page-body .contact-list article::before,
.contact-page-body .contact-form-shell::before {
    background:
        radial-gradient(circle at 18% 0%, rgba(245, 210, 122, .16), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 44%) !important;
    content: "" !important;
    inset: 0 !important;
    opacity: .8 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: 0 !important;
}

.contact-page-body .contact-panel > *,
.contact-page-body .contact-list article > *,
.contact-page-body .contact-form-shell > * {
    position: relative !important;
    z-index: 1 !important;
}

.contact-page-body .contact-panel {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 300px !important;
    padding: clamp(28px, 3vw, 42px) !important;
}

.contact-page-body .contact-panel h2,
.contact-page-body .contact-form-shell h2 {
    color: #ffffff !important;
    font-size: clamp(30px, 3vw, 44px) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    margin: 0 0 16px !important;
}

.contact-page-body .contact-panel p {
    color: rgba(246, 241, 230, .72) !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    max-width: 56ch !important;
}

.contact-page-body .contact-panel .gold-button,
.contact-page-body .contact-form button {
    border-radius: 999px !important;
    box-shadow: 0 18px 46px rgba(212, 175, 55, .24), inset 0 1px 0 rgba(255, 255, 255, .32) !important;
    min-height: 52px !important;
    padding-inline: 24px !important;
    width: fit-content !important;
}

.contact-page-body .contact-list {
    display: grid !important;
    gap: 16px !important;
}

.contact-page-body .contact-list article {
    padding: 24px !important;
    transition: all .3s ease !important;
}

.contact-page-body .contact-list article:hover {
    border-color: rgba(245, 210, 122, .36) !important;
    box-shadow: 0 30px 92px rgba(0, 0, 0, .52), 0 0 34px rgba(212, 175, 55, .12) !important;
    transform: translateY(-4px) !important;
}

.contact-page-body .contact-list span {
    color: #d4af37 !important;
    font-size: 11px !important;
    letter-spacing: 1.4px !important;
    margin-bottom: 10px !important;
}

.contact-page-body .contact-list a,
.contact-page-body .contact-list strong {
    color: #ffffff !important;
    font-size: clamp(17px, 1.5vw, 22px) !important;
    font-weight: 850 !important;
    line-height: 1.25 !important;
    overflow-wrap: anywhere !important;
}

.contact-page-body .contact-form-shell {
    padding: clamp(28px, 3vw, 42px) !important;
}

.contact-page-body .contact-form {
    display: grid !important;
    gap: 16px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 20px !important;
}

.contact-page-body .contact-form label {
    color: rgba(255, 246, 214, .88) !important;
    display: grid !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    gap: 9px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.contact-page-body .contact-form label:nth-of-type(3),
.contact-page-body .contact-form label:nth-of-type(4) {
    grid-column: 1 / -1 !important;
}

.contact-page-body .contact-form input,
.contact-page-body .contact-form textarea {
    background: rgba(255, 255, 255, .075) !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    font: inherit !important;
    min-height: 54px !important;
    outline: 0 !important;
    padding: 14px 16px !important;
    transition: all .3s ease !important;
    width: 100% !important;
}

.contact-page-body .contact-form textarea {
    min-height: 150px !important;
    resize: vertical !important;
}

.contact-page-body .contact-form input:focus,
.contact-page-body .contact-form textarea:focus {
    background: rgba(255, 255, 255, .1) !important;
    border-color: rgba(245, 210, 122, .72) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .13), 0 0 32px rgba(212, 175, 55, .18) !important;
}

.contact-page-body .contact-form button {
    border: 0 !important;
    cursor: pointer !important;
    grid-column: 1 / -1 !important;
    justify-self: start !important;
}

.contact-page-body .detail-notice {
    border-radius: 16px !important;
    margin: 16px 0 0 !important;
}

@media (max-width: 900px) {
    .contact-page-body .contact-layout,
    .contact-page-body .contact-form {
        grid-template-columns: 1fr !important;
    }

    .contact-page-body .contact-main {
        padding-inline: 18px !important;
    }

    .contact-page-body .static-hero {
        text-align: left !important;
    }

    .contact-page-body .static-hero h1,
    .contact-page-body .static-hero p {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Premium cinematic About page */
.about-page-body {
    background:
        radial-gradient(circle at 82% 6%, rgba(214, 178, 94, .08), transparent 28%),
        radial-gradient(circle at 14% 18%, rgba(58, 116, 96, .055), transparent 32%),
        linear-gradient(180deg, #050505 0%, #070809 46%, #050505 100%) !important;
    color: #f8fafc !important;
}

.about-main {
    margin: 0 auto !important;
    max-width: 1440px !important;
    overflow: hidden !important;
    padding: 0 24px 86px !important;
}

.about-hero {
    align-items: center;
    display: grid;
    gap: clamp(28px, 5vw, 74px);
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
    isolation: isolate;
    min-height: min(860px, 100svh);
    padding: clamp(118px, 13vw, 180px) 0 clamp(58px, 8vw, 112px);
    position: relative;
}

.about-hero::before,
.about-hero::after {
    border-radius: 999px;
    content: "";
    filter: blur(70px);
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.about-hero::before {
    background: color-mix(in srgb, var(--about-accent, #d6b25e) 18%, transparent);
    height: 360px;
    right: 4%;
    top: 16%;
    width: 360px;
}

.about-hero::after {
    animation: aboutGlowDrift 8s ease-in-out infinite alternate;
    background: color-mix(in srgb, var(--about-glow, #8a6920) 12%, transparent);
    bottom: 12%;
    height: 420px;
    left: -10%;
    width: 420px;
}

.about-noise {
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 46px 46px;
    inset: 0;
    mask-image: radial-gradient(circle at 50% 20%, #000, transparent 68%);
    opacity: .12;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.about-hero-copy .gold-kicker,
.about-section-heading .gold-kicker,
.about-mission .gold-kicker {
    background: rgba(214, 178, 94, .095) !important;
    border: 1px solid rgba(214, 178, 94, .24) !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    font-size: 12px !important;
    letter-spacing: 1.6px !important;
    margin-bottom: 22px !important;
    padding: 9px 14px !important;
}

.about-hero h1 {
    color: #ffffff;
    font-family: Poppins, Inter, Arial, sans-serif;
    font-size: clamp(48px, 7.8vw, 110px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .92;
    margin: 0 0 24px;
    max-width: 11ch;
    text-shadow: 0 18px 52px rgba(0, 0, 0, .72);
}

.about-hero p {
    color: rgba(255, 255, 255, .74);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.75;
    margin: 0;
    max-width: 700px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.about-secondary-button {
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 900;
    min-height: 50px;
    padding: 0 22px;
    transition: all .3s ease;
}

.about-secondary-button:hover {
    border-color: rgba(212, 175, 55, .36);
    box-shadow: 0 0 28px rgba(212, 175, 55, .14);
    transform: translateY(-2px);
}

.about-visual-card,
.about-stats article,
.about-feature-card,
.about-mission,
.about-timeline article,
.about-value-grid article {
    backdrop-filter: blur(16px) saturate(118%);
    -webkit-backdrop-filter: blur(16px) saturate(118%);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)) padding-box,
        linear-gradient(135deg, rgba(214, 178, 94, .18), rgba(255, 255, 255, .07), rgba(255, 255, 255, .04)) border-box,
        rgba(18, 18, 18, .82);
    border: 1px solid transparent;
    border-radius: 30px;
    box-shadow: 0 24px 76px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .055);
    overflow: hidden;
    position: relative;
}

.about-visual-card {
    min-height: 440px;
    padding: clamp(28px, 3vw, 42px);
}

.about-visual-card::before,
.about-feature-card::before,
.about-mission::before,
.about-value-grid article::before {
    background:
        radial-gradient(circle at 20% 0%, rgba(214, 178, 94, .08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 42%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.about-visual-card > *,
.about-feature-card > *,
.about-mission > *,
.about-value-grid article > * {
    position: relative;
    z-index: 1;
}

.about-visual-card span {
    color: #d6b25e;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-visual-card h2 {
    color: #ffffff;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.02;
    margin: 0 0 18px;
}

.about-visual-card p {
    max-width: 430px;
    color: rgba(255, 255, 255, .7);
}

.about-visual-card div {
    bottom: 28px;
    display: grid;
    gap: 12px;
    left: 28px;
    position: absolute;
    right: 28px;
}

.about-visual-card i {
    background: linear-gradient(90deg, rgba(214, 178, 94, .58), rgba(255, 255, 255, .14), transparent);
    border-radius: 999px;
    display: block;
    height: 9px;
    opacity: .8;
}

.about-visual-card i:nth-child(2) {
    width: 72%;
}

.about-visual-card i:nth-child(3) {
    width: 46%;
}

.about-stats {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 0 clamp(56px, 8vw, 104px);
}

.about-stats article {
    border-radius: 24px;
    padding: 24px;
}

.about-stats strong {
    color: #ffffff;
    display: block;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stats span {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-section {
    margin-bottom: clamp(58px, 8vw, 112px);
}

.about-section-heading {
    margin-bottom: 24px;
    max-width: 780px;
}

.about-section-heading h2,
.about-mission h2 {
    color: #ffffff;
    font-size: clamp(36px, 5.2vw, 72px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .98;
    margin: 0;
}

.about-feature-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-feature-card {
    min-height: 360px;
    padding: 28px;
    transition: all .3s ease;
}

.about-feature-card:hover,
.about-value-grid article:hover,
.about-timeline article:hover {
    border-color: rgba(214, 178, 94, .3);
    box-shadow: 0 30px 92px rgba(0, 0, 0, .52), 0 0 22px rgba(214, 178, 94, .09);
    transform: translateY(-5px);
}

.about-feature-icon {
    align-items: center;
    background: linear-gradient(135deg, rgba(214, 178, 94, .92), rgba(180, 142, 58, .82));
    border-radius: 18px;
    color: #06100d;
    display: inline-flex;
    font-weight: 950;
    height: 54px;
    justify-content: center;
    margin-bottom: 28px;
    width: 54px;
}

.about-feature-card span,
.about-timeline span {
    color: #d6b25e;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about-feature-card h3,
.about-value-grid h3,
.about-timeline h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.08;
    margin: 0 0 14px;
}

.about-feature-card p,
.about-value-grid p,
.about-timeline p,
.about-mission p {
    color: rgba(255, 255, 255, .68);
    line-height: 1.72;
    margin: 0;
}

.about-mission {
    align-items: center;
    display: grid;
    gap: clamp(28px, 5vw, 72px);
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    padding: clamp(32px, 5vw, 64px);
}

.about-mission blockquote {
    border-left: 2px solid rgba(214, 178, 94, .5);
    color: #ffffff;
    font-size: clamp(21px, 2.1vw, 32px);
    font-weight: 850;
    line-height: 1.28;
    margin: 26px 0 0;
    padding-left: 22px;
}

.about-timeline {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    position: relative;
}

.about-timeline article {
    border-radius: 24px;
    padding: 24px;
    transition: all .3s ease;
}

.about-value-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-value-grid article {
    border-radius: 24px;
    padding: 24px;
    transition: all .3s ease;
}

.about-page-body .site-footer {
    background:
        radial-gradient(circle at 18% 0%, rgba(214, 178, 94, .055), transparent 34%),
        linear-gradient(180deg, #0b0b0b, #111111) !important;
    border-top: 1px solid rgba(255, 255, 255, .08) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 -28px 90px rgba(0, 0, 0, .42) !important;
    padding-top: clamp(44px, 5vw, 70px) !important;
}

.about-page-body .footer-inner {
    gap: clamp(24px, 4vw, 58px) !important;
}

.about-page-body .footer-newsletter div,
.about-page-body .footer-social a {
    backdrop-filter: blur(14px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
    background: rgba(255, 255, 255, .06) !important;
    border-color: rgba(255, 255, 255, .12) !important;
}

.site-footer .footer-logo {
    align-items: center !important;
    display: inline-flex !important;
    gap: 10px !important;
    line-height: 1 !important;
}

.site-footer .footer-logo .brand-icon {
    align-items: center !important;
    display: inline-flex !important;
    flex: 0 0 34px !important;
    height: 34px !important;
    justify-content: center !important;
    width: 34px !important;
}

.site-footer .footer-logo .brand-logo-image img {
    display: block !important;
    height: 100% !important;
    object-fit: contain !important;
    width: 100% !important;
}

.site-footer .footer-logo .brand-text {
    display: inline-flex !important;
    line-height: 1 !important;
    transform: translateY(1px) !important;
}

@keyframes aboutGlowDrift {
    to {
        opacity: .75;
        transform: translate3d(48px, -26px, 0) scale(1.08);
    }
}

@media (max-width: 1100px) {
    .about-hero,
    .about-mission {
        grid-template-columns: 1fr;
    }

    .about-visual-card {
        min-height: 330px;
    }

    .about-stats,
    .about-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-timeline,
    .about-value-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-main {
        padding-inline: 18px !important;
    }

    .about-hero {
        min-height: auto;
        padding-top: 108px;
        text-align: center;
    }

    .about-hero h1,
    .about-hero p,
    .about-section-heading {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-actions {
        justify-content: center;
    }

    .about-stats,
    .about-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* About settings editor */
.admin-settings-body .settings-about-panel {
    backdrop-filter: blur(24px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(145%) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035)) padding-box,
        linear-gradient(135deg, rgba(245, 210, 122, .34), rgba(255, 255, 255, .11), rgba(30, 230, 183, .16)) border-box,
        rgba(7, 10, 18, .88) !important;
    border: 1px solid transparent !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .46), 0 0 46px rgba(212, 175, 55, .08), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
    display: grid !important;
    gap: 22px !important;
    max-width: 980px !important;
    padding: clamp(26px, 3vw, 34px) !important;
    width: min(980px, 100%) !important;
}

.admin-settings-body .settings-about-panel .panel-heading {
    align-items: end !important;
    border-bottom: 1px solid rgba(255, 255, 255, .09) !important;
    display: flex !important;
    gap: 12px !important;
    justify-content: space-between !important;
    margin: 0 !important;
    padding-bottom: 18px !important;
}

.admin-settings-body .settings-about-panel .panel-heading h2 {
    color: #ffffff !important;
    font-size: clamp(15px, 1.05vw, 20px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.22 !important;
    margin: 0 !important;
}

.admin-settings-body .settings-about-panel .panel-heading span {
    color: rgba(248, 250, 252, .58) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .8px !important;
    text-transform: uppercase !important;
}

.admin-settings-body .settings-about-panel h3 {
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: #ffffff;
    font-size: 20px;
    margin: 18px 0 0;
    padding-top: 20px;
}

.admin-settings-body .admin-about-page-form input,
.admin-settings-body .admin-about-page-form textarea {
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    min-height: 48px !important;
    outline: 0 !important;
    padding: 12px 14px !important;
}

.admin-settings-body .admin-about-page-form textarea {
    min-height: 112px !important;
    resize: vertical !important;
}

.admin-settings-two,
.admin-settings-grid,
.admin-settings-toggle-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-settings-fieldset {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    display: grid;
    gap: 12px;
    padding: 16px;
}

.admin-settings-fieldset strong {
    color: #f7df8e;
}

.admin-settings-toggle-grid label {
    align-items: center;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    display: flex;
    gap: 10px;
    padding: 12px;
}

.admin-settings-toggle-grid input {
    min-height: auto !important;
    width: auto !important;
}

@media (max-width: 760px) {
    .admin-settings-two,
    .admin-settings-grid,
    .admin-settings-toggle-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium cinematic mobile menu */
.mobile-menu-brand-block,
.mobile-menu-profile,
.mobile-menu-section-label,
.mobile-menu-bottom {
    display: none;
}

.mobile-menu-auth-actions {
    display: contents;
}

.mobile-menu-item i,
.mobile-menu-item b {
    display: none;
}

@media (max-width: 900px) {
    .mobile-menu-overlay {
        backdrop-filter: blur(12px) saturate(130%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(130%) !important;
        background: rgba(0, 0, 0, .58) !important;
        transition: opacity .34s cubic-bezier(.2, .8, .2, 1), visibility .34s ease !important;
    }

    .mobile-menu-drawer,
    .site-nav.mobile-menu-drawer {
        backdrop-filter: blur(30px) saturate(155%) !important;
        -webkit-backdrop-filter: blur(30px) saturate(155%) !important;
        background:
            radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--mobile-menu-accent, #d4af37) 18%, transparent), transparent 28%),
            radial-gradient(circle at 100% 34%, color-mix(in srgb, var(--mobile-menu-glow, #1ee6b7) 12%, transparent), transparent 34%),
            linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
            rgba(10, 10, 10, .86) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        border-left: 1px solid rgba(255, 255, 255, .12) !important;
        border-radius: 22px 0 0 22px !important;
        bottom: 0 !important;
        box-shadow: -34px 0 110px rgba(0, 0, 0, .72), inset 1px 0 0 rgba(255, 255, 255, .08) !important;
        display: flex !important;
        flex-direction: column !important;
        height: calc(100dvh - 60px) !important;
        max-height: calc(100dvh - 60px) !important;
        max-width: min(360px, calc(100vw - 12px - env(safe-area-inset-right, 0px))) !important;
        min-height: 0 !important;
        left: auto !important;
        overflow: hidden !important;
        pointer-events: none !important;
        position: fixed !important;
        right: max(0px, env(safe-area-inset-right, 0px)) !important;
        top: 60px !important;
        transform: translate3d(100%, 0, 0) !important;
        transition: transform .42s cubic-bezier(.18, .86, .22, 1), box-shadow .3s ease !important;
        width: min(360px, calc(100vw - 12px - env(safe-area-inset-right, 0px))) !important;
        z-index: 1650 !important;
    }

    .mobile-menu-drawer.is-open,
    .site-nav.mobile-menu-drawer.is-open {
        pointer-events: auto !important;
        transform: translate3d(0, 0, 0) !important;
    }

    .mobile-menu-content {
        box-sizing: border-box !important;
        display: flex !important;
        flex: 1 1 auto !important;
        flex-direction: column !important;
        gap: 16px !important;
        min-height: 0 !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 20px max(18px, env(safe-area-inset-right, 0px)) 24px max(18px, env(safe-area-inset-left, 0px)) !important;
        position: relative !important;
    }

    .mobile-menu-content::before {
        background-image:
            linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
        background-size: 34px 34px;
        content: "" !important;
        inset: 0 !important;
        mask-image: radial-gradient(circle at 50% 12%, #000, transparent 72%);
        opacity: .22 !important;
        pointer-events: none !important;
        position: absolute !important;
    }

    .mobile-menu-content > * {
        position: relative !important;
        z-index: 1 !important;
    }

    .mobile-menu-brand-block {
        border-bottom: 1px solid rgba(255, 255, 255, .09);
        display: block !important;
        order: 1;
        padding: 8px 4px 18px;
    }

    .mobile-menu-brand {
        align-items: center;
        color: #ffffff;
        display: inline-flex;
        gap: 11px;
        line-height: 1;
    }

    .mobile-menu-brand .brand-icon {
        border: 1px solid rgba(212, 175, 55, .34) !important;
        border-radius: 14px !important;
        box-shadow: 0 0 26px color-mix(in srgb, var(--mobile-menu-accent, #d4af37) 22%, transparent) !important;
        flex: 0 0 42px !important;
        height: 42px !important;
        width: 42px !important;
    }

    .mobile-menu-brand .brand-text {
        background: linear-gradient(90deg, #ffffff, #f8e59d, var(--mobile-menu-accent, #d4af37));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-family: Poppins, Inter, Arial, sans-serif;
        font-size: 24px;
        font-weight: 950;
    }

    .mobile-menu-brand-block p,
    .mobile-menu-bottom small {
        color: rgba(246, 241, 230, .58);
        font-size: 12px;
        font-weight: 700;
        margin: 10px 0 0;
    }

    .mobile-menu-section-label {
        color: var(--mobile-menu-accent, #d4af37);
        display: block !important;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 1.4px;
        order: 3;
        padding: 2px 4px;
        text-transform: uppercase;
    }

    .mobile-menu-auth-actions {
        display: grid;
        gap: 10px;
        order: 2;
    }

    .mobile-menu-profile {
        align-items: center;
        background: rgba(255, 255, 255, .055);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 20px;
        display: grid;
        gap: 12px;
        grid-template-columns: 52px minmax(0, 1fr);
        order: 2;
        padding: 14px;
    }

    .mobile-menu-avatar {
        align-items: center;
        background: linear-gradient(135deg, var(--mobile-menu-accent, #d4af37), var(--mobile-menu-glow, #1ee6b7));
        border-radius: 16px;
        color: #050505;
        display: inline-flex;
        font-weight: 950;
        height: 52px;
        justify-content: center;
        width: 52px;
    }

    .mobile-menu-profile span {
        color: var(--mobile-menu-accent, #d4af37);
        display: block;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .mobile-menu-profile strong,
    .mobile-menu-profile small {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-menu-profile strong {
        color: #ffffff;
        font-size: 16px;
        margin: 4px 0;
    }

    .mobile-menu-profile small {
        color: rgba(246, 241, 230, .66);
        font-size: 12px;
    }

    .mobile-menu-content .mobile-menu-item,
    .mobile-menu-content .inline-logout-form button {
        align-items: center !important;
        background: rgba(255, 255, 255, .045) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        border-radius: 16px !important;
        color: rgba(255, 255, 255, .9) !important;
        display: grid !important;
        font-size: 15px !important;
        font-weight: 750 !important;
        gap: 12px !important;
        grid-template-columns: 34px minmax(0, 1fr) auto !important;
        min-height: 52px !important;
        order: 4 !important;
        padding: 9px 12px !important;
        text-align: left !important;
        transition: all .28s ease !important;
        width: 100% !important;
    }

    .mobile-menu-content .mobile-menu-item i {
        align-items: center;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 12px;
        color: var(--mobile-menu-accent, #d4af37);
        display: inline-flex;
        font-style: normal;
        font-weight: 950;
        height: 34px;
        justify-content: center;
        width: 34px;
    }

    .mobile-menu-content .mobile-menu-item b {
        display: inline !important;
    }

    .mobile-menu-content .mobile-menu-item b {
        color: rgba(255, 255, 255, .32);
        font-weight: 900;
    }

    .mobile-menu-content .mobile-menu-item:hover,
    .mobile-menu-content .inline-logout-form button:hover {
        background: color-mix(in srgb, var(--mobile-menu-accent, #d4af37) 14%, rgba(255, 255, 255, .055)) !important;
        border-color: color-mix(in srgb, var(--mobile-menu-accent, #d4af37) 38%, transparent) !important;
        box-shadow: 0 14px 34px rgba(0, 0, 0, .28), 0 0 22px color-mix(in srgb, var(--mobile-menu-accent, #d4af37) 16%, transparent) !important;
        color: #ffffff !important;
        transform: translateX(4px) !important;
    }

    .mobile-menu-content .login-btn,
    .mobile-menu-content .register-btn {
        align-items: center !important;
        border-radius: 16px !important;
        display: flex !important;
        font-size: 15px !important;
        font-weight: 900 !important;
        justify-content: center !important;
        min-height: 52px !important;
        padding: 0 16px !important;
        transition: all .28s ease !important;
        width: 100% !important;
    }

    .mobile-menu-content .login-btn {
        background: rgba(255, 255, 255, .055) !important;
        border: 1px solid color-mix(in srgb, var(--mobile-menu-accent, #d4af37) 44%, transparent) !important;
        color: #f7df8e !important;
    }

    .mobile-menu-content .register-btn {
        background: linear-gradient(135deg, #f8e59d, var(--mobile-menu-accent, #d4af37), #9f7412) !important;
        border: 0 !important;
        box-shadow: 0 18px 42px color-mix(in srgb, var(--mobile-menu-accent, #d4af37) 24%, transparent) !important;
        color: #050505 !important;
    }

    .mobile-menu-content .login-btn:hover,
    .mobile-menu-content .register-btn:hover {
        transform: translateY(-2px) !important;
    }

    .mobile-menu-content .inline-logout-form {
        margin: 0 !important;
        order: 5 !important;
        width: 100% !important;
    }

    .mobile-menu-content .inline-logout-form button {
        display: flex !important;
        justify-content: center !important;
    }

    .mobile-menu-bottom {
        border-top: 1px solid rgba(255, 255, 255, .09);
        display: block !important;
        margin-top: auto;
        order: 6;
        padding: 16px 4px 0;
    }

    .mobile-menu-social {
        display: none !important;
    }

    .mobile-menu-social a {
        align-items: center;
        background: rgba(255, 255, 255, .055);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 999px;
        color: #ffffff;
        display: inline-flex;
        font-size: 12px;
        font-weight: 900;
        height: 34px;
        justify-content: center;
        text-transform: uppercase;
        transition: all .25s ease;
        width: 34px;
    }

    .mobile-menu-social a:hover {
        border-color: color-mix(in srgb, var(--mobile-menu-accent, #d4af37) 42%, transparent);
        color: var(--mobile-menu-accent, #d4af37);
        transform: translateY(-2px);
    }
}

/* Wide viewports: horizontal header + search — drawer transforms must not apply */
@media (min-width: 901px) {
    body.menu-open {
        height: auto !important;
        overflow: auto !important;
        touch-action: auto !important;
    }

    .menu-overlay.mobile-menu-overlay,
    .mobile-menu-overlay {
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden !important;
    }

    .site-header,
    .home-body .site-header {
        align-items: center !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        height: auto !important;
        left: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        position: sticky !important;
        right: auto !important;
        top: 0 !important;
        width: 100% !important;
    }

    .site-nav.mobile-menu-drawer,
    nav.site-nav.mobile-menu-drawer {
        align-items: center !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        display: flex !important;
        flex: 0 1 auto !important;
        flex-direction: row !important;
        gap: clamp(10px, 1.05vw, 18px) !important;
        height: auto !important;
        margin-left: auto !important;
        max-height: none !important;
        max-width: none !important;
        min-height: 0 !important;
        opacity: 1 !important;
        overflow: visible !important;
        padding: 0 !important;
        pointer-events: auto !important;
        position: relative !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
        width: auto !important;
        z-index: 2 !important;
    }

    .site-nav.mobile-menu-drawer.is-open,
    .mobile-menu-drawer.is-open {
        transform: none !important;
    }

    .site-nav.mobile-menu-drawer .mobile-menu-content {
        align-items: center !important;
        display: flex !important;
        flex: 0 1 auto !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: clamp(4px, 0.55vw, 8px) clamp(10px, 1.15vw, 22px) !important;
        justify-content: flex-end !important;
        min-height: 0 !important;
        min-width: 0 !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .site-nav.mobile-menu-drawer .mobile-menu-content .mobile-menu-item {
        white-space: nowrap !important;
    }

    .site-nav.mobile-menu-drawer .mobile-menu-content .inline-logout-form {
        align-items: center !important;
        display: inline-flex !important;
        margin: 0 !important;
    }

    .mobile-header-actions .hamburger,
    .mobile-header-actions .search-mobile-toggle {
        display: none !important;
    }

    .live-search .search-field {
        opacity: 1 !important;
        pointer-events: auto !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
    }

    .live-search {
        flex: 1 1 clamp(200px, 26vw, 380px) !important;
        margin-left: 0 !important;
        max-width: min(380px, 36vw) !important;
    }
}

@media (max-width: 380px) {
    .mobile-menu-drawer,
    .site-nav.mobile-menu-drawer {
        border-radius: 22px 0 0 22px !important;
        max-width: min(360px, calc(100vw - 12px - env(safe-area-inset-right, 0px))) !important;
        width: min(360px, calc(100vw - 12px - env(safe-area-inset-right, 0px))) !important;
    }

    .mobile-menu-content {
        padding: 20px max(14px, env(safe-area-inset-right, 0px)) 18px max(14px, env(safe-area-inset-left, 0px)) !important;
    }
}

.admin-settings-body .settings-mobile-menu-panel {
    backdrop-filter: blur(24px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(145%) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035)) padding-box,
        linear-gradient(135deg, rgba(245, 210, 122, .34), rgba(255, 255, 255, .11), rgba(30, 230, 183, .16)) border-box,
        rgba(7, 10, 18, .88) !important;
    border: 1px solid transparent !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .46), 0 0 46px rgba(212, 175, 55, .08), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
    display: grid !important;
    gap: 22px !important;
    max-width: 980px !important;
    padding: clamp(26px, 3vw, 34px) !important;
    width: min(980px, 100%) !important;
}

.admin-settings-body .settings-mobile-menu-panel .panel-heading {
    border-bottom: 1px solid rgba(255, 255, 255, .09) !important;
    padding-bottom: 18px !important;
}

.admin-settings-body .settings-mobile-menu-panel h3 {
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: #ffffff;
    font-size: 20px;
    margin: 18px 0 0;
    padding-top: 20px;
}

.admin-settings-body .admin-mobile-menu-form input {
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    min-height: 48px !important;
    outline: 0 !important;
    padding: 12px 14px !important;
}

/* About readability and contrast refinement */
.about-page-body .about-hero-copy,
.about-page-body .about-section-heading,
.about-page-body .about-mission > div:first-child {
    background: linear-gradient(90deg, rgba(0, 0, 0, .48), rgba(0, 0, 0, .18), transparent) !important;
    border-radius: 32px !important;
    padding: clamp(18px, 2.4vw, 30px) !important;
}

.about-page-body .about-section-heading {
    max-width: 840px !important;
}

.about-page-body .about-hero h1,
.about-page-body .about-section-heading h2,
.about-page-body .about-mission h2,
.about-page-body .about-feature-card h3,
.about-page-body .about-value-grid h3,
.about-page-body .about-timeline h3,
.about-page-body .about-visual-card h2 {
    color: #ffffff !important;
    text-shadow: 0 14px 42px rgba(0, 0, 0, .6) !important;
}

.about-page-body .about-hero p,
.about-page-body .about-feature-card p,
.about-page-body .about-value-grid p,
.about-page-body .about-timeline p,
.about-page-body .about-mission p,
.about-page-body .about-visual-card p {
    color: rgba(255, 255, 255, .7) !important;
}

.about-page-body .gold-kicker,
.about-page-body .about-feature-card span,
.about-page-body .about-timeline span,
.about-page-body .about-visual-card span {
    color: #d6b25e !important;
}

.about-page-body .about-visual-card,
.about-page-body .about-stats article,
.about-page-body .about-feature-card,
.about-page-body .about-mission,
.about-page-body .about-timeline article,
.about-page-body .about-value-grid article {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015)) padding-box,
        linear-gradient(135deg, rgba(214, 178, 94, .16), rgba(255, 255, 255, .06), rgba(255, 255, 255, .035)) border-box,
        rgba(18, 18, 18, .86) !important;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .05) !important;
}

.about-page-body .about-hero::before,
.about-page-body .about-hero::after {
    opacity: .55 !important;
}

.about-page-body .site-footer,
.about-page-body .site-footer::before,
.about-page-body .site-footer::after {
    box-shadow: none !important;
}

.about-page-body .site-footer {
    background: linear-gradient(180deg, #0b0b0b, #111111) !important;
}

.about-page-body .site-footer h2,
.about-page-body .footer-links h2 {
    color: #ffffff !important;
}

.about-page-body .site-footer p,
.about-page-body .site-footer a,
.about-page-body .footer-bottom {
    color: rgba(255, 255, 255, .72) !important;
}

.about-page-body .footer-newsletter div {
    background: rgba(255, 255, 255, .055) !important;
}

/* Final homepage hero: premium split OTT composition */
.home-body .lux-hero {
    background: #050505 !important;
    height: clamp(680px, 88vh, 940px) !important;
    min-height: 680px !important;
}

.home-body .hero-layout {
    align-items: center !important;
    display: grid !important;
    gap: clamp(24px, 5vw, 72px) !important;
    grid-template-columns: minmax(0, .96fr) minmax(340px, .58fr) !important;
    inset: 0 !important;
    margin: 0 auto !important;
    max-width: 1760px !important;
    padding: clamp(92px, 9vw, 132px) max(22px, calc((100vw - 1760px) / 2 + 42px)) clamp(68px, 8vw, 96px) !important;
    position: absolute !important;
    z-index: 4 !important;
}

.home-body .hero-content {
    align-self: center !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: linear-gradient(90deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .18), transparent) !important;
    border-radius: 32px !important;
    bottom: auto !important;
    left: auto !important;
    max-width: 720px !important;
    padding: clamp(20px, 3vw, 36px) !important;
    position: relative !important;
    right: auto !important;
}

.home-body .hero-content::before {
    display: none !important;
}

.home-body .hero-content h1 {
    font-size: clamp(44px, 5.8vw, 92px) !important;
    letter-spacing: -.04em !important;
    line-height: .92 !important;
    max-width: 11ch !important;
    overflow-wrap: anywhere !important;
}

.home-body .hero-content p {
    display: -webkit-box !important;
    max-width: 60ch !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
}

.home-body .hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.home-body .hero-secondary-button {
    align-items: center !important;
    backdrop-filter: blur(14px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    display: inline-flex !important;
    font-weight: 900 !important;
    min-height: 52px !important;
    padding: 0 22px !important;
    transition: all .3s ease !important;
}

.home-body .hero-secondary-button:hover {
    background: rgba(255, 255, 255, .11) !important;
    border-color: rgba(214, 178, 94, .36) !important;
    transform: translateY(-2px) !important;
}

.home-body .hero-feature-card {
    align-self: center !important;
    backdrop-filter: blur(20px) saturate(128%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(128%) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)) padding-box,
        linear-gradient(135deg, rgba(214, 178, 94, .28), rgba(255, 255, 255, .09), rgba(255, 255, 255, .04)) border-box,
        rgba(18, 18, 18, .72) !important;
    border: 1px solid transparent !important;
    border-radius: 32px !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .46), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    color: #ffffff !important;
    justify-self: end !important;
    max-width: 420px !important;
    overflow: hidden !important;
    padding: 16px !important;
    position: relative !important;
    width: 100% !important;
}

.home-body .hero-feature-card img {
    aspect-ratio: 16 / 10 !important;
    border-radius: 22px !important;
    display: block !important;
    filter: saturate(1.02) contrast(1.04) !important;
    height: auto !important;
    margin-bottom: 16px !important;
    object-fit: cover !important;
    opacity: 1 !important;
    width: 100% !important;
}

.home-body .hero-feature-card > span,
.home-body .hero-feature-card div span {
    color: #d6b25e !important;
    display: block !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
}

.home-body .hero-feature-card h2 {
    color: #ffffff !important;
    font-size: clamp(22px, 2vw, 32px) !important;
    line-height: 1.06 !important;
    margin: 0 0 10px !important;
}

.home-body .hero-feature-card p {
    color: rgba(255, 255, 255, .68) !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

.home-body .hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, var(--hero-overlay-alpha, .82)) 0%, rgba(0, 0, 0, .58) 42%, rgba(0, 0, 0, .28) 100%),
        radial-gradient(circle at 86% 24%, rgba(214, 178, 94, .12), transparent 28%),
        linear-gradient(180deg, rgba(5, 5, 5, .1), #050505 100%) !important;
}

.home-body .hero-slide video,
.home-body .hero-slide img,
.home-body .hero-fallback,
.home-body .hero-slide iframe {
    filter: saturate(.9) contrast(1.05) brightness(.82) !important;
}

.admin-settings-body .settings-home-hero-panel {
    backdrop-filter: blur(24px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(145%) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035)) padding-box,
        linear-gradient(135deg, rgba(245, 210, 122, .34), rgba(255, 255, 255, .11), rgba(30, 230, 183, .16)) border-box,
        rgba(7, 10, 18, .88) !important;
    border: 1px solid transparent !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .46), inset 0 1px 0 rgba(255, 255, 255, .12) !important;
    display: grid !important;
    gap: 22px !important;
    max-width: 980px !important;
    padding: clamp(26px, 3vw, 34px) !important;
    width: min(980px, 100%) !important;
}

.admin-settings-body .settings-home-hero-panel h3 {
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: #ffffff;
    font-size: 20px;
    margin: 18px 0 0;
    padding-top: 20px;
}

.admin-settings-body .admin-home-hero-form input,
.admin-settings-body .admin-home-hero-form textarea {
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    min-height: 48px !important;
    outline: 0 !important;
    padding: 12px 14px !important;
}

.admin-settings-body .admin-home-hero-form textarea {
    min-height: 112px !important;
    resize: vertical !important;
}

@media (max-width: 980px) {
    .home-body .lux-hero {
        height: auto !important;
        min-height: 760px !important;
    }

    .home-body .hero-layout {
        grid-template-columns: 1fr !important;
        padding: 104px 18px 82px !important;
        position: relative !important;
    }

    .home-body .hero-content {
        max-width: 720px !important;
        text-align: center !important;
    }

    .home-body .hero-content h1,
    .home-body .hero-content p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .home-body .hero-meta,
    .home-body .hero-actions {
        justify-content: center !important;
    }

    .home-body .hero-feature-card {
        justify-self: center !important;
        max-width: 460px !important;
    }
}

@media (max-width: 620px) {
    .home-body .hero-content h1 {
        font-size: clamp(36px, 11vw, 54px) !important;
        max-width: 12ch !important;
    }

    .home-body .hero-content {
        padding: 18px !important;
    }

    .home-body .hero-actions a {
        justify-content: center !important;
        width: 100% !important;
    }

    .home-body .hero-feature-card {
        display: none !important;
    }
}

/* Premium OTT homepage hero slider */
.home-body .lux-hero {
    background: #030405 !important;
    height: clamp(660px, 88vh, 980px) !important;
    isolation: isolate !important;
    min-height: 640px !important;
    overflow: hidden !important;
    position: relative !important;
}

.home-body .lux-hero::before {
    animation: heroParallax 18s ease-in-out infinite alternate !important;
    background:
        linear-gradient(90deg, rgba(3, 4, 5, .86), rgba(3, 4, 5, .18) 48%, rgba(3, 4, 5, .68)),
        url('../images/movie-showcase-bg.png?v=2') center top / cover no-repeat !important;
    filter: saturate(1.15) contrast(1.08) !important;
    opacity: .86 !important;
    transform: scale(1.04) !important;
}

.home-body .lux-hero::after {
    animation: floatingHeroGlow 9s ease-in-out infinite alternate !important;
    background:
        radial-gradient(circle at 50% 50%, rgba(245, 210, 122, .28), rgba(212, 175, 55, .1) 36%, transparent 70%) !important;
    border-radius: 999px !important;
    content: "" !important;
    filter: blur(38px) !important;
    height: min(44vw, 560px) !important;
    opacity: .9 !important;
    pointer-events: none !important;
    position: absolute !important;
    right: max(-140px, 2vw) !important;
    top: 12% !important;
    width: min(44vw, 560px) !important;
    z-index: 3 !important;
}

.home-body .hero-slide {
    transform: scale(1.07) translate3d(0, 22px, 0) !important;
    transition: opacity 1100ms ease, transform 1800ms cubic-bezier(.18, .86, .22, 1) !important;
}

.home-body .hero-slide.is-active {
    transform: scale(1) translate3d(0, 0, 0) !important;
}

.home-body .hero-slide video,
.home-body .hero-slide img,
.home-body .hero-fallback,
.home-body .hero-slide iframe {
    filter: saturate(1.2) contrast(1.08) brightness(.9) !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: .76 !important;
    width: 100% !important;
}

.home-body .hero-overlay {
    background:
        linear-gradient(90deg, #030405 0%, rgba(3, 4, 5, .88) 28%, rgba(3, 4, 5, .36) 62%, rgba(3, 4, 5, .74) 100%),
        radial-gradient(circle at 74% 28%, rgba(245, 210, 122, .18), transparent 24%),
        radial-gradient(circle at 52% 92%, rgba(30, 230, 183, .12), transparent 34%),
        linear-gradient(180deg, rgba(3, 4, 5, .16), rgba(3, 4, 5, .1) 44%, #030405 100%) !important;
}

.home-body .hero-overlay::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 46px 46px;
    content: "" !important;
    inset: 0 !important;
    opacity: .22 !important;
    pointer-events: none !important;
    position: absolute !important;
}

.home-body .hero-content {
    backdrop-filter: blur(2px) !important;
    -webkit-backdrop-filter: blur(2px) !important;
    bottom: clamp(86px, 13vh, 148px) !important;
    left: max(22px, calc((100vw - 1760px) / 2 + 42px)) !important;
    max-width: min(760px, calc(100vw - 48px)) !important;
    padding-left: clamp(0px, 1.4vw, 18px) !important;
}

.home-body .hero-content::before {
    background: linear-gradient(180deg, rgba(245, 210, 122, .7), rgba(245, 210, 122, .08), transparent) !important;
    border-radius: 999px !important;
    height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    width: 2px !important;
}

.home-body .hero-content .gold-kicker {
    background: rgba(212, 175, 55, .12) !important;
    border: 1px solid rgba(212, 175, 55, .28) !important;
    border-radius: 999px !important;
    color: #f8e59d !important;
    display: inline-flex !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 18px !important;
    padding: 8px 12px !important;
    text-shadow: none !important;
}

.home-body .hero-content h1 {
    color: #ffffff !important;
    font-family: Poppins, Inter, Arial, sans-serif !important;
    font-size: clamp(48px, 7vw, 112px) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: .9 !important;
    margin: 0 0 22px !important;
    max-width: 10.5ch !important;
    text-shadow: 0 32px 100px rgba(0, 0, 0, .78) !important;
}

.home-body .hero-content p {
    color: rgba(246, 241, 230, .82) !important;
    font-size: clamp(16px, 1.25vw, 21px) !important;
    line-height: 1.65 !important;
    margin: 0 0 20px !important;
    max-width: 700px !important;
}

.home-body .hero-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 0 28px !important;
}

.home-body .hero-meta span {
    backdrop-filter: blur(12px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(140%) !important;
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    border-radius: 999px !important;
    color: rgba(255, 255, 255, .82) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    padding: 8px 11px !important;
}

.home-body .hero-content .gold-button {
    border-radius: 999px !important;
    min-height: 52px !important;
    padding: 0 24px !important;
}

.home-body .hero-dots {
    align-items: center !important;
    backdrop-filter: blur(18px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
    background: rgba(255, 255, 255, .055) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 999px !important;
    bottom: clamp(24px, 4.8vh, 48px) !important;
    box-shadow: 0 18px 54px rgba(0, 0, 0, .36) !important;
    gap: 8px !important;
    padding: 8px !important;
}

.home-body .hero-dots button {
    background: rgba(255, 255, 255, .24) !important;
    border: 0 !important;
    height: 8px !important;
    width: 8px !important;
}

.home-body .hero-dots button.is-active {
    background: linear-gradient(90deg, #d4af37, #f8e59d) !important;
    box-shadow: 0 0 18px rgba(212, 175, 55, .58) !important;
    width: 34px !important;
}

@media (max-width: 760px) {
    .home-body .lux-hero {
        height: 660px !important;
        min-height: 620px !important;
    }

    .home-body .hero-slide video,
    .home-body .hero-slide img,
    .home-body .hero-fallback,
    .home-body .hero-slide iframe {
        opacity: .52 !important;
    }

    .home-body .hero-overlay {
        background:
            linear-gradient(180deg, rgba(3, 4, 5, .28), rgba(3, 4, 5, .66) 38%, #030405 100%),
            linear-gradient(90deg, rgba(3, 4, 5, .9), rgba(3, 4, 5, .46)) !important;
    }

    .home-body .hero-content {
        bottom: 86px !important;
        left: 18px !important;
        right: 18px !important;
        max-width: none !important;
        padding-left: 0 !important;
    }

    .home-body .hero-content::before {
        display: none !important;
    }

    .home-body .hero-content h1 {
        font-size: clamp(38px, 12vw, 58px) !important;
        max-width: 11ch !important;
    }

    .home-body .hero-content p {
        font-size: 15px !important;
        max-width: 44ch !important;
    }

    .home-body .hero-meta {
        gap: 6px !important;
        margin-bottom: 22px !important;
    }

    .home-body .hero-meta span {
        font-size: 11px !important;
        padding: 7px 9px !important;
    }
}

/* Final About page luxury system audit */
.about-page-body {
    --about-bg: #050505;
    --about-bg-soft: #080808;
    --about-surface: rgba(18, 18, 18, .86);
    --about-surface-soft: rgba(20, 20, 20, .72);
    --about-line: rgba(255, 255, 255, .06);
    --about-line-strong: rgba(255, 255, 255, .1);
    --about-text: #ffffff;
    --about-text-secondary: rgba(255, 255, 255, .72);
    --about-text-muted: rgba(255, 255, 255, .52);
    --about-gold: #d6b25e;
    --about-gold-soft: rgba(214, 178, 94, .14);
    background:
        radial-gradient(circle at 12% 6%, rgba(214, 178, 94, .08), transparent 30%),
        radial-gradient(circle at 92% 22%, rgba(50, 105, 92, .08), transparent 34%),
        linear-gradient(180deg, #050505 0%, #070707 48%, #050505 100%) !important;
    color: var(--about-text) !important;
}

.about-page-body .about-main {
    background: transparent !important;
    max-width: 1320px !important;
    overflow: hidden !important;
    padding: clamp(28px, 4vw, 56px) clamp(18px, 4vw, 42px) 0 !important;
}

.about-page-body .about-hero {
    align-items: center !important;
    gap: clamp(36px, 6vw, 84px) !important;
    min-height: 85vh !important;
    padding-block: clamp(72px, 9vw, 120px) !important;
}

.about-page-body .about-hero::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .18) 48%, rgba(0, 0, 0, .36)),
        radial-gradient(circle at 78% 34%, rgba(214, 178, 94, .12), transparent 32%) !important;
    opacity: .72 !important;
}

.about-page-body .about-hero::after {
    background:
        radial-gradient(circle at 20% 42%, rgba(214, 178, 94, .12), transparent 28%),
        radial-gradient(circle at 88% 72%, rgba(44, 92, 82, .1), transparent 32%) !important;
    filter: blur(24px) !important;
    opacity: .42 !important;
}

.about-page-body .about-noise {
    opacity: .08 !important;
}

.about-page-body .about-hero-copy,
.about-page-body .about-section-heading,
.about-page-body .about-mission > div:first-child {
    background: linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .14), transparent) !important;
    border-radius: 28px !important;
    padding: clamp(4px, 1.2vw, 18px) !important;
}

.about-page-body .about-hero-copy {
    max-width: 620px !important;
}

.about-page-body .gold-kicker,
.about-page-body .about-feature-card span,
.about-page-body .about-timeline span,
.about-page-body .about-visual-card span {
    background: rgba(214, 178, 94, .1) !important;
    border: 1px solid rgba(214, 178, 94, .22) !important;
    border-radius: 999px !important;
    color: var(--about-gold) !important;
    display: inline-flex !important;
    font-size: clamp(11px, .8vw, 12px) !important;
    font-weight: 850 !important;
    letter-spacing: 1.25px !important;
    line-height: 1 !important;
    padding: 8px 12px !important;
    text-transform: uppercase !important;
}

.about-page-body .about-hero h1 {
    color: var(--about-text) !important;
    font-size: clamp(42px, 6vw, 88px) !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    line-height: .95 !important;
    margin: 18px 0 22px !important;
    max-width: 8.5ch !important;
    text-shadow: none !important;
}

.about-page-body .about-section-heading h2,
.about-page-body .about-mission h2 {
    color: var(--about-text) !important;
    font-size: clamp(32px, 4vw, 58px) !important;
    font-weight: 880 !important;
    letter-spacing: 0 !important;
    line-height: 1.02 !important;
    margin: 14px 0 18px !important;
    max-width: 10.5ch !important;
    text-shadow: none !important;
}

.about-page-body .about-feature-card h3,
.about-page-body .about-value-grid h3,
.about-page-body .about-timeline h3,
.about-page-body .about-visual-card h2,
.about-page-body .about-stats strong {
    color: var(--about-text) !important;
    font-size: clamp(22px, 1.9vw, 28px) !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.16 !important;
    text-shadow: none !important;
}

.about-page-body .about-stats strong {
    font-size: clamp(28px, 3vw, 44px) !important;
}

.about-page-body .about-hero p,
.about-page-body .about-section-heading p,
.about-page-body .about-feature-card p,
.about-page-body .about-value-grid p,
.about-page-body .about-timeline p,
.about-page-body .about-mission p,
.about-page-body .about-visual-card p {
    color: var(--about-text-secondary) !important;
    font-size: clamp(16px, 1.15vw, 18px) !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.72 !important;
    max-width: 68ch !important;
    text-shadow: none !important;
}

.about-page-body .about-stats p,
.about-page-body .site-footer p,
.about-page-body .site-footer a,
.about-page-body .footer-bottom {
    color: var(--about-text-secondary) !important;
}

.about-page-body .about-section,
.about-page-body .about-stats {
    margin-bottom: clamp(72px, 9vw, 120px) !important;
}

.about-page-body .about-section-heading {
    margin-bottom: clamp(28px, 4vw, 48px) !important;
    max-width: 820px !important;
}

.about-page-body .about-visual-card,
.about-page-body .about-stats article,
.about-page-body .about-feature-card,
.about-page-body .about-mission,
.about-page-body .about-timeline article,
.about-page-body .about-value-grid article {
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .012)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(214, 178, 94, .12), rgba(255, 255, 255, .035)) border-box,
        var(--about-surface) !important;
    border: 1px solid transparent !important;
    border-radius: 28px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35) !important;
}

.about-page-body .about-visual-card:hover,
.about-page-body .about-stats article:hover,
.about-page-body .about-feature-card:hover,
.about-page-body .about-timeline article:hover,
.about-page-body .about-value-grid article:hover {
    box-shadow: 0 18px 54px rgba(0, 0, 0, .42), 0 0 0 1px rgba(214, 178, 94, .18) !important;
    transform: translateY(-3px) !important;
}

.about-page-body .about-visual-card {
    min-height: 340px !important;
    padding: clamp(24px, 3vw, 38px) !important;
}

.about-page-body .about-feature-card {
    min-height: 300px !important;
    padding: clamp(22px, 2.6vw, 32px) !important;
}

.about-page-body .about-value-grid article,
.about-page-body .about-stats article,
.about-page-body .about-timeline article {
    padding: clamp(20px, 2.2vw, 28px) !important;
}

.about-page-body .about-feature-icon {
    background:
        radial-gradient(circle at 34% 22%, rgba(255, 255, 255, .2), transparent 32%),
        linear-gradient(135deg, rgba(214, 178, 94, .22), rgba(214, 178, 94, .08)) !important;
    border: 1px solid rgba(214, 178, 94, .22) !important;
    color: #ffe59a !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .32) !important;
}

.about-page-body .about-mission {
    gap: clamp(28px, 5vw, 74px) !important;
    padding: clamp(28px, 5vw, 62px) !important;
}

.about-page-body .about-hero-actions a,
.about-page-body .about-primary-cta,
.about-page-body .about-secondary-cta {
    border-radius: 999px !important;
    min-height: 52px !important;
    padding: 0 22px !important;
}

.about-page-body .site-footer {
    background:
        linear-gradient(90deg, transparent, rgba(214, 178, 94, .22), transparent) top center / min(1180px, calc(100% - 48px)) 1px no-repeat,
        linear-gradient(180deg, #0a0a0a, #101010) !important;
    box-shadow: none !important;
}

.about-page-body .site-footer::before {
    opacity: .14 !important;
}

.about-page-body .site-footer::after {
    opacity: 0 !important;
}

.about-page-body .site-footer h2,
.about-page-body .footer-links h2 {
    color: #ffffff !important;
}

.about-page-body .footer-newsletter div {
    background: rgba(255, 255, 255, .045) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
}

@media (max-width: 980px) {
    .about-page-body .about-hero {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        padding-block: 88px !important;
    }

    .about-page-body .about-hero-copy,
    .about-page-body .about-section-heading {
        text-align: center !important;
    }

    .about-page-body .about-hero h1,
    .about-page-body .about-section-heading h2 {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 640px) {
    .about-page-body .about-main {
        padding-inline: 16px !important;
    }

    .about-page-body .about-hero {
        padding-block: 72px !important;
    }

    .about-page-body .about-hero h1 {
        font-size: clamp(36px, 11vw, 52px) !important;
        max-width: 10ch !important;
    }

    .about-page-body .about-section-heading h2,
    .about-page-body .about-mission h2 {
        font-size: clamp(30px, 9vw, 42px) !important;
        max-width: 11ch !important;
    }

    .about-page-body .about-feature-card h3,
    .about-page-body .about-value-grid h3,
    .about-page-body .about-timeline h3,
    .about-page-body .about-visual-card h2 {
        font-size: 22px !important;
    }

    .about-page-body .about-hero p,
    .about-page-body .about-section-heading p,
    .about-page-body .about-feature-card p,
    .about-page-body .about-value-grid p,
    .about-page-body .about-timeline p,
    .about-page-body .about-mission p,
    .about-page-body .about-visual-card p {
        font-size: 16px !important;
        line-height: 1.65 !important;
    }

    .about-page-body .about-section,
    .about-page-body .about-stats {
        margin-bottom: 72px !important;
    }

    .about-page-body .about-visual-card,
    .about-page-body .about-feature-card,
    .about-page-body .about-mission,
    .about-page-body .about-timeline article,
    .about-page-body .about-value-grid article,
    .about-page-body .about-stats article {
        border-radius: 24px !important;
        padding: 20px !important;
    }
}

/* About hero unmasking refinement */
.about-page-body .about-main {
    overflow: visible !important;
}

.about-page-body .about-hero {
    background:
        radial-gradient(circle at 78% 28%, rgba(214, 178, 94, .09), transparent 28%),
        radial-gradient(circle at 10% 72%, rgba(52, 93, 82, .08), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .015), transparent 42%) !important;
    border-radius: 0 !important;
    min-height: 78vh !important;
    overflow: visible !important;
    padding-block: clamp(72px, 8vw, 118px) clamp(64px, 7vw, 104px) !important;
}

.about-page-body .about-hero::before {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .18), transparent 54%),
        radial-gradient(circle at 86% 36%, rgba(214, 178, 94, .1), transparent 34%) !important;
    filter: blur(52px) !important;
    opacity: .55 !important;
}

.about-page-body .about-hero::after {
    filter: blur(58px) !important;
    opacity: .28 !important;
}

.about-page-body .about-noise {
    mask-image: none !important;
    opacity: .035 !important;
}

.about-page-body .about-hero-copy {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
}

.about-page-body .about-hero h1 {
    color: #ffffff !important;
    line-height: 1 !important;
    margin-bottom: 24px !important;
    max-width: 9.5ch !important;
    overflow: visible !important;
    padding-bottom: .08em !important;
    text-shadow: 0 18px 70px rgba(0, 0, 0, .72) !important;
}

.about-page-body .about-hero p {
    color: rgba(255, 255, 255, .78) !important;
    max-width: 640px !important;
}

@media (max-width: 640px) {
    .about-page-body .about-hero {
        min-height: auto !important;
        padding-block: 58px 64px !important;
    }

    .about-page-body .about-hero h1 {
        line-height: 1.03 !important;
        max-width: 11ch !important;
    }
}

/* Remove stray edge widgets that can appear over cinematic pages */
.home-body > :not(.site-header):not(.menu-overlay):not(main):not(.site-footer):not(script):not(style):not(.clip-modal),
.about-page-body > :not(.site-header):not(.menu-overlay):not(main):not(.site-footer):not(script):not(style):not(.clip-modal) {
    display: none !important;
}

.home-body .lux-hero > button:not(.hero-dots button),
.about-page-body .about-hero > button {
    display: none !important;
}

/* Homepage hero without side feature card */
.home-body .hero-layout {
    grid-template-columns: minmax(0, 1fr) !important;
}

.home-body .hero-content {
    max-width: min(820px, calc(100vw - 48px)) !important;
}

.home-body .hero-content h2 {
    color: #ffffff !important;
    font-family: Poppins, Inter, Arial, sans-serif !important;
    font-size: clamp(48px, 7vw, 112px) !important;
    font-weight: 950 !important;
    letter-spacing: 0 !important;
    line-height: .9 !important;
    margin: 0 0 22px !important;
    max-width: 10.5ch !important;
    text-shadow: 0 32px 100px rgba(0, 0, 0, .78) !important;
}

.home-body .hero-feature-card {
    display: none !important;
}

.home-body .hero-meta {
    display: none !important;
}

@media (max-width: 760px) {
    .home-body .hero-content h2 {
        font-size: clamp(38px, 12vw, 58px) !important;
        max-width: 11ch !important;
    }
}

/* About top section aligned with premium Contact page hero */
.about-page-body .about-main {
    max-width: 1240px !important;
    padding: clamp(92px, 9vw, 128px) 24px 80px !important;
}

.about-page-body .about-hero {
    display: grid !important;
    gap: 22px !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 0 0 clamp(42px, 6vw, 72px) !important;
    text-align: center !important;
}

.about-page-body .about-hero-copy {
    backdrop-filter: blur(22px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(145%) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .025)) padding-box,
        linear-gradient(135deg, rgba(245, 210, 122, .26), rgba(255, 255, 255, .08), rgba(30, 230, 183, .12)) border-box,
        rgba(9, 12, 18, .88) !important;
    border: 1px solid transparent !important;
    border-radius: 32px !important;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .1) !important;
    isolation: isolate !important;
    margin: 0 auto !important;
    max-width: 100% !important;
    overflow: hidden !important;
    padding: clamp(42px, 7vw, 82px) clamp(22px, 6vw, 84px) !important;
    position: relative !important;
    width: 100% !important;
}

.about-page-body .about-hero-copy::before {
    background:
        radial-gradient(circle at 18% 20%, rgba(30, 230, 183, .12), transparent 28%),
        radial-gradient(circle at 82% 8%, rgba(245, 210, 122, .16), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .1)) !important;
    content: "" !important;
    inset: 0 !important;
    opacity: .72 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: 0 !important;
}

.about-page-body .about-hero-copy > * {
    position: relative !important;
    z-index: 1 !important;
}

.about-page-body .about-hero .gold-kicker {
    margin-bottom: 22px !important;
}

.about-page-body .about-hero h1 {
    font-size: clamp(42px, 6.6vw, 86px) !important;
    line-height: .96 !important;
    margin: 0 auto 22px !important;
    max-width: 13ch !important;
    padding-bottom: 0 !important;
    text-shadow: 0 28px 86px rgba(0, 0, 0, .68) !important;
}

.about-page-body .about-hero p {
    color: rgba(246, 241, 230, .76) !important;
    font-size: clamp(16px, 1.4vw, 20px) !important;
    line-height: 1.7 !important;
    margin: 0 auto !important;
    max-width: 720px !important;
}

.about-page-body .about-hero p::after {
    background: linear-gradient(90deg, transparent, #d4af37, transparent) !important;
    content: "" !important;
    display: block !important;
    height: 1px !important;
    margin: 26px auto 0 !important;
    opacity: .7 !important;
    width: min(280px, 70%) !important;
}

.about-page-body .about-hero-actions {
    justify-content: center !important;
    margin-top: 28px !important;
}

.about-page-body .about-visual-card {
    margin: 0 auto !important;
    max-width: 760px !important;
    min-height: 0 !important;
    padding: clamp(24px, 3vw, 34px) !important;
    text-align: left !important;
    width: 100% !important;
}

@media (max-width: 900px) {
    .about-page-body .about-main {
        padding-inline: 18px !important;
    }

    .about-page-body .about-hero,
    .about-page-body .about-hero-copy {
        text-align: left !important;
    }

    .about-page-body .about-hero h1,
    .about-page-body .about-hero p {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .about-page-body .about-hero-actions {
        justify-content: flex-start !important;
    }
}

@media (max-width: 640px) {
    .about-page-body .about-main {
        padding-top: 82px !important;
    }

    .about-page-body .about-hero-copy {
        border-radius: 26px !important;
        padding: 34px 20px !important;
    }

    .about-page-body .about-hero h1 {
        font-size: clamp(36px, 11vw, 52px) !important;
        max-width: 11ch !important;
    }
}

/* MovieMeter About page complete premium rebuild */
.about-page-body {
    --about-bg: #050505;
    --about-surface: #111111;
    --about-card: rgba(18, 18, 18, .78);
    --about-card-soft: rgba(22, 22, 22, .64);
    --about-line: rgba(255, 255, 255, .06);
    --about-line-strong: rgba(255, 255, 255, .1);
    --about-text: #ffffff;
    --about-secondary: rgba(255, 255, 255, .72);
    --about-muted: rgba(255, 255, 255, .52);
    --about-gold: #d6b25e;
    --about-emerald: rgba(212, 175, 55, .1);
    background: var(--cinema-bg) !important;
    color: var(--cinema-cream) !important;
}

.about-page-body .about-main {
    background: transparent !important;
    margin: 0 auto !important;
    max-width: none !important;
    overflow: visible !important;
    padding: 0 !important;
}

.about-page-body .about-page-shell {
    margin: 0 auto !important;
    max-width: 100% !important;
    padding: clamp(92px, 9vw, 132px) clamp(20px, 5vw, 80px) 96px !important;
    position: relative !important;
}

.about-page-body .about-page-shell::before {
    background:
        linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .014) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "" !important;
    inset: 0 !important;
    opacity: .18 !important;
    pointer-events: none !important;
    position: absolute !important;
}

.about-page-body .about-page-shell > * {
    position: relative !important;
    z-index: 1 !important;
}

.about-page-body .about-hero {
    align-items: start !important;
    background:
        radial-gradient(circle at 78% 26%, rgba(214, 178, 94, .12), transparent 30%),
        radial-gradient(circle at 22% 76%, rgba(212, 175, 55, .07), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012) 48%, rgba(255, 255, 255, .035)),
        #080808 !important;
    border: 1px solid rgba(255, 255, 255, .07) !important;
    border-radius: 40px !important;
    box-shadow: 0 34px 120px rgba(0, 0, 0, .58), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    display: grid !important;
    gap: clamp(34px, 5vw, 76px) !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr) !important;
    isolation: isolate !important;
    margin-bottom: clamp(26px, 4vw, 46px) !important;
    min-height: clamp(620px, 78vh, 820px) !important;
    overflow: hidden !important;
    padding: clamp(42px, 6vw, 86px) !important;
    text-align: left !important;
}

.about-page-body .about-hero::before,
.about-page-body .about-hero::after {
    border-radius: 999px !important;
    content: "" !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -1 !important;
}

.about-page-body .about-hero::before {
    background: rgba(214, 178, 94, .12) !important;
    filter: blur(76px) !important;
    height: 360px !important;
    right: 5% !important;
    top: 8% !important;
    width: 360px !important;
}

.about-page-body .about-hero::after {
    background: rgba(212, 175, 55, .1) !important;
    bottom: -90px !important;
    filter: blur(90px) !important;
    height: 420px !important;
    left: -120px !important;
    width: 420px !important;
}

.about-page-body .about-noise {
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .014) 1px, transparent 1px) !important;
    background-size: 54px 54px !important;
    inset: 0 !important;
    mask-image: none !important;
    opacity: .22 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -1 !important;
}

.about-page-body .about-hero-copy {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    max-width: 680px !important;
    overflow: visible !important;
    padding: 0 !important;
    text-align: left !important;
}

.about-page-body .gold-kicker,
.about-page-body .about-feature-card span,
.about-page-body .about-timeline span,
.about-page-body .about-visual-card span {
    align-items: center !important;
    background: rgba(214, 178, 94, .1) !important;
    border: 1px solid rgba(214, 178, 94, .24) !important;
    border-radius: 999px !important;
    color: var(--about-gold) !important;
    display: inline-flex !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    letter-spacing: 1.35px !important;
    line-height: 1 !important;
    margin: 0 0 22px !important;
    padding: 9px 13px !important;
    text-transform: uppercase !important;
}

.about-page-body .about-hero h1 {
    color: var(--about-text) !important;
    font-family: Poppins, Inter, Arial, sans-serif !important;
    font-size: clamp(52px, 6vw, 96px) !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    line-height: .95 !important;
    margin: 0 0 24px !important;
    max-width: 11ch !important;
    padding: 0 !important;
    text-shadow: 0 34px 90px rgba(0, 0, 0, .72) !important;
}

.about-page-body .about-hero p,
.about-page-body .about-section-heading p,
.about-page-body .about-feature-card p,
.about-page-body .about-mission p,
.about-page-body .about-mission blockquote,
.about-page-body .about-timeline p,
.about-page-body .about-value-grid p,
.about-page-body .about-visual-card p {
    color: var(--about-secondary) !important;
    font-size: clamp(16px, 1.15vw, 18px) !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.72 !important;
    margin: 0 !important;
    max-width: 66ch !important;
    text-shadow: none !important;
}

.about-page-body .about-hero p::after {
    display: none !important;
}

.about-page-body .about-hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    margin-top: 34px !important;
}

.about-page-body .about-hero-actions a {
    border-radius: 999px !important;
    min-height: 54px !important;
    padding: 0 24px !important;
}

.about-page-body .about-secondary-button {
    background: rgba(255, 255, 255, .055) !important;
    border: 1px solid rgba(255, 255, 255, .11) !important;
    color: #ffffff !important;
}

.about-page-body .about-visual-card {
    align-self: center !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(214, 178, 94, .2), rgba(255, 255, 255, .04)) border-box,
        rgba(18, 18, 18, .78) !important;
    border: 1px solid transparent !important;
    border-radius: 32px !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .46), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    display: grid !important;
    gap: 22px !important;
    margin: 0 !important;
    max-width: none !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 20px !important;
    text-align: left !important;
    width: 100% !important;
}

.about-page-body .about-visual-poster {
    align-content: end !important;
    aspect-ratio: 16 / 10 !important;
    background:
        linear-gradient(180deg, transparent, rgba(0, 0, 0, .72)),
        radial-gradient(circle at 68% 24%, rgba(214, 178, 94, .2), transparent 34%),
        linear-gradient(135deg, #1c1c1c, #090909) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 24px !important;
    display: grid !important;
    overflow: hidden !important;
    padding: 24px !important;
    position: relative !important;
}

.about-page-body .about-visual-poster::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 34px 34px;
    content: "" !important;
    inset: 0 !important;
    opacity: .2 !important;
    position: absolute !important;
}

.about-page-body .about-visual-poster > * {
    position: relative !important;
}

.about-page-body .about-visual-poster strong {
    color: #ffffff !important;
    display: block !important;
    font-size: clamp(42px, 5vw, 68px) !important;
    font-weight: 900 !important;
    line-height: .9 !important;
}

.about-page-body .about-visual-poster small {
    color: var(--about-secondary) !important;
    font-size: 13px !important;
    font-weight: 750 !important;
    margin-top: 8px !important;
    text-transform: uppercase !important;
}

.about-page-body .about-visual-copy {
    padding: 2px 4px 6px !important;
}

.about-page-body .about-visual-card h2 {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    margin: 0 0 12px !important;
}

.about-page-body .about-visual-bars {
    display: grid !important;
    gap: 8px !important;
    margin-top: 22px !important;
}

.about-page-body .about-visual-bars i {
    background: linear-gradient(90deg, rgba(214, 178, 94, .74), rgba(255, 255, 255, .1)) !important;
    border-radius: 999px !important;
    display: block !important;
    height: 5px !important;
}

.about-page-body .about-visual-bars i:nth-child(2) {
    opacity: .62 !important;
    width: 78% !important;
}

.about-page-body .about-visual-bars i:nth-child(3) {
    opacity: .4 !important;
    width: 58% !important;
}

.about-page-body .about-stats {
    display: grid !important;
    gap: 16px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    margin: 0 0 clamp(84px, 9vw, 132px) !important;
}

.about-page-body .about-stats article,
.about-page-body .about-feature-card,
.about-page-body .about-mission,
.about-page-body .about-timeline article,
.about-page-body .about-value-grid article {
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    background: var(--about-card) !important;
    border: 1px solid var(--about-line) !important;
    border-radius: 32px !important;
    box-shadow: 0 10px 50px rgba(0, 0, 0, .35) !important;
    overflow: hidden !important;
    position: relative !important;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease !important;
}

.about-page-body .about-stats article:hover,
.about-page-body .about-feature-card:hover,
.about-page-body .about-timeline article:hover,
.about-page-body .about-value-grid article:hover {
    border-color: rgba(214, 178, 94, .26) !important;
    box-shadow: 0 18px 64px rgba(0, 0, 0, .44), 0 0 0 1px rgba(214, 178, 94, .08) !important;
    transform: translateY(-4px) !important;
}

.about-page-body .about-stats article {
    padding: 26px !important;
}

.about-page-body .about-stats strong {
    color: #ffffff !important;
    display: block !important;
    font-size: clamp(30px, 3.4vw, 50px) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin-bottom: 10px !important;
}

.about-page-body .about-stats span {
    color: var(--about-muted) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.about-page-body .about-section {
    margin: 0 0 clamp(92px, 10vw, 150px) !important;
}

.about-page-body .about-section-heading {
    background: transparent !important;
    margin: 0 0 clamp(28px, 4vw, 48px) !important;
    max-width: 780px !important;
    padding: 0 !important;
    text-align: left !important;
}

.about-page-body .about-section-heading h2,
.about-page-body .about-mission h2 {
    color: #ffffff !important;
    font-size: clamp(32px, 4vw, 56px) !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
    line-height: 1.04 !important;
    margin: 0 !important;
    max-width: 12ch !important;
}

.about-page-body .about-feature-grid {
    display: grid !important;
    gap: 18px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.about-page-body .about-feature-card {
    min-height: 340px !important;
    padding: 30px !important;
}

.about-page-body .about-feature-icon {
    align-items: center !important;
    background: rgba(214, 178, 94, .12) !important;
    border: 1px solid rgba(214, 178, 94, .24) !important;
    border-radius: 18px !important;
    color: var(--about-gold) !important;
    display: inline-flex !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    height: 54px !important;
    justify-content: center !important;
    margin-bottom: 34px !important;
    width: 54px !important;
}

.about-page-body .about-feature-card h3,
.about-page-body .about-timeline h3,
.about-page-body .about-value-grid h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    margin: 0 0 12px !important;
}

.about-page-body .about-mission {
    align-items: center !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015)),
        rgba(17, 17, 17, .88) !important;
    display: grid !important;
    gap: clamp(30px, 6vw, 86px) !important;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) !important;
    padding: clamp(34px, 6vw, 76px) !important;
}

.about-page-body .about-mission > div:first-child {
    background: transparent !important;
    border-right: 1px solid rgba(214, 178, 94, .18) !important;
    border-radius: 0 !important;
    padding: 0 clamp(24px, 4vw, 58px) 0 0 !important;
}

.about-page-body .about-mission blockquote {
    border-left: 2px solid rgba(214, 178, 94, .52) !important;
    color: rgba(255, 255, 255, .86) !important;
    font-size: clamp(18px, 1.55vw, 23px) !important;
    font-weight: 650 !important;
    margin-top: 28px !important;
    padding-left: 20px !important;
}

.about-page-body .about-timeline {
    display: grid !important;
    gap: 16px !important;
    grid-template-columns: repeat(5, minmax(190px, 1fr)) !important;
    position: relative !important;
}

.about-page-body .about-timeline::before {
    background: linear-gradient(90deg, rgba(214, 178, 94, .48), rgba(255, 255, 255, .08)) !important;
    content: "" !important;
    height: 1px !important;
    left: 24px !important;
    position: absolute !important;
    right: 24px !important;
    top: 30px !important;
}

.about-page-body .about-timeline article {
    padding: 76px 22px 24px !important;
}

.about-page-body .about-timeline span {
    align-items: center !important;
    border-radius: 999px !important;
    height: 46px !important;
    justify-content: center !important;
    left: 22px !important;
    margin: 0 !important;
    position: absolute !important;
    top: 8px !important;
    width: 46px !important;
}

.about-page-body .about-value-grid {
    display: grid !important;
    gap: 16px !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.about-page-body .about-value-grid article {
    padding: 24px !important;
}

.about-page-body .about-value-grid article::before {
    background: var(--about-gold) !important;
    border-radius: 999px !important;
    content: "" !important;
    display: block !important;
    height: 7px !important;
    margin-bottom: 22px !important;
    opacity: .8 !important;
    width: 34px !important;
}

.about-page-body .site-footer {
    background:
        linear-gradient(90deg, transparent, rgba(214, 178, 94, .2), transparent) top center / min(1260px, calc(100% - 48px)) 1px no-repeat,
        linear-gradient(180deg, #0a0a0a, #101010) !important;
    border-top: 0 !important;
    box-shadow: none !important;
}

.about-page-body .site-footer::before {
    opacity: .1 !important;
}

.about-page-body .site-footer::after {
    display: none !important;
}

.about-page-body .footer-inner {
    gap: clamp(28px, 5vw, 78px) !important;
}

.about-page-body .footer-newsletter div {
    background: rgba(255, 255, 255, .055) !important;
    border: 1px solid rgba(255, 255, 255, .11) !important;
}

@media (max-width: 1100px) {
    .about-page-body .about-hero {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .about-page-body .about-visual-card {
        max-width: 760px !important;
    }

    .about-page-body .about-stats,
    .about-page-body .about-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .about-page-body .about-timeline,
    .about-page-body .about-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .about-page-body .about-timeline::before {
        display: none !important;
    }
}

@media (max-width: 760px) {
    .about-page-body .about-page-shell {
        padding: 82px 16px 72px !important;
    }

    .about-page-body .about-hero {
        border-radius: 28px !important;
        padding: 28px !important;
    }

    .about-page-body .about-hero h1 {
        font-size: clamp(40px, 12vw, 58px) !important;
        max-width: 10.5ch !important;
    }

    .about-page-body .about-hero-actions a {
        justify-content: center !important;
        width: 100% !important;
    }

    .about-page-body .about-stats,
    .about-page-body .about-feature-grid,
    .about-page-body .about-timeline,
    .about-page-body .about-value-grid,
    .about-page-body .about-mission {
        grid-template-columns: 1fr !important;
    }

    .about-page-body .about-mission > div:first-child {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(214, 178, 94, .18) !important;
        padding: 0 0 28px !important;
    }

    .about-page-body .about-section {
        margin-bottom: 76px !important;
    }
}

/* About visual card overlap fix */
.about-page-body .about-visual-card .about-visual-poster,
.about-page-body .about-visual-card .about-visual-copy,
.about-page-body .about-visual-card .about-visual-bars {
    bottom: auto !important;
    left: auto !important;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    z-index: 1 !important;
}

.about-page-body .about-visual-card .about-visual-poster {
    min-height: 230px !important;
}

.about-page-body .about-visual-card .about-visual-copy {
    display: block !important;
    padding: 4px 4px 8px !important;
}

.about-page-body .about-visual-card .about-visual-copy span {
    margin-bottom: 14px !important;
}

.about-page-body .about-visual-card .about-visual-copy h2 {
    font-size: clamp(22px, 2vw, 28px) !important;
    max-width: 16ch !important;
}

.about-page-body .about-visual-card .about-visual-copy p {
    max-width: 38ch !important;
}

/* Admin login premium layout cleanup */
.admin-login-body {
    align-items: center !important;
    background:
        radial-gradient(circle at 14% 18%, rgba(0, 180, 140, .11), transparent 30%),
        radial-gradient(circle at 88% 22%, rgba(214, 178, 94, .08), transparent 30%),
        linear-gradient(135deg, #050505 0%, #070909 52%, #050505 100%) !important;
    color: #ffffff !important;
    display: flex !important;
    min-height: 100vh !important;
    overflow-x: hidden !important;
    padding: clamp(22px, 4vw, 46px) !important;
}

.admin-login-bg::before {
    background:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .016) 1px, transparent 1px) !important;
    background-size: 72px 72px !important;
    opacity: .45 !important;
}

.admin-login-bg::after {
    background: linear-gradient(90deg, transparent, rgba(214, 178, 94, .22), transparent) !important;
    opacity: .55 !important;
}

.admin-login-shell {
    align-items: center !important;
    gap: clamp(34px, 6vw, 90px) !important;
    grid-template-columns: minmax(0, .98fr) minmax(360px, 460px) !important;
    max-width: 1320px !important;
}

.admin-login-hero {
    max-width: 640px !important;
}

.admin-login-brand {
    align-items: center !important;
    display: inline-flex !important;
    gap: 12px !important;
    margin-bottom: 34px !important;
}

.admin-login-brand .brand-icon,
.admin-login-brand .brand-logo-image {
    background: #0b0b0b !important;
    border: 1px solid rgba(214, 178, 94, .4) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .36) !important;
    flex: 0 0 48px !important;
    height: 48px !important;
    overflow: hidden !important;
    width: 48px !important;
}

.admin-login-brand .brand-icon img,
.admin-login-brand .brand-logo-image img {
    display: block !important;
    height: 100% !important;
    object-fit: cover !important;
    width: 100% !important;
}

.admin-login-brand .brand-text {
    color: #ffffff !important;
    display: inline-block !important;
    font-family: Poppins, Inter, Arial, sans-serif !important;
    font-size: clamp(20px, 2vw, 28px) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    max-width: none !important;
    min-width: 0 !important;
    text-shadow: none !important;
    white-space: nowrap !important;
}

.admin-login-badge {
    background: rgba(214, 178, 94, .1) !important;
    border: 1px solid rgba(214, 178, 94, .22) !important;
    color: #f4d982 !important;
    letter-spacing: 1.1px !important;
}

.admin-login-hero h1 {
    color: #ffffff !important;
    font-family: Poppins, Inter, Arial, sans-serif !important;
    font-size: clamp(46px, 5.2vw, 82px) !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    line-height: .98 !important;
    margin: 22px 0 !important;
    max-width: 10ch !important;
}

.admin-login-hero p,
.admin-login-card-head p {
    color: rgba(255, 255, 255, .7) !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
}

.admin-login-metrics {
    gap: 12px !important;
    margin-top: 30px !important;
}

.admin-login-metrics span {
    background: rgba(255, 255, 255, .055) !important;
    border: 1px solid rgba(255, 255, 255, .09) !important;
    border-radius: 16px !important;
    color: rgba(255, 255, 255, .82) !important;
    min-width: 110px !important;
    padding: 13px 16px !important;
}

.admin-login-card {
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .026)),
        rgba(18, 18, 18, .86) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 30px !important;
    box-shadow: 0 26px 86px rgba(0, 0, 0, .52), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    overflow: hidden !important;
    padding: clamp(28px, 3vw, 42px) !important;
}

.admin-login-card::before {
    background: linear-gradient(120deg, rgba(255, 255, 255, .12), transparent 42%) !important;
    opacity: .55 !important;
}

.admin-login-card-head {
    margin-bottom: 26px !important;
}

.admin-login-card-head h2 {
    color: #ffffff !important;
    font-size: clamp(30px, 3vw, 42px) !important;
    font-weight: 850 !important;
    line-height: 1.1 !important;
    margin: 16px 0 10px !important;
}

.admin-login-form {
    display: grid !important;
    gap: 12px !important;
}

.admin-login-form label {
    color: rgba(255, 255, 255, .78) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .8px !important;
}

.admin-login-form input {
    background: rgba(255, 255, 255, .065) !important;
    border: 1px solid rgba(255, 255, 255, .11) !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    min-height: 56px !important;
    width: 100% !important;
}

.admin-login-form .password-field {
    margin-bottom: 10px !important;
    position: relative !important;
    width: 100% !important;
}

.admin-login-form .password-field input {
    padding-right: 84px !important;
}

.admin-login-form .password-field button {
    align-items: center !important;
    background: rgba(214, 178, 94, .1) !important;
    border: 1px solid rgba(214, 178, 94, .18) !important;
    border-radius: 12px !important;
    color: #f4d982 !important;
    display: inline-flex !important;
    font-size: 14px !important;
    height: 38px !important;
    justify-content: center !important;
    padding: 0 14px !important;
    position: absolute !important;
    right: 9px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.admin-login-button {
    border-radius: 18px !important;
    min-height: 58px !important;
}

@media (max-width: 900px) {
    .admin-login-shell {
        grid-template-columns: 1fr !important;
    }

    .admin-login-hero {
        text-align: left !important;
    }

    .admin-login-hero h1 {
        font-size: clamp(40px, 10vw, 62px) !important;
    }
}

@media (max-width: 560px) {
    .admin-login-body {
        padding: 18px !important;
    }

    .admin-login-card {
        border-radius: 24px !important;
        padding: 24px !important;
    }

    .admin-login-metrics {
        display: none !important;
    }
}

/* Page hero title normalization */
.about-page-body .about-hero h1,
.about-page-body .about-hero h2 {
    color: #ffffff !important;
    font-family: "DM Sans", Poppins, Inter, system-ui, sans-serif !important;
    font-size: clamp(44px, 5.2vw, 88px) !important;
    font-weight: 600 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.04 !important;
    margin: 0 0 24px !important;
    max-width: min(20ch, 92vw) !important;
    padding: 0 !important;
    text-shadow: 0 34px 90px rgba(0, 0, 0, .72) !important;
}

.contact-page-body .contact-hero h1,
.contact-page-body .contact-hero h2,
.contact-page-body .static-hero h1,
.contact-page-body .static-hero h2 {
    color: #ffffff !important;
    font-family: "DM Sans", Poppins, Inter, system-ui, sans-serif !important;
    font-size: clamp(38px, 4.2vw, 72px) !important;
    font-weight: 600 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.05 !important;
    margin: 0 auto 22px !important;
    max-width: min(20ch, 720px) !important;
    text-shadow: 0 28px 86px rgba(0, 0, 0, .68) !important;
}

@media (max-width: 760px) {
    .about-page-body .about-hero h1,
    .about-page-body .about-hero h2 {
        font-size: clamp(36px, 10vw, 54px) !important;
        max-width: 100% !important;
    }
}

@media (max-width: 900px) {
    .contact-page-body .contact-hero h1,
    .contact-page-body .contact-hero h2,
    .contact-page-body .static-hero h1,
    .contact-page-body .static-hero h2 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Admin login brand alignment fix */
.admin-login-hero .admin-login-brand {
    display: flex !important;
    margin-bottom: 16px !important;
    width: fit-content !important;
}

.admin-login-hero .admin-login-brand .brand-text {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #ffffff !important;
    height: auto !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    width: auto !important;
}

.admin-login-hero > .admin-login-badge {
    display: inline-flex !important;
    margin-bottom: 30px !important;
}

/* Complete OTT homepage hero rebuild */
.home-body .ott-hero {
    background: #050505 !important;
    height: 100svh !important;
    min-height: 720px !important;
    overflow: hidden !important;
    position: relative !important;
    isolation: isolate !important;
}

.home-body .ott-hero-slide {
    inset: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    transform: scale(1.02) !important;
    transition: opacity 900ms ease, transform 1400ms cubic-bezier(.2, .8, .2, 1) !important;
}

.home-body .ott-hero-slide.is-active {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: scale(1) !important;
    z-index: 2 !important;
}

.home-body .ott-hero-backdrop,
.home-body .ott-hero-shade {
    inset: 0 !important;
    position: absolute !important;
}

.home-body .ott-hero-backdrop img,
.home-body .ott-hero-backdrop video,
.home-body .ott-hero-backdrop iframe,
.home-body .ott-hero-fallback {
    border: 0 !important;
    display: block !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: .62 !important;
    transform: scale(1.04) !important;
    width: 100% !important;
}

.home-body .ott-hero-fallback,
.home-body .ott-hero-poster-fallback {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01)),
        url('../images/movie-showcase-bg.png?v=2') center / cover no-repeat !important;
}

.home-body .ott-hero-shade {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .62) 40%, rgba(0, 0, 0, .35) 100%),
        radial-gradient(circle at 76% 28%, rgba(214, 178, 94, .13), transparent 28%),
        radial-gradient(circle at 38% 86%, rgba(0, 0, 0, .72), transparent 44%),
        linear-gradient(180deg, rgba(5, 5, 5, .12), rgba(5, 5, 5, .22) 48%, #050505 100%) !important;
    z-index: 1 !important;
}

.home-body .ott-hero::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .014) 1px, transparent 1px);
    background-size: 60px 60px;
    content: "" !important;
    inset: 0 !important;
    opacity: .16 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: 4 !important;
}

.home-body .ott-hero-inner {
    align-items: center !important;
    display: grid !important;
    gap: clamp(34px, 5vw, 86px) !important;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 430px) !important;
    height: 100% !important;
    margin: 0 auto !important;
    max-width: 1480px !important;
    padding: clamp(92px, 10vw, 132px) clamp(22px, 5vw, 78px) clamp(78px, 7vw, 108px) !important;
    position: relative !important;
    z-index: 5 !important;
}

.home-body .ott-hero-copy {
    max-width: 760px !important;
}

.home-body .ott-hero-eyebrow {
    background: rgba(214, 178, 94, .13) !important;
    border: 1px solid rgba(214, 178, 94, .3) !important;
    border-radius: 999px !important;
    color: #f4d982 !important;
    display: inline-flex !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 1.45px !important;
    margin-bottom: 22px !important;
    padding: 8px 12px !important;
    text-transform: uppercase !important;
}

.home-body .ott-hero-copy h2 {
    color: #ffffff !important;
    font-family: Poppins, Inter, Arial, sans-serif !important;
    font-size: clamp(28px, 3.2vw, 46px) !important;
    font-weight: 760 !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
    margin: 0 0 20px !important;
    max-width: min(640px, 92vw) !important;
    overflow-wrap: anywhere !important;
    text-shadow: 0 34px 100px rgba(0, 0, 0, .78) !important;
    text-wrap: balance !important;
    word-break: normal !important;
}

.home-body .ott-hero-copy p {
    color: rgba(255, 255, 255, .74) !important;
    font-size: clamp(16px, 1.25vw, 20px) !important;
    line-height: 1.68 !important;
    margin: 0 !important;
    max-width: 620px !important;
}

.home-body .ott-hero-meta {
    color: rgba(255, 255, 255, .78) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    gap: 10px !important;
    letter-spacing: .4px !important;
    margin-top: 22px !important;
}

.home-body .ott-hero-meta span {
    align-items: center !important;
    display: inline-flex !important;
}

.home-body .ott-hero-meta span:not(:last-child)::after {
    color: #d6b25e !important;
    content: "•" !important;
    margin-left: 10px !important;
}

.home-body .ott-hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-top: 32px !important;
}

.home-body .ott-hero-primary,
.home-body .ott-hero-secondary {
    align-items: center !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    font-weight: 900 !important;
    justify-content: center !important;
    min-height: 56px !important;
    padding: 0 25px !important;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease !important;
}

.home-body .ott-hero-primary {
    background: linear-gradient(135deg, #f4d982, #d6b25e) !important;
    box-shadow: 0 20px 50px rgba(214, 178, 94, .26) !important;
    color: #070707 !important;
}

.home-body .ott-hero-secondary {
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    color: #ffffff !important;
}

.home-body .ott-hero-primary:hover,
.home-body .ott-hero-secondary:hover {
    transform: translateY(-3px) !important;
}

.home-body .ott-hero-panel {
    backdrop-filter: blur(20px) saturate(135%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(135%) !important;
    background: rgba(15, 15, 15, .72) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 32px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .08) !important;
    overflow: hidden !important;
    padding: 16px !important;
    transform: translate3d(0, 0, 0) !important;
    transition: transform .45s ease, box-shadow .45s ease !important;
}

.home-body .ott-hero-panel:hover {
    box-shadow: 0 38px 100px rgba(0, 0, 0, .58), 0 0 0 1px rgba(214, 178, 94, .16) !important;
    transform: translateY(-6px) !important;
}

.home-body .ott-hero-poster {
    aspect-ratio: 16 / 10 !important;
    background: #111111 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    position: relative !important;
}

.home-body .ott-hero-poster img,
.home-body .ott-hero-poster-fallback {
    display: block !important;
    height: 100% !important;
    object-fit: cover !important;
    width: 100% !important;
}

.home-body .ott-hero-poster::after {
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .64)) !important;
    content: "" !important;
    inset: 0 !important;
    position: absolute !important;
}

.home-body .ott-hero-poster > span {
    background: rgba(0, 0, 0, .62) !important;
    border: 1px solid rgba(214, 178, 94, .34) !important;
    border-radius: 999px !important;
    color: #f4d982 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    padding: 7px 10px !important;
    position: absolute !important;
    right: 14px !important;
    text-transform: uppercase !important;
    top: 14px !important;
    z-index: 2 !important;
}

.home-body .ott-hero-panel-info {
    display: grid !important;
    gap: 10px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin: 14px 0 !important;
}

.home-body .ott-hero-panel-info div {
    background: rgba(255, 255, 255, .055) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 18px !important;
    padding: 12px !important;
}

.home-body .ott-hero-panel-info strong {
    color: #ffffff !important;
    display: block !important;
    font-size: 22px !important;
    line-height: 1 !important;
}

.home-body .ott-hero-panel-info span,
.home-body .ott-hero-panel p {
    color: rgba(255, 255, 255, .62) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.home-body .ott-hero-panel h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    line-height: 1.15 !important;
    margin: 4px 2px 8px !important;
}

.home-body .ott-hero-panel p {
    margin: 0 2px 4px !important;
}

.home-body .ott-hero-dots {
    align-items: center !important;
    backdrop-filter: blur(14px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
    background: rgba(5, 5, 5, .42) !important;
    border: 1px solid rgba(255, 255, 255, .1) !important;
    border-radius: 999px !important;
    bottom: max(28px, calc(16px + env(safe-area-inset-bottom, 0px))) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35) !important;
    display: flex !important;
    gap: 4px !important;
    left: 50% !important;
    padding: 4px 8px !important;
    pointer-events: auto !important;
    position: absolute !important;
    transform: translateX(-50%) !important;
    z-index: 25 !important;
}

.home-body .ott-hero-dots button {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    flex-shrink: 0 !important;
    justify-content: center !important;
    min-height: 44px !important;
    min-width: 44px !important;
    padding: 0 !important;
    position: relative !important;
    transition: opacity .25s ease !important;
}

.home-body .ott-hero-dots button::after {
    background: rgba(255, 255, 255, .28) !important;
    border-radius: 999px !important;
    content: "" !important;
    display: block !important;
    height: 8px !important;
    transition: width .3s ease, background .3s ease, box-shadow .3s ease !important;
    width: 8px !important;
}

.home-body .ott-hero-dots button.is-active::after {
    background: #d6b25e !important;
    box-shadow: 0 0 18px rgba(214, 178, 94, .48) !important;
    width: 36px !important;
}

@media (max-width: 980px) {
    .home-body .ott-hero {
        height: auto !important;
        min-height: 760px !important;
    }

    .home-body .ott-hero-inner {
        grid-template-columns: 1fr !important;
        padding-top: 110px !important;
    }

    .home-body .ott-hero-panel {
        max-width: 520px !important;
    }
}

@media (max-width: 640px) {
    .home-body .ott-hero {
        min-height: 720px !important;
    }

    .home-body .ott-hero-inner {
        gap: 28px !important;
        padding: 94px 18px 82px !important;
        text-align: center !important;
    }

    .home-body .ott-hero-copy h2 {
        font-size: clamp(26px, 6.5vw, 36px) !important;
        margin-inline: auto !important;
        max-width: min(560px, 94vw) !important;
    }

    .home-body .ott-hero-copy p {
        font-size: 15px !important;
        margin-inline: auto !important;
    }

    .home-body .ott-hero-meta,
    .home-body .ott-hero-actions {
        justify-content: center !important;
    }

    .home-body .ott-hero-actions a {
        width: 100% !important;
    }

    .home-body .ott-hero-panel {
        display: none !important;
    }
}

/* Global premium typography system audit */
:root {
    --fs-hero: clamp(42px, 5vw, 82px);
    --fs-section: clamp(28px, 3vw, 54px);
    --fs-card: clamp(20px, 1.65vw, 28px);
    --fs-body: clamp(16px, 1vw, 18px);
    --fs-label: clamp(11px, .72vw, 13px);
    --lh-tight: .95;
    --lh-heading: 1;
    --lh-card: 1.15;
    --lh-normal: 1.7;
    --fw-hero: 800;
    --fw-section: 750;
    --fw-card: 700;
    --fw-medium: 600;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, .72);
    --text-muted: rgba(255, 255, 255, .52);
    --accent-gold: #d6b25e;
}

body {
    font-size: var(--fs-body) !important;
    line-height: var(--lh-normal) !important;
}

.hero-content h1,
.hero-content h2,
.ott-hero-copy h2,
.admin-login-hero h1,
.live-login-body h1,
.auth-entry-body h1,
.signup-auth-body h1,
.cinema-auth-copy h1 {
    color: var(--text-primary) !important;
    font-size: var(--fs-hero) !important;
    font-weight: var(--fw-hero) !important;
    letter-spacing: 0 !important;
    line-height: var(--lh-tight) !important;
    margin-bottom: clamp(22px, 3vw, 34px) !important;
    max-width: 8.5ch !important;
    text-wrap: balance !important;
}

h2,
.section-heading h2,
.about-section-heading h2,
.contact-form-shell h2,
.contact-panel h2,
.about-mission h2,
.dashboard-section h2,
.static-section > h2 {
    color: var(--text-primary) !important;
    font-size: var(--fs-section) !important;
    font-weight: var(--fw-section) !important;
    letter-spacing: 0 !important;
    line-height: var(--lh-heading) !important;
    margin-bottom: clamp(18px, 2.4vw, 30px) !important;
    max-width: 12ch !important;
    text-wrap: balance !important;
}

/* Member dashboard / wallet: override global marketing h2 tokens and tighten UI type */
body.dashboard-body .dashboard-hero h1,
body.wallet-page-body .dashboard-hero h1,
body.withdrawals-page .dashboard-hero h1 {
    font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: clamp(22px, 2.1vw, 28px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.16 !important;
    margin-bottom: 10px !important;
    max-width: none !important;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.55) !important;
}

body.dashboard-body .dashboard-hero p,
body.wallet-page-body .dashboard-hero p,
body.withdrawals-page .dashboard-hero p {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
}

body.dashboard-body .gold-kicker,
body.wallet-page-body .gold-kicker,
body.withdrawals-page .gold-kicker {
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
}

body.dashboard-body .dashboard-panel-heading h2,
body.dashboard-body .premium-chart-card .dashboard-panel-heading h2,
body.wallet-page-body .dashboard-panel-heading h2,
body.wallet-page-body .premium-chart-card .dashboard-panel-heading h2,
body.withdrawals-page .dashboard-panel-heading h2,
body.withdrawals-page .wd-panel__head h2,
body.withdrawals-page .wd-rules .dashboard-panel-heading h2 {
    color: #f3e7c2 !important;
    font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: clamp(16px, 1.15vw, 18px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
    line-height: 1.22 !important;
    margin: 0 !important;
    max-width: none !important;
    text-wrap: balance !important;
}

body.dashboard-body .premium-orbit-card h2,
body.wallet-page-body .premium-orbit-card h2 {
    color: #f8e7a7 !important;
    font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: clamp(16px, 1.25vw, 20px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
    line-height: 1.2 !important;
    margin: 4px 0 6px !important;
    max-width: none !important;
}

body.dashboard-body .premium-orbit-card p,
body.wallet-page-body .premium-orbit-card p {
    font-size: 13px !important;
    line-height: 1.55 !important;
}

body.dashboard-body .profile-card h2,
body.wallet-page-body .profile-card h2,
body.withdrawals-page .profile-card h2 {
    font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: clamp(16px, 1.15vw, 19px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    max-width: none !important;
}

body.dashboard-body .dashboard-stats .stat-card strong,
body.wallet-page-body .dashboard-stats .stat-card strong,
body.withdrawals-page .dashboard-stats .stat-card strong {
    font-size: clamp(17px, 1.5vw, 22px) !important;
}

body.dashboard-body .today-review-summary strong,
body.wallet-page-body .today-review-summary strong {
    font-size: clamp(18px, 1.65vw, 26px) !important;
}

body.dashboard-body .investment-summary-strip strong,
body.wallet-page-body .investment-summary-strip strong {
    font-size: clamp(15px, 1.1vw, 17px) !important;
}

body.dashboard-body .premium-ring span,
body.wallet-page-body .premium-ring span {
    font-size: clamp(15px, 1.35vw, 18px) !important;
}

body.dashboard-body .dashboard-panel-heading span,
body.dashboard-body .dashboard-panel-heading a,
body.wallet-page-body .dashboard-panel-heading span,
body.wallet-page-body .dashboard-panel-heading a,
body.withdrawals-page .dashboard-panel-heading span,
body.withdrawals-page .wd-panel__head span {
    font-size: 12px !important;
}

h3,
.glass-movie-card h3,
.rated-card h3,
.latest-clip-card h3,
.clip-card h3,
.static-card h3,
.about-feature-card h3,
.about-timeline h3,
.about-value-grid h3,
.review-card h3,
.admin-panel h3,
.admin-login-card-head h2,
.ott-hero-panel h3 {
    color: var(--text-primary) !important;
    font-size: var(--fs-card) !important;
    font-weight: var(--fw-card) !important;
    letter-spacing: 0 !important;
    line-height: var(--lh-card) !important;
    margin-bottom: 12px !important;
    max-width: 18ch !important;
    text-wrap: balance !important;
}

p,
.hero-content p,
.ott-hero-copy p,
.about-page-body p,
.contact-page-body p,
.dashboard-body p,
.auth-entry-body p,
.signup-auth-body p,
.admin-login-body p,
.admin-muted,
.glass-movie-card p,
.rated-card p,
.latest-clip-card p,
.review-card p,
.footer-brand p {
    color: var(--text-secondary) !important;
    font-size: var(--fs-body) !important;
    font-weight: 500 !important;
    line-height: var(--lh-normal) !important;
}

.gold-kicker,
.ott-hero-eyebrow,
.admin-login-badge,
.section-heading span,
.about-feature-card span,
.about-timeline span,
.contact-list span,
.latest-clip-access-badge,
.status-pill,
.admin-login-form label,
.contact-form label,
.admin-form label {
    font-size: var(--fs-label) !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.glass-movie-card,
.rated-card,
.latest-clip-card,
.clip-card,
.static-card,
.about-feature-card,
.about-timeline article,
.about-value-grid article,
.contact-panel,
.contact-list article,
.contact-form-shell,
.admin-panel,
.dashboard-panel,
.review-card {
    padding-block: max(20px, min(3vw, 32px)) !important;
}

.glass-movie-card h3,
.rated-card h3,
.latest-clip-card h3,
.clip-card h3 {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
}

.ott-hero-copy h2,
.home-body .hero-content h2 {
    font-size: var(--fs-hero) !important;
    font-weight: var(--fw-hero) !important;
    max-width: 8ch !important;
}

.admin-login-body .admin-login-hero h1 {
    font-size: var(--fs-hero) !important;
    font-weight: var(--fw-hero) !important;
    max-width: 8.5ch !important;
}

.about-page-body .about-visual-card h2,
.contact-page-body .contact-panel h2,
.admin-login-card-head h2 {
    font-size: clamp(20px, 1.85vw, 26px) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
    max-width: 20ch !important;
}

.brand-text,
.ott-brand,
.footer-logo,
.admin-logo,
.mobile-menu-brand {
    letter-spacing: 0 !important;
    text-wrap: nowrap !important;
}

@media (max-width: 760px) {
    :root {
        --fs-hero: clamp(34px, 10vw, 52px);
        --fs-section: clamp(26px, 8vw, 40px);
        --fs-card: 20px;
        --fs-body: 16px;
    }

    h1,
    .hero-content h1,
    .hero-content h2,
    .ott-hero-copy h2,
    .admin-login-hero h1,
    .live-login-body h1,
    .auth-entry-body h1,
    .signup-auth-body h1,
    .cinema-auth-copy h1 {
        line-height: 1 !important;
        max-width: 10ch !important;
    }

    h2,
    .section-heading h2,
    .about-section-heading h2,
    .contact-form-shell h2,
    .contact-panel h2,
    .about-mission h2,
    .dashboard-section h2 {
        max-width: 13ch !important;
    }

    .ott-hero-copy h2,
    .home-body .hero-content h2 {
        max-width: 9.5ch !important;
    }

    body.dashboard-body .dashboard-hero h1 {
        line-height: 1.18 !important;
        max-width: none !important;
    }
}

/* Final strict typography reduction */
:root {
    --fs-hero: clamp(34px, 4.2vw, 62px);
    --fs-section: clamp(24px, 2.4vw, 38px);
    --fs-card: clamp(17px, 1.25vw, 22px);
    --fs-body: clamp(14px, .92vw, 16px);
    --fs-label: clamp(9px, .62vw, 11px);
    --lh-tight: 1;
    --lh-heading: 1.08;
    --lh-card: 1.2;
    --lh-normal: 1.58;
    --fw-hero: 760;
    --fw-section: 720;
    --fw-card: 680;
}

.home-body .hero-content h1,
.home-body .hero-content h2,
.admin-login-body .admin-login-hero h1,
.live-login-body h1,
.signup-auth-body h1,
.auth-entry-body h1,
.cinema-auth-copy h1 {
    font-size: var(--fs-hero) !important;
    font-weight: var(--fw-hero) !important;
    letter-spacing: 0 !important;
    line-height: var(--lh-tight) !important;
    max-width: 9.5ch !important;
    margin-bottom: 18px !important;
}

.section-heading h2,
.home-section .section-heading h2,
.about-section-heading h2,
.about-page-body .about-mission h2,
.contact-page-body .contact-panel h2,
.contact-page-body .contact-form-shell h2,
.dashboard-section h2,
.static-section > h2 {
    font-size: var(--fs-section) !important;
    font-weight: var(--fw-section) !important;
    line-height: var(--lh-heading) !important;
    max-width: 13ch !important;
    margin-bottom: 18px !important;
}

.glass-movie-card h3,
.rated-card h3,
.latest-clip-card h3,
.clip-card h3,
.static-card h3,
.about-feature-card h3,
.about-timeline h3,
.about-value-grid h3,
.review-card h3,
.admin-panel h3,
.ott-hero-panel h3,
.movie-card h3 {
    font-size: var(--fs-card) !important;
    font-weight: var(--fw-card) !important;
    line-height: var(--lh-card) !important;
    max-width: 16ch !important;
    margin-bottom: 10px !important;
}

body,
p,
.home-body p,
.home-section p,
.ott-hero-copy p,
.ott-hero-panel p,
.glass-movie-card p,
.rated-card p,
.latest-clip-card p,
.about-page-body p,
.contact-page-body p,
.dashboard-body p,
.admin-login-body p,
.footer-brand p,
.site-footer a,
.footer-bottom {
    font-size: var(--fs-body) !important;
    line-height: var(--lh-normal) !important;
}

.gold-kicker,
.ott-hero-eyebrow,
.section-heading span,
.glass-movie-card > span,
.rated-card span,
.latest-clip-card span,
.about-feature-card span,
.about-timeline span,
.contact-list span,
.admin-login-badge,
.status-pill,
.latest-clip-access-badge {
    font-size: var(--fs-label) !important;
    font-weight: 760 !important;
    letter-spacing: .1em !important;
}

.home-body .ott-hero {
    min-height: 620px !important;
}

.home-body .ott-hero-inner {
    padding-top: clamp(78px, 8vw, 110px) !important;
    padding-bottom: clamp(58px, 6vw, 86px) !important;
}

.home-body .ott-hero-meta {
    font-size: 12px !important;
    margin-top: 16px !important;
}

.home-body .ott-hero-actions {
    margin-top: 24px !important;
}

.home-body .ott-hero-primary,
.home-body .ott-hero-secondary {
    min-height: 48px !important;
    padding: 0 20px !important;
}

.home-body .ott-hero-panel {
    max-width: 360px !important;
    padding: 12px !important;
}

.home-body .ott-hero-panel-info strong {
    font-size: 18px !important;
}

.home-body .home-section {
    padding-block: clamp(54px, 7vw, 92px) !important;
}

.home-body .section-heading {
    margin-bottom: 24px !important;
}

.home-body .glass-movie-card,
.home-body .rated-card,
.home-body .latest-clip-card {
    padding: 14px !important;
}

.home-body .latest-clip-card h3,
.home-body .glass-movie-card h3,
.home-body .rated-card h3 {
    -webkit-line-clamp: 2 !important;
}

@media (max-width: 760px) {
    :root {
        --fs-hero: clamp(30px, 8.5vw, 42px);
        --fs-section: clamp(22px, 6.5vw, 32px);
        --fs-card: 17px;
        --fs-body: 14px;
        --fs-label: 9px;
    }

    .home-body .ott-hero {
        min-height: 600px !important;
    }

    .admin-login-body .admin-login-hero h1 {
        max-width: 10ch !important;
    }
}

/* Project-wide hard typography reset: premium OTT scale */
:root {
    --fs-hero: clamp(42px, 4.5vw, 78px);
    --fs-section: clamp(26px, 3vw, 48px);
    --fs-card: clamp(20px, 1.45vw, 24px);
    --fs-body: 16px;
    --fs-small: clamp(11px, .7vw, 12px);
    --lh-hero: .95;
    --lh-section: 1.05;
    --lh-card: 1.2;
    --lh-body: 1.7;
    --fw-hero: 800;
    --fw-section: 750;
    --fw-card: 700;
}

body {
    font-size: var(--fs-body) !important;
    line-height: var(--lh-body) !important;
}

.home-body .hero-content h1,
.home-body .hero-content h2,
.admin-login-body .admin-login-hero h1,
.live-login-body h1,
.signup-auth-body h1,
.auth-entry-body h1,
.cinema-auth-copy h1 {
    font-size: var(--fs-hero) !important;
    font-weight: var(--fw-hero) !important;
    letter-spacing: 0 !important;
    line-height: var(--lh-hero) !important;
    max-width: 7ch !important;
    text-wrap: balance !important;
}

/* Admin top bar: page title, not a full-width marketing hero */
.admin-body .admin-topbar h1 {
    font-size: clamp(22px, 1.75vw, 30px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.18 !important;
    margin: 0 !important;
    max-width: none !important;
    text-wrap: balance !important;
}

/* Admin panels: avoid public-page `h2` / marketing scales on `.panel-heading` */
.admin-body .panel-heading {
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 8px 18px !important;
    margin-bottom: 14px !important;
}

.admin-body .panel-heading h2 {
    color: #ffffff !important;
    flex: 1 1 auto !important;
    font-size: clamp(15px, 1.05vw, 20px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.22 !important;
    margin: 0 !important;
    max-width: min(36ch, 100%) !important;
    min-width: 0 !important;
    text-wrap: balance !important;
}

.admin-body .panel-heading span {
    color: rgba(148, 163, 184, 0.95) !important;
    flex: 0 0 auto !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    line-height: 1.35 !important;
    margin-top: 2px !important;
    max-width: min(280px, 100%) !important;
}

.admin-body .saas-stat-card {
    min-width: 0;
    overflow: visible;
}

.admin-body .saas-stat-card strong {
    font-size: clamp(1rem, 2.5cqi, 1.5rem) !important;
    line-height: 1.2 !important;
    max-width: 100%;
    overflow: visible;
}

.admin-body .saas-stat-grid > .saas-stat-card,
.admin-body .admin-finance-stat-grid > .saas-stat-card {
    container-type: inline-size;
}

.admin-body .admin-button {
    font-size: 13px !important;
    font-weight: 650 !important;
    letter-spacing: 0.02em !important;
    line-height: 1.25 !important;
    min-height: 40px !important;
    padding: 9px 16px !important;
}

.admin-body .admin-button.small {
    font-size: 12px !important;
    min-height: 36px !important;
    padding: 7px 12px !important;
}

/* Admin layout: tablets + phones (sidebar rail) and very wide desktops */
@media (max-width: 1200px) and (min-width: 981px) {
    .admin-finance-stat-grid,
    body.admin-body.admin-saas-body .admin-finance-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .admin-finance-stat-grid,
    body.admin-body.admin-saas-body .admin-finance-stat-grid {
        grid-template-columns: 1fr !important;
    }

    body.admin-body.admin-saas-body .admin-finance-stat-grid .saas-stat-card strong {
        font-size: clamp(1.125rem, 8vw, 1.5rem) !important;
    }
}

@media (min-width: 1400px) {
    .admin-body {
        grid-template-columns: minmax(232px, 280px) minmax(0, 1fr);
    }

    .admin-main {
        box-sizing: border-box;
        margin-inline: auto;
        max-width: min(1720px, 100%);
        padding-inline: clamp(24px, 2.5vw, 44px);
    }
}

@media (min-width: 1920px) {
    .admin-main {
        max-width: min(1880px, 100%);
    }
}

h2,
.home-section .section-heading h2,
.section-heading h2,
.about-section-heading h2,
.about-page-body .about-mission h2,
.contact-page-body .contact-panel h2,
.contact-page-body .contact-form-shell h2,
.dashboard-section h2,
.static-section h2 {
    font-size: var(--fs-section) !important;
    font-weight: var(--fw-section) !important;
    letter-spacing: 0 !important;
    line-height: var(--lh-section) !important;
    max-width: 10ch !important;
    text-wrap: balance !important;
}

/* Footer column titles: override bare `h2` section scale from rule above */
.site-footer .footer-links h2,
.site-footer h2,
.footer-newsletter label {
    color: #d4af37 !important;
    font-size: clamp(11px, 0.85vw, 13px) !important;
    font-weight: 800 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.25 !important;
    max-width: none !important;
    text-transform: uppercase !important;
}

.site-footer .footer-links h2,
.site-footer h2 {
    margin: 0 0 14px !important;
}

.footer-newsletter label {
    margin: 0 0 10px !important;
}

h3,
.glass-movie-card h3,
.rated-card h3,
.latest-clip-card h3,
.clip-card h3,
.static-card h3,
.about-feature-card h3,
.about-timeline h3,
.about-value-grid h3,
.review-card h3,
.admin-panel h3,
.ott-hero-panel h3,
.movie-card h3 {
    font-size: var(--fs-card) !important;
    font-weight: var(--fw-card) !important;
    letter-spacing: 0 !important;
    line-height: var(--lh-card) !important;
    max-width: 16ch !important;
    text-wrap: balance !important;
}

p,
.home-body p,
.about-page-body p,
.contact-page-body p,
.dashboard-body p,
.admin-login-body p,
.auth-entry-body p,
.signup-auth-body p,
.glass-movie-card p,
.rated-card p,
.latest-clip-card p,
.ott-hero-copy p,
.ott-hero-panel p,
.footer-brand p,
.footer-bottom,
.site-footer a {
    font-size: var(--fs-body) !important;
    line-height: var(--lh-body) !important;
}

.gold-kicker,
.ott-hero-eyebrow,
.section-heading span,
.glass-movie-card > span,
.rated-card span,
.latest-clip-card span,
.about-feature-card span,
.about-timeline span,
.contact-list span,
.admin-login-badge,
.status-pill,
.latest-clip-access-badge,
.footer-newsletter label,
.admin-form label,
.admin-login-form label {
    font-size: var(--fs-small) !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.home-body .ott-hero-copy,
.home-body .hero-content {
    max-width: 620px !important;
}

.home-body .ott-hero {
    min-height: 660px !important;
}

.home-body .ott-hero-inner {
    padding-top: clamp(82px, 8vw, 118px) !important;
    padding-bottom: clamp(64px, 6vw, 92px) !important;
}

.home-body .ott-hero-actions a,
.home-body .hero-actions a,
.gold-button,
.admin-button,
.login-button {
    font-size: 14px !important;
    min-height: 46px !important;
    padding-inline: 18px !important;
}

.glass-movie-card,
.rated-card,
.latest-clip-card,
.clip-card,
.static-card,
.about-feature-card,
.about-timeline article,
.about-value-grid article,
.contact-panel,
.contact-list article,
.contact-form-shell,
.admin-panel,
.dashboard-panel,
.review-card {
    padding: clamp(24px, 2.6vw, 36px) !important;
}

.glass-movie-card h3,
.rated-card h3,
.latest-clip-card h3,
.clip-card h3,
.movie-card h3 {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
}

.home-body .glass-movie-card h3,
.home-body .rated-card h3,
.home-body .latest-clip-card h3 {
    font-size: clamp(18px, 1.25vw, 22px) !important;
}

.about-page-body .about-section-heading h2,
.about-page-body .about-mission h2 {
    max-width: 10ch !important;
}

.mobile-menu-brand,
.mobile-menu-item,
.site-nav > a,
.footer-links a {
    font-family: "DM Sans", Inter, system-ui, sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
}

.home-body .site-header .mobile-menu-item span {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
    line-height: 1.3 !important;
    max-width: none !important;
    text-wrap: nowrap !important;
}

.home-body .site-header .mobile-menu-auth-actions .login-btn,
.home-body .site-header .mobile-menu-auth-actions .register-btn {
    font-family: "DM Sans", Inter, system-ui, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
}

@media (max-width: 760px) {
    :root {
        --fs-hero: clamp(32px, 9vw, 52px);
        --fs-section: clamp(24px, 7vw, 36px);
        --fs-card: 20px;
        --fs-body: 15px;
        --fs-small: 11px;
    }

    .admin-login-body .admin-login-hero h1,
    .live-login-body h1,
    .signup-auth-body h1,
    .auth-entry-body h1 {
        max-width: 8.5ch !important;
    }

    .home-body .ott-hero {
        min-height: 620px !important;
    }

    .home-body .ott-hero-copy,
    .home-body .hero-content {
        max-width: 100% !important;
    }

    .home-body .ott-hero-actions a,
    .home-body .hero-actions a,
    .gold-button,
    .admin-button,
    .login-button {
        min-height: 44px !important;
    }
}

/* Hero title fix for long and non-Latin movie names (legacy hero layout; OTT copy uses .ott-hero-copy h2 above) */
.home-body .hero-content h2,
.home-body .hero-content h1 {
    font-size: clamp(28px, 3.2vw, 46px) !important;
    font-weight: 760 !important;
    line-height: 1.1 !important;
    max-width: min(640px, 92vw) !important;
    overflow-wrap: normal !important;
    text-wrap: balance !important;
    word-break: normal !important;
}

.home-body .ott-hero-copy {
    max-width: 760px !important;
}

@media (max-width: 760px) {
    .home-body .ott-hero-copy h2 {
        font-size: clamp(24px, 7vw, 34px) !important;
        line-height: 1.12 !important;
        max-width: min(560px, 94vw) !important;
    }

    .home-body .hero-content h2,
    .home-body .hero-content h1 {
        font-size: clamp(24px, 7vw, 34px) !important;
        line-height: 1.12 !important;
        max-width: 100% !important;
    }
}

/* About & Contact: corporate display type + contact hero shell (late cascade) */
.about-page-body .about-hero h1,
.about-page-body .about-hero h2 {
    font-family: "DM Sans", Inter, system-ui, sans-serif !important;
    font-size: clamp(40px, 4.6vw, 80px) !important;
    font-weight: 600 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.05 !important;
    max-width: min(22ch, min(920px, 94vw)) !important;
    text-shadow: 0 28px 88px rgba(0, 0, 0, .68) !important;
}

.contact-page-body .contact-hero.static-hero h1,
.contact-page-body .contact-hero.static-hero h2,
.contact-page-body .static-hero h1 {
    font-family: "DM Sans", Inter, system-ui, sans-serif !important;
    font-size: clamp(34px, 3.8vw, 64px) !important;
    font-weight: 600 !important;
    letter-spacing: -0.024em !important;
    line-height: 1.06 !important;
    max-width: min(22ch, min(720px, 94vw)) !important;
    text-shadow: 0 26px 82px rgba(0, 0, 0, .66) !important;
}

.contact-page-body .contact-hero {
    isolation: isolate;
    position: relative;
}

.contact-page-body .contact-hero .contact-hero-noise {
    background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
    background-size: 48px 48px;
    inset: 0;
    mask-image: radial-gradient(circle at 50% 22%, #000, transparent 72%);
    opacity: 0.15;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.contact-page-body .contact-hero .contact-hero-content {
    margin-inline: auto;
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.contact-page-body .contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 26px;
}

.contact-page-body .contact-secondary-button {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: rgba(246, 241, 230, 0.94) !important;
    display: inline-flex;
    font-family: "DM Sans", Inter, system-ui, sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    justify-content: center;
    letter-spacing: 0.04em !important;
    min-height: 48px;
    padding: 0 22px;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.contact-page-body .contact-secondary-button:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: color-mix(in srgb, var(--contact-accent, #d4af37) 50%, transparent);
    color: #ffffff !important;
}

@media (max-width: 760px) {
    .about-page-body .about-hero h1,
    .about-page-body .about-hero h2 {
        font-size: clamp(32px, 9vw, 52px) !important;
        max-width: 100% !important;
    }

    .contact-page-body .contact-hero.static-hero h1,
    .contact-page-body .contact-hero.static-hero h2,
    .contact-page-body .static-hero h1 {
        font-size: clamp(30px, 8vw, 44px) !important;
        max-width: 100% !important;
    }
}

/* --- Homepage: Trending Movies — responsive grid + card balance --- */
#trending-movies .trending-rail {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 0 0 rgba(212, 175, 55, 0.22);
    display: grid !important;
    gap: clamp(14px, 1.8vw, 22px) !important;
    grid-auto-columns: unset !important;
    grid-auto-flow: unset !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)) !important;
    margin-inline: 0 !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    padding: 2px 0 clamp(20px, 2.5vw, 30px) !important;
    scroll-padding-inline: 0 !important;
    scroll-snap-type: none !important;
    width: 100% !important;
}

#trending-movies .section-heading {
    gap: 8px;
    margin-bottom: clamp(20px, 2.2vw, 28px);
}

#trending-movies .section-heading > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#trending-movies .section-heading .gold-kicker {
    letter-spacing: 0.14em;
}

#trending-movies .section-heading h2 {
    font-family: "DM Sans", Inter, system-ui, sans-serif !important;
    font-weight: 650 !important;
    letter-spacing: -0.02em !important;
}

#trending-movies .glass-movie-card {
    border-radius: 14px !important;
    min-height: 0 !important;
    padding: clamp(10px, 1.2vw, 14px) !important;
}

#trending-movies .glass-movie-card .poster-frame {
    border-radius: 10px !important;
    margin-bottom: 10px !important;
}

#trending-movies .glass-movie-card > span {
    font-size: 11px !important;
    font-weight: 650 !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 6px !important;
}

#trending-movies .glass-movie-card > h3 {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: clamp(15px, 1.05vw, 17px) !important;
    font-weight: 650 !important;
    -webkit-line-clamp: 2 !important;
    line-height: 1.28 !important;
    margin-bottom: 6px !important;
    overflow: hidden !important;
}

#trending-movies .glass-movie-card > p {
    -webkit-box-orient: vertical;
    color: rgba(246, 241, 230, 0.68) !important;
    display: -webkit-box;
    font-size: 13px !important;
    -webkit-line-clamp: 3 !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

@media (min-width: 1100px) {
    #trending-movies .trending-rail {
        gap: clamp(16px, 1.4vw, 20px) !important;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)) !important;
    }
}

@media (max-width: 520px) {
    #trending-movies .trending-rail {
        gap: 12px !important;
        grid-template-columns: 1fr !important;
    }

    #trending-movies .glass-movie-card {
        align-items: start !important;
        column-gap: 14px !important;
        display: grid !important;
        grid-template-columns: minmax(92px, 118px) minmax(0, 1fr) !important;
        grid-template-rows: auto auto 1fr !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: none !important;
        row-gap: 4px !important;
        text-align: left !important;
        width: 100% !important;
    }

    #trending-movies .glass-movie-card .poster-frame {
        aspect-ratio: 2 / 3 !important;
        grid-column: 1 !important;
        grid-row: 1 / span 3 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
    }

    #trending-movies .glass-movie-card > span {
        align-self: end !important;
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    #trending-movies .glass-movie-card > h3 {
        align-self: center !important;
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    #trending-movies .glass-movie-card > p {
        align-self: start !important;
        grid-column: 2 !important;
        grid-row: 3 !important;
        -webkit-line-clamp: 2 !important;
    }
}

@media (hover: hover) and (pointer: fine) {
    #trending-movies .glass-movie-card:hover {
        transform: translateY(-5px) !important;
    }
}

/* ------------------------------------------------------------------------- */
/* About page — editorial / professional (scoped via .about-page--editorial) */
/* ------------------------------------------------------------------------- */
.about-page-body:has(.about-page--editorial) {
    --ab-display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
    --ab-ui: "DM Sans", "Inter", system-ui, sans-serif;
    --ab-line: rgba(255, 255, 255, 0.075);
    --ab-line-accent: rgba(214, 178, 94, 0.32);
    --ab-surface: rgba(11, 11, 13, 0.78);
    --ab-surface-elevated: rgba(17, 17, 20, 0.88);
    --ab-muted: rgba(245, 240, 230, 0.68);
    background: var(--cinema-bg) !important;
    color: var(--cinema-cream) !important;
}

.about-page-body:has(.about-page--editorial) .about-main {
    max-width: min(1680px, calc(100vw - 48px)) !important;
    padding: clamp(24px, 3.5vw, 48px) clamp(16px, 3vw, 36px) clamp(40px, 5vw, 72px) !important;
}

.about-page-body:has(.about-page--editorial) .about-hero {
    align-items: start !important;
    gap: clamp(20px, 3vw, 40px) !important;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr) !important;
    min-height: 0 !important;
    padding-block: clamp(28px, 4vw, 52px) clamp(24px, 3vw, 44px) !important;
}

.about-page-body:has(.about-page--editorial) .about-hero-copy,
.about-page-body:has(.about-page--editorial) .about-section-heading,
.about-page-body:has(.about-page--editorial) .about-mission > div:first-child {
    background: rgba(6, 6, 8, 0.45) !important;
    backdrop-filter: blur(16px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(150%) !important;
    border: 1px solid var(--ab-line) !important;
    border-radius: 16px !important;
    box-shadow: none !important;
}

.about-page-body:has(.about-page--editorial) .about-hero-copy {
    max-width: 640px !important;
}

.about-page-body:has(.about-page--editorial) .gold-kicker {
    background: transparent !important;
    border: 0 !important;
    color: rgba(214, 178, 94, 0.92) !important;
    font-family: var(--ab-ui) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.22em !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
    text-transform: uppercase !important;
}

.about-page-body:has(.about-page--editorial) .about-hero h1 {
    color: #faf8f4 !important;
    font-family: var(--ab-display) !important;
    font-size: clamp(36px, 4.8vw, 68px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.08 !important;
    margin: 0 0 12px !important;
    max-width: min(18ch, 560px) !important;
    text-shadow: none !important;
}

.about-page-body:has(.about-page--editorial) .about-hero p,
.about-page-body:has(.about-page--editorial) .about-mission-body p {
    color: var(--ab-muted) !important;
    font-family: var(--ab-ui) !important;
    font-size: clamp(15px, 1.05vw, 17px) !important;
    font-weight: 400 !important;
    letter-spacing: 0.015em !important;
    line-height: 1.75 !important;
    max-width: 52ch !important;
}

.about-page-body:has(.about-page--editorial) .about-section-heading h2,
.about-page-body:has(.about-page--editorial) .about-mission h2 {
    color: #faf8f4 !important;
    font-family: var(--ab-display) !important;
    font-size: clamp(28px, 3.2vw, 48px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.12 !important;
    margin: 10px 0 0 !important;
    max-width: min(22ch, 720px) !important;
    text-shadow: none !important;
}

.about-page-body:has(.about-page--editorial) .about-feature-card h3,
.about-page-body:has(.about-page--editorial) .about-value-grid h3,
.about-page-body:has(.about-page--editorial) .about-timeline h3,
.about-page-body:has(.about-page--editorial) .about-visual-card h2 {
    font-family: var(--ab-display) !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
}

.about-page-body:has(.about-page--editorial) .about-feature-card p,
.about-page-body:has(.about-page--editorial) .about-value-grid p,
.about-page-body:has(.about-page--editorial) .about-timeline p,
.about-page-body:has(.about-page--editorial) .about-visual-card p {
    color: var(--ab-muted) !important;
    font-family: var(--ab-ui) !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

.about-page-body:has(.about-page--editorial) .about-hero-actions {
    gap: 10px !important;
    margin-top: 16px !important;
}

.about-page-body:has(.about-page--editorial) .about-secondary-button {
    background: transparent !important;
    border: 1px solid var(--ab-line-accent) !important;
    color: rgba(250, 246, 235, 0.92) !important;
    font-family: var(--ab-ui) !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    min-height: 48px !important;
}

.about-page-body:has(.about-page--editorial) .about-secondary-button:hover {
    background: rgba(214, 178, 94, 0.08) !important;
    box-shadow: none !important;
}

.about-page-body:has(.about-page--editorial) .about-visual-card,
.about-page-body:has(.about-page--editorial) .about-stats article,
.about-page-body:has(.about-page--editorial) .about-feature-card,
.about-page-body:has(.about-page--editorial) .about-mission,
.about-page-body:has(.about-page--editorial) .about-timeline article,
.about-page-body:has(.about-page--editorial) .about-value-grid article {
    background: var(--ab-surface) !important;
    backdrop-filter: blur(22px) saturate(145%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(145%) !important;
    border: 1px solid var(--ab-line) !important;
    border-radius: 16px !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.about-page-body:has(.about-page--editorial) .about-visual-card:hover,
.about-page-body:has(.about-page--editorial) .about-stats article:hover,
.about-page-body:has(.about-page--editorial) .about-feature-card:hover,
.about-page-body:has(.about-page--editorial) .about-timeline article:hover,
.about-page-body:has(.about-page--editorial) .about-value-grid article:hover {
    border-color: rgba(214, 178, 94, 0.22) !important;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-2px) !important;
}

.about-page-body:has(.about-page--editorial) .about-visual-card {
    min-height: 0 !important;
    padding: clamp(22px, 2.5vw, 34px) !important;
}

.about-page-body:has(.about-page--editorial) .about-feature-icon {
    background: rgba(214, 178, 94, 0.1) !important;
    border: 1px solid var(--ab-line-accent) !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    color: #f0e6c8 !important;
    font-family: var(--ab-ui) !important;
    font-weight: 600 !important;
    height: 48px !important;
    margin-bottom: 20px !important;
    width: 48px !important;
}

.about-page-body:has(.about-page--editorial) .about-feature-card span,
.about-page-body:has(.about-page--editorial) .about-timeline span {
    background: transparent !important;
    border: 0 !important;
    color: rgba(214, 178, 94, 0.78) !important;
    font-family: var(--ab-ui) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.18em !important;
    margin-bottom: 10px !important;
    padding: 0 !important;
}

.about-page-body:has(.about-page--editorial) .about-stats {
    background: var(--ab-line) !important;
    border: 1px solid var(--ab-line) !important;
    border-radius: 14px !important;
    gap: 1px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    overflow: hidden !important;
}

.about-page-body:has(.about-page--editorial) .about-stats article {
    background: var(--ab-surface-elevated) !important;
    border: 0 !important;
    border-radius: 0 !important;
    padding: clamp(20px, 2.5vw, 28px) !important;
}

.about-page-body:has(.about-page--editorial) .about-stats strong {
    font-family: var(--ab-display) !important;
    font-size: clamp(28px, 3.2vw, 42px) !important;
    font-weight: 550 !important;
}

.about-page-body:has(.about-page--editorial) .about-stats span {
    color: rgba(245, 240, 230, 0.52) !important;
    font-family: var(--ab-ui) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
}

.about-page-body:has(.about-page--editorial) .about-feature-grid {
    gap: 18px !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)) !important;
}

.about-page-body:has(.about-page--editorial) .about-feature-card {
    min-height: 0 !important;
    padding: clamp(22px, 2.4vw, 30px) !important;
}

.about-page-body:has(.about-page--editorial) .about-mission {
    align-items: start !important;
    gap: clamp(24px, 4vw, 56px) !important;
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr) !important;
}

.about-page-body:has(.about-page--editorial) .about-mission-body {
    padding-top: 4px !important;
}

.about-page-body:has(.about-page--editorial) .about-mission blockquote {
    border-left: 1px solid var(--ab-line-accent) !important;
    color: rgba(252, 249, 242, 0.92) !important;
    font-family: var(--ab-display) !important;
    font-size: clamp(18px, 1.65vw, 24px) !important;
    font-style: italic !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    margin: 22px 0 0 !important;
    padding-left: 20px !important;
}

.about-page-body:has(.about-page--editorial) .about-timeline-wrap {
    margin-top: 4px !important;
    position: relative !important;
}

.about-page-body:has(.about-page--editorial) .about-timeline-wrap::before {
    background: linear-gradient(90deg, transparent, rgba(214, 178, 94, 0.35), transparent) !important;
    content: "" !important;
    height: 1px !important;
    left: 8px !important;
    opacity: 0.85 !important;
    pointer-events: none !important;
    position: absolute !important;
    right: 8px !important;
    top: 22px !important;
    z-index: 0 !important;
}

.about-page-body:has(.about-page--editorial) .about-timeline {
    gap: 14px !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    position: relative !important;
    z-index: 1 !important;
}

.about-page-body:has(.about-page--editorial) .about-timeline article {
    padding: clamp(18px, 2vw, 22px) !important;
}

.about-page-body:has(.about-page--editorial) .about-value-grid {
    gap: 14px !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)) !important;
}

.about-page-body:has(.about-page--editorial) .about-section,
.about-page-body:has(.about-page--editorial) .about-stats {
    margin-bottom: clamp(56px, 7vw, 96px) !important;
}

.about-page-body:has(.about-page--editorial) .about-section-heading {
    margin-bottom: clamp(22px, 3vw, 36px) !important;
    max-width: 720px !important;
}

@media (min-width: 1100px) {
    .about-page-body:has(.about-page--editorial) .about-value-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1024px) {
    .about-page-body:has(.about-page--editorial) .about-timeline-wrap {
        margin-inline: -4px !important;
        overflow-x: auto !important;
        padding-bottom: 8px !important;
        scroll-snap-type: x proximity !important;
        scrollbar-color: rgba(214, 178, 94, 0.45) rgba(255, 255, 255, 0.06) !important;
        scrollbar-width: thin !important;
    }

    .about-page-body:has(.about-page--editorial) .about-timeline-wrap::before {
        display: none !important;
    }

    .about-page-body:has(.about-page--editorial) .about-timeline {
        display: grid !important;
        gap: 14px !important;
        grid-auto-columns: minmax(210px, 72vw) !important;
        grid-auto-flow: column !important;
        grid-template-columns: none !important;
        min-width: 0 !important;
        width: max-content !important;
    }

    .about-page-body:has(.about-page--editorial) .about-timeline article {
        scroll-snap-align: start !important;
    }
}

@media (max-width: 900px) {
    .about-page-body:has(.about-page--editorial) .about-hero {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .about-page-body:has(.about-page--editorial) .about-hero-copy {
        margin-inline: auto !important;
        text-align: center !important;
    }

    .about-page-body:has(.about-page--editorial) .about-hero h1,
    .about-page-body:has(.about-page--editorial) .about-hero p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .about-page-body:has(.about-page--editorial) .about-hero-actions {
        justify-content: center !important;
    }

    .about-page-body:has(.about-page--editorial) .about-mission {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .about-page-body:has(.about-page--editorial) .about-mission-body {
        text-align: left !important;
    }

    .about-page-body:has(.about-page--editorial) .about-mission blockquote {
        border-left: none !important;
        border-top: 1px solid var(--ab-line-accent) !important;
        margin-top: 24px !important;
        padding: 20px 0 0 !important;
    }

    .about-page-body:has(.about-page--editorial) .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 520px) {
    .about-page-body:has(.about-page--editorial) .about-stats {
        grid-template-columns: 1fr !important;
    }

    .about-page-body:has(.about-page--editorial) .about-timeline-wrap {
        margin-inline: 0 !important;
        overflow-x: visible !important;
    }

    .about-page-body:has(.about-page--editorial) .about-timeline {
        grid-auto-flow: row !important;
        grid-template-columns: 1fr !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    .about-page-body:has(.about-page--editorial) .about-section-heading,
    .about-page-body:has(.about-page--editorial) .about-mission > div:first-child {
        text-align: center !important;
    }

    .about-page-body:has(.about-page--editorial) .about-section-heading h2,
    .about-page-body:has(.about-page--editorial) .about-mission h2 {
        margin-inline: auto !important;
    }
}

/* ------------------------------------------------------------------------- */
/* Contact page — studio / corporate (replaces bubbly OTT contact cards)   */
/* ------------------------------------------------------------------------- */
.contact-page-body.contact-page--studio {
    background: #050505 !important;
    color: var(--cinema-cream) !important;
}

/* Contact uses .home-body + .static-main; ensure main is flat (body covered above) */
.home-body.contact-page-body.contact-page--studio .static-main {
    background: #050505 !important;
}

.contact-page-body.contact-page--studio .contact-main {
    max-width: min(1320px, calc(100vw - 48px)) !important;
    margin-inline: auto !important;
    padding: clamp(72px, 10vw, 112px) clamp(18px, 4vw, 32px) clamp(56px, 8vw, 96px) !important;
}

.contact-page-body.contact-page--studio .contact-studio {
    color: inherit;
    font-family: "DM Sans", Inter, system-ui, sans-serif;
}

.contact-page-body.contact-page--studio .contact-studio-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: clamp(28px, 4vw, 40px);
    padding-bottom: clamp(24px, 3vw, 32px);
}

.contact-page-body.contact-page--studio .contact-studio-eyebrow {
    color: rgba(214, 178, 94, 0.85);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.contact-page-body.contact-page--studio .contact-studio-head h1 {
    color: #faf8f4 !important;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif !important;
    font-size: clamp(32px, 4vw, 48px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.12 !important;
    margin: 0 0 14px !important;
    max-width: 20ch !important;
    text-shadow: none !important;
}

.contact-page-body.contact-page--studio .contact-studio-lede {
    color: rgba(235, 230, 220, 0.66) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    margin: 0 0 22px !important;
    max-width: 56ch !important;
}

.contact-page-body.contact-page--studio .contact-studio-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-page-body.contact-page--studio .contact-studio-btn {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    min-height: 44px;
    padding: 0 18px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-page-body.contact-page--studio .contact-studio-btn--primary {
    background: linear-gradient(135deg, #f4d982, #d6b25e);
    border: 1px solid rgba(214, 178, 94, 0.55);
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(214, 178, 94, 0.22);
    color: #070707 !important;
    font-weight: 800;
}

.contact-page-body.contact-page--studio .contact-studio-btn--primary:hover {
    background: linear-gradient(135deg, #ffe9a8, #e4c46a);
    border-color: rgba(247, 223, 142, 0.75);
    box-shadow: 0 18px 44px rgba(214, 178, 94, 0.3);
    color: #050505 !important;
}

.contact-page-body.contact-page--studio .contact-studio-btn--quiet {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(248, 244, 236, 0.92) !important;
}

.contact-page-body.contact-page--studio .contact-studio-btn--quiet:hover {
    border-color: rgba(255, 255, 255, 0.24);
    color: #ffffff !important;
}

.contact-page-body.contact-page--studio .contact-studio-channels {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: 0 0 clamp(36px, 5vw, 52px);
    padding: 0;
}

.contact-page-body.contact-page--studio .contact-studio-channels > li {
    margin: 0;
    min-width: 0;
}

.contact-page-body.contact-page--studio .contact-studio-card {
    background: rgba(10, 10, 12, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    min-height: 148px;
    padding: 18px 18px 20px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-page-body.contact-page--studio .contact-studio-card:hover {
    background: rgba(14, 14, 16, 0.82);
    border-color: rgba(214, 178, 94, 0.22);
    box-shadow: none !important;
    transform: none !important;
}

.contact-page-body.contact-page--studio .contact-studio-icon {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(214, 178, 94, 0.88);
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.contact-page-body.contact-page--studio .contact-studio-icon svg {
    display: block;
}

.contact-page-body.contact-page--studio .contact-studio-label {
    color: rgba(235, 228, 210, 0.52) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
    margin: 0 !important;
    text-transform: uppercase !important;
}

.contact-page-body.contact-page--studio .contact-studio-link {
    color: #f5f0e6 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.35 !important;
    overflow-wrap: anywhere;
    text-decoration: none !important;
    word-break: break-word;
}

.contact-page-body.contact-page--studio .contact-studio-link:hover {
    color: rgba(244, 224, 168, 0.98) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.contact-page-body.contact-page--studio .contact-studio-value {
    color: #f5f0e6 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.contact-page-body.contact-page--studio .contact-studio-form-wrap {
    background: rgba(10, 10, 12, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: clamp(22px, 3vw, 32px);
}

.contact-page-body.contact-page--studio .contact-studio-form-head h2 {
    color: #faf8f4 !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: clamp(22px, 2.4vw, 30px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
    margin: 0 0 18px !important;
    text-shadow: none !important;
}

.contact-page-body.contact-page--studio .contact-studio-flash {
    border-radius: 8px !important;
    margin-bottom: 16px !important;
}

.contact-page-body.contact-page--studio .contact-studio-form-grid {
    display: grid;
    gap: 16px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page-body.contact-page--studio .contact-studio-field {
    display: grid;
    gap: 8px;
    margin: 0;
}

.contact-page-body.contact-page--studio .contact-studio-field--full {
    grid-column: 1 / -1;
}

.contact-page-body.contact-page--studio .contact-studio-field span {
    color: rgba(235, 230, 220, 0.55) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

.contact-page-body.contact-page--studio .contact-studio-field input,
.contact-page-body.contact-page--studio .contact-studio-field textarea {
    background: rgba(5, 5, 6, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: #f5f0e6 !important;
    font-family: inherit !important;
    font-size: 15px !important;
    min-height: 48px !important;
    outline: none !important;
    padding: 12px 14px !important;
    transition: border-color 0.2s ease, background 0.2s ease !important;
    width: 100% !important;
}

.contact-page-body.contact-page--studio .contact-studio-field textarea {
    min-height: 140px !important;
    resize: vertical !important;
}

.contact-page-body.contact-page--studio .contact-studio-field input:focus,
.contact-page-body.contact-page--studio .contact-studio-field textarea:focus {
    background: rgba(8, 8, 10, 0.85) !important;
    border-color: rgba(214, 178, 94, 0.35) !important;
    box-shadow: 0 0 0 1px rgba(214, 178, 94, 0.12) !important;
}

.contact-page-body.contact-page--studio .contact-studio-form-footer {
    margin-top: 22px;
}

.contact-page-body.contact-page--studio .contact-studio-submit {
    background: linear-gradient(135deg, #f4d982, #d6b25e);
    border: 1px solid rgba(214, 178, 94, 0.55);
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(214, 178, 94, 0.22);
    color: #070707 !important;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    min-height: 46px;
    padding: 0 22px;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page-body.contact-page--studio .contact-studio-submit:hover {
    background: linear-gradient(135deg, #ffe9a8, #e4c46a);
    border-color: rgba(247, 223, 142, 0.75);
    box-shadow: 0 18px 44px rgba(214, 178, 94, 0.3);
}

.contact-page-body.contact-page--studio .contact-studio-form.contact-form {
    background: transparent !important;
    border: 0 !important;
    display: block !important;
    gap: 0 !important;
    grid-template-columns: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.contact-page-body.contact-page--studio .contact-studio-form.contact-form label:nth-of-type(n) {
    grid-column: unset !important;
}

@media (max-width: 720px) {
    .contact-page-body.contact-page--studio .contact-studio-channels {
        grid-template-columns: 1fr;
    }

    .contact-page-body.contact-page--studio .contact-studio-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-body.contact-page--studio .contact-studio-head h1 {
        max-width: none !important;
    }
}

/* About + Contact: same OTT canvas + footer treatment as the home experience */
.home-body.about-page-body .site-footer,
.home-body.contact-page-body .site-footer {
    backdrop-filter: blur(20px) saturate(132%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(132%) !important;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 45%),
        #030303 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 -24px 90px rgba(0, 0, 0, 0.42) !important;
}

.home-body.about-page-body .site-footer::before,
.home-body.contact-page-body .site-footer::before {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 42%),
        linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.28), transparent) !important;
    opacity: 0.36 !important;
}

.home-body.about-page-body .site-footer::after,
.home-body.contact-page-body .site-footer::after {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 72%) !important;
    display: block !important;
    filter: blur(104px) !important;
    opacity: 0.36 !important;
}

.home-body.about-page-body .site-footer h2,
.home-body.about-page-body .footer-links h2,
.home-body.contact-page-body .site-footer h2,
.home-body.contact-page-body .footer-links h2 {
    color: var(--cinema-gold-bright) !important;
}

.home-body.about-page-body .site-footer p,
.home-body.about-page-body .site-footer section a,
.home-body.about-page-body .footer-bottom,
.home-body.contact-page-body .site-footer p,
.home-body.contact-page-body .site-footer section a,
.home-body.contact-page-body .footer-bottom {
    color: rgba(247, 242, 232, 0.72) !important;
}

.home-body.about-page-body .site-footer section a:hover,
.home-body.contact-page-body .site-footer section a:hover {
    color: #f5d27a !important;
}

.home-body.about-page-body .footer-newsletter div,
.home-body.contact-page-body .footer-newsletter div {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
}

.about-page-shell.about-page--editorial {
    --about-glow: #9a7426 !important;
}

/* =============================================================================
   Premium mobile header + drawer (≤900px) — final cascade; OTT app–grade polish
   Targets: Netflix / Apple TV+–style density, no squashed logo, no muddy glows
   ============================================================================= */
@media (max-width: 900px) {
    :root {
        --mobile-hdr-h: clamp(64px, 2.8vw + 54px, 72px);
        --mobile-drawer-w: min(85vw, 340px);
        --ott-nav-bg: #070707;
        --ott-nav-surface: rgba(18, 18, 18, .82);
        --ott-nav-accent: #d6b25e;
        --ott-nav-muted: rgba(255, 255, 255, .72);
    }

    .site-header:not(.saas-chrome),
    .home-body .site-header:not(.saas-chrome) {
        align-items: center !important;
        backdrop-filter: blur(22px) saturate(145%) !important;
        -webkit-backdrop-filter: blur(22px) saturate(145%) !important;
        background: rgba(7, 7, 7, .94) !important;
        border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
        border-radius: 0 !important;
        box-shadow: 0 2px 24px rgba(0, 0, 0, .55) !important;
        column-gap: 10px !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        height: var(--mobile-hdr-h) !important;
        justify-content: space-between !important;
        max-height: var(--mobile-hdr-h) !important;
        min-height: var(--mobile-hdr-h) !important;
        overflow: visible !important;
        padding-block: 0 !important;
        padding-inline: max(12px, env(safe-area-inset-left, 0px)) max(12px, env(safe-area-inset-right, 0px)) !important;
        position: fixed !important;
        inset: 0 0 auto 0 !important;
        width: 100% !important;
        z-index: 2000 !important;
    }

    header.saas-chrome.site-header,
    .home-body header.saas-chrome.site-header {
        display: block !important;
        height: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        position: sticky !important;
        inset: auto !important;
        z-index: 2800 !important;
    }

    .site-header.is-scrolled,
    .home-body .site-header.is-scrolled {
        max-height: var(--mobile-hdr-h) !important;
        min-height: var(--mobile-hdr-h) !important;
        padding-block: 0 !important;
    }

    .site-header::before,
    .home-body .site-header::before,
    .nav-glow {
        height: var(--mobile-hdr-h) !important;
        max-height: var(--mobile-hdr-h) !important;
    }

    .site-header::after,
    .home-body .site-header::after {
        left: max(12px, env(safe-area-inset-left, 0px)) !important;
        opacity: .75 !important;
        right: max(12px, env(safe-area-inset-right, 0px)) !important;
    }

    .site-header > .nav-glow {
        border-radius: 0 !important;
    }

    .ott-brand,
    .site-header > .brand.ott-brand {
        align-items: center !important;
        display: inline-flex !important;
        flex: 0 1 auto !important;
        font-size: clamp(18px, 4.2vw, 22px) !important;
        gap: 10px !important;
        line-height: 1.05 !important;
        margin: 0 !important;
        margin-right: auto !important;
        max-width: calc(100vw - 124px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)) !important;
        min-height: 0 !important;
        min-width: 0 !important;
        overflow: visible !important;
        text-decoration: none !important;
    }

    .ott-brand .brand-icon,
    .ott-brand .brand-logo-image {
        border-radius: 10px !important;
        flex: 0 0 auto !important;
        height: clamp(32px, 8vw, 38px) !important;
        overflow: hidden !important;
        width: clamp(32px, 8vw, 38px) !important;
    }

    .ott-brand .brand-icon {
        font-size: 10px !important;
    }

    .ott-brand .brand-logo-image img {
        height: 100% !important;
        object-fit: contain !important;
        width: 100% !important;
    }

    .ott-brand .brand-text,
    .ott-brand span:last-child {
        background: linear-gradient(90deg, #ffffff, #f2e6bc, #d6b25e) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        color: transparent !important;
        font-size: clamp(18px, 4.2vw, 22px) !important;
        font-weight: 650 !important;
        letter-spacing: .01em !important;
        min-width: 0 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .mobile-header-actions {
        align-items: center !important;
        display: flex !important;
        flex: 0 0 auto !important;
        gap: 8px !important;
        margin-left: auto !important;
        position: relative !important;
        z-index: 2002 !important;
    }

    .mobile-header-actions .live-search {
        display: flex !important;
        flex: 0 0 44px !important;
        margin: 0 !important;
        max-width: 44px !important;
        min-width: 44px !important;
        overflow: visible !important;
        position: relative !important;
        width: 44px !important;
    }

    .mobile-header-actions .search-mobile-toggle,
    .mobile-header-actions .hamburger {
        align-items: center !important;
        backdrop-filter: blur(14px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(14px) saturate(150%) !important;
        background: rgba(255, 255, 255, .06) !important;
        border: 1px solid rgba(255, 255, 255, .08) !important;
        border-radius: 50% !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, .1),
            0 6px 18px rgba(0, 0, 0, .32) !important;
        display: inline-flex !important;
        flex: 0 0 44px !important;
        height: 44px !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        transition:
            background .22s ease,
            border-color .22s ease,
            box-shadow .22s ease,
            transform .18s ease !important;
        width: 44px !important;
    }

    .mobile-header-actions .search-mobile-toggle:active,
    .mobile-header-actions .hamburger:active {
        transform: scale(.96) !important;
    }

    .mobile-header-actions .search-mobile-toggle svg {
        height: 20px !important;
        stroke: rgba(255, 255, 255, .88) !important;
        width: 20px !important;
    }

    .mobile-header-actions .hamburger span {
        background: #ffffff !important;
        height: 2px !important;
        left: 13px !important;
        width: 18px !important;
    }

    .mobile-header-actions .hamburger span:nth-child(1) {
        top: 15px !important;
    }

    .mobile-header-actions .hamburger span:nth-child(2) {
        top: 21px !important;
    }

    .mobile-header-actions .hamburger span:nth-child(3) {
        top: 27px !important;
    }

    .mobile-header-actions .hamburger.is-active span:nth-child(1),
    .mobile-header-actions .hamburger.is-active span:nth-child(3) {
        top: 21px !important;
    }

    .mobile-header-actions .hamburger.is-active {
        background: rgba(255, 255, 255, .1) !important;
        border-color: rgba(214, 178, 94, .35) !important;
        box-shadow:
            0 0 0 1px rgba(214, 178, 94, .12),
            inset 0 1px 0 rgba(255, 255, 255, .12) !important;
        position: fixed !important;
        right: max(12px, env(safe-area-inset-right, 0px)) !important;
        top: calc(env(safe-area-inset-top, 0px) + (var(--mobile-hdr-h) - 44px) / 2) !important;
        z-index: 2200 !important;
    }

    .mobile-header-actions .search-field {
        right: 0 !important;
        top: calc(100% + 10px) !important;
        width: min(340px, calc(100vw - 24px - env(safe-area-inset-right, 0px))) !important;
    }

    .mobile-header-actions .live-search-results {
        right: 0 !important;
        top: calc(100% + 62px) !important;
        width: min(340px, calc(100vw - 24px - env(safe-area-inset-right, 0px))) !important;
    }

    .mobile-menu-drawer,
    .site-nav.mobile-menu-drawer {
        background:
            linear-gradient(200deg, rgba(255, 255, 255, .035) 0%, transparent 42%),
            radial-gradient(120% 70% at 100% 0%, rgba(214, 178, 94, .1), transparent 48%),
            var(--ott-nav-bg) !important;
        border-left: 1px solid rgba(255, 255, 255, .08) !important;
        border-radius: 0 !important;
        bottom: 0 !important;
        box-shadow: -24px 0 80px rgba(0, 0, 0, .65) !important;
        height: calc(100dvh - var(--mobile-hdr-h)) !important;
        max-height: calc(100dvh - var(--mobile-hdr-h)) !important;
        max-width: min(340px, calc(100vw - 12px - env(safe-area-inset-right, 0px))) !important;
        top: var(--mobile-hdr-h) !important;
        width: var(--mobile-drawer-w) !important;
        z-index: 1980 !important;
    }

    .mobile-menu-content {
        gap: 12px !important;
        padding:
            max(20px, env(safe-area-inset-top, 0px))
            max(24px, env(safe-area-inset-right, 0px))
            max(28px, env(safe-area-inset-bottom, 0px))
            max(24px, env(safe-area-inset-left, 0px)) !important;
    }

    .mobile-menu-content::before {
        opacity: .06 !important;
    }

    .mobile-menu-brand-block {
        border-bottom-color: rgba(255, 255, 255, .08) !important;
        padding: 4px 0 16px !important;
    }

    .mobile-menu-brand .brand-text {
        font-size: clamp(17px, 4vw, 20px) !important;
        font-weight: 700 !important;
    }

    .mobile-menu-brand-block p {
        color: var(--ott-nav-muted) !important;
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    .mobile-menu-section-label {
        color: rgba(214, 178, 94, .85) !important;
        font-size: 10px !important;
        font-weight: 800 !important;
        letter-spacing: .14em !important;
        padding: 8px 0 4px !important;
    }

    .mobile-menu-auth-actions {
        gap: 12px !important;
    }

    .mobile-menu-content .mobile-menu-item,
    .mobile-menu-content .inline-logout-form button {
        align-items: center !important;
        background: var(--ott-nav-surface) !important;
        border: 1px solid rgba(255, 255, 255, .06) !important;
        border-radius: 16px !important;
        color: #ffffff !important;
        font-size: clamp(15px, 3.5vw, 16px) !important;
        font-weight: 600 !important;
        gap: 14px !important;
        grid-template-columns: 40px minmax(0, 1fr) auto !important;
        min-height: 56px !important;
        padding: 0 14px !important;
        transition:
            background .22s ease,
            border-color .22s ease,
            box-shadow .22s ease,
            transform .2s ease !important;
    }

    .mobile-menu-content .mobile-menu-item i {
        background: rgba(0, 0, 0, .35) !important;
        border: 1px solid rgba(255, 255, 255, .07) !important;
        border-radius: 12px !important;
        color: var(--ott-nav-accent) !important;
        font-weight: 750 !important;
        height: 40px !important;
        width: 40px !important;
    }

    .mobile-menu-content .mobile-menu-item b {
        color: rgba(255, 255, 255, .28) !important;
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    .mobile-menu-content .mobile-menu-item:hover,
    .mobile-menu-content .inline-logout-form button:hover {
        background: rgba(28, 28, 28, .92) !important;
        border-color: rgba(214, 178, 94, .22) !important;
        box-shadow: 0 10px 28px rgba(0, 0, 0, .35) !important;
        transform: translateX(4px) !important;
    }

    .mobile-menu-content .login-btn,
    .mobile-menu-content .register-btn {
        border-radius: 16px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        min-height: 48px !important;
        padding: 0 20px !important;
    }

    .mobile-menu-content .register-btn {
        background: linear-gradient(135deg, #e6cf82, #d6b25e 48%, #b89448) !important;
        border: 0 !important;
        box-shadow: 0 10px 28px rgba(214, 178, 94, .2) !important;
        color: #0a0a0a !important;
    }

    .mobile-menu-content .login-btn {
        background: rgba(255, 255, 255, .05) !important;
        border: 1px solid rgba(255, 255, 255, .12) !important;
        color: var(--ott-nav-muted) !important;
    }

    .mobile-menu-content .login-btn:hover,
    .mobile-menu-content .register-btn:hover {
        transform: translateY(-1px) !important;
    }

    .mobile-menu-profile {
        background: var(--ott-nav-surface) !important;
        border: 1px solid rgba(255, 255, 255, .07) !important;
        border-radius: 16px !important;
    }

    .mobile-menu-avatar {
        background: linear-gradient(135deg, #e6cf82, #d6b25e) !important;
        color: #0a0a0a !important;
    }

    .mobile-menu-bottom {
        border-top-color: rgba(255, 255, 255, .08) !important;
        padding-top: 20px !important;
    }

    .mobile-menu-bottom small {
        color: var(--ott-nav-muted) !important;
        font-size: 11px !important;
    }

    main.container,
    main.dashboard-main,
    main.detail-main,
    main.static-main,
    main.about-main {
        padding-top: calc(var(--mobile-hdr-h) + 10px) !important;
    }

    main.home-main {
        padding-top: 0 !important;
    }

    .home-body .ott-hero-inner {
        padding-top: max(88px, calc(var(--mobile-hdr-h) + 28px)) !important;
    }
}

@media (max-width: 360px) {
    .site-header .ott-brand .brand-text {
        display: none !important;
    }

    .site-header .ott-brand {
        max-width: calc(100vw - 108px) !important;
    }
}

/* Compact mobile drawer + header (≤768 only; overrides wider mobile rules above) */
@media (max-width: 768px) {
    :root {
        --mobile-hdr-h: 64px;
    }

    html,
    body {
        overflow-x: hidden !important;
    }

    .site-header,
    .home-body .site-header {
        height: 64px !important;
        max-height: 64px !important;
        min-height: 64px !important;
    }

    .site-header::before,
    .home-body .site-header::before,
    .nav-glow {
        height: 64px !important;
        max-height: 64px !important;
    }

    .ott-brand,
    .site-header > .brand.ott-brand {
        flex: 0 1 auto !important;
        margin-right: auto !important;
        max-width: calc(100vw - 104px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)) !important;
    }

    .ott-brand .brand-icon,
    .ott-brand .brand-logo-image {
        flex: 0 0 32px !important;
        height: 32px !important;
        width: 32px !important;
    }

    .ott-brand .brand-text,
    .ott-brand span:last-child {
        font-size: 15px !important;
    }

    .mobile-header-actions .search-mobile-toggle,
    .mobile-header-actions .hamburger {
        display: inline-flex !important;
        flex: 0 0 40px !important;
        flex-shrink: 0 !important;
        height: 40px !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 40px !important;
    }

    .mobile-header-actions .hamburger span {
        left: 11px !important;
        width: 16px !important;
    }

    .mobile-header-actions .hamburger span:nth-child(1) {
        top: 13px !important;
    }

    .mobile-header-actions .hamburger span:nth-child(2) {
        top: 19px !important;
    }

    .mobile-header-actions .hamburger span:nth-child(3) {
        top: 25px !important;
    }

    .mobile-header-actions .hamburger.is-active span:nth-child(1),
    .mobile-header-actions .hamburger.is-active span:nth-child(3) {
        top: 19px !important;
    }

    .mobile-header-actions .hamburger.is-active {
        top: calc(env(safe-area-inset-top, 0px) + (64px - 40px) / 2) !important;
    }

    .mobile-header-actions .search-mobile-toggle svg {
        height: 18px !important;
        width: 18px !important;
    }

    .mobile-menu-drawer,
    .site-nav.mobile-menu-drawer {
        height: calc(100dvh - 64px) !important;
        max-height: calc(100dvh - 64px) !important;
        max-width: 300px !important;
        overflow-x: hidden !important;
        top: 64px !important;
        width: 78vw !important;
    }

    .mobile-menu-content {
        gap: 8px !important;
        overflow-x: hidden !important;
        padding: 16px !important;
    }

    .mobile-menu-auth-actions {
        gap: 8px !important;
    }

    .mobile-menu-content .mobile-menu-item,
    .mobile-menu-content .inline-logout-form button {
        font-size: 15px !important;
        font-weight: 600 !important;
        gap: 10px !important;
        grid-template-columns: 32px minmax(0, 1fr) auto !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 10px !important;
    }

    .mobile-menu-content .mobile-menu-item i {
        align-items: center !important;
        display: inline-flex !important;
        font-size: 14px !important;
        height: 32px !important;
        justify-content: center !important;
        width: 32px !important;
    }

    .mobile-menu-content .register-btn {
        border-radius: 14px !important;
        font-size: 15px !important;
        height: 44px !important;
        min-height: 44px !important;
    }

    .mobile-menu-content .login-btn {
        border-radius: 14px !important;
        font-size: 15px !important;
        height: 44px !important;
        min-height: 44px !important;
    }

    main.container,
    main.dashboard-main,
    main.detail-main,
    main.static-main,
    main.about-main {
        padding-top: calc(64px + 10px) !important;
    }

    .home-body .ott-hero-inner {
        padding-top: max(76px, calc(64px + 20px)) !important;
    }
}

/* ≤768: guarantee drawer is out of document flow + hamburger/search always visible (fixes clipped/off-screen menu) */
@media (max-width: 768px) {
    header.site-header > nav.site-nav.mobile-menu-drawer,
    header.ott-site-header > nav.site-nav.mobile-menu-drawer {
        flex: none !important;
        height: calc(100dvh - var(--mobile-hdr-h, 64px)) !important;
        left: auto !important;
        margin: 0 !important;
        max-height: calc(100dvh - var(--mobile-hdr-h, 64px)) !important;
        max-width: 300px !important;
        position: fixed !important;
        right: 0 !important;
        top: var(--mobile-hdr-h, 64px) !important;
        width: 78vw !important;
    }

    header.site-header > .mobile-header-actions,
    header.ott-site-header > .mobile-header-actions {
        display: flex !important;
        flex: 0 0 auto !important;
        flex-shrink: 0 !important;
        gap: 8px !important;
        justify-content: flex-end !important;
        margin-left: auto !important;
        min-width: 92px !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 2400 !important;
    }

    /* Beat ≤900 rule that sets .live-search { width: auto } — that was growing the row and pushing the hamburger off-screen */
    header.site-header .mobile-header-actions .live-search,
    header.ott-site-header .mobile-header-actions .live-search {
        flex: 0 0 40px !important;
        margin: 0 !important;
        max-width: 40px !important;
        min-width: 40px !important;
        overflow: visible !important;
        width: 40px !important;
    }

    header.site-header .mobile-header-actions .hamburger,
    header.site-header .mobile-header-actions .search-mobile-toggle,
    header.ott-site-header .mobile-header-actions .hamburger,
    header.ott-site-header .mobile-header-actions .search-mobile-toggle {
        display: inline-flex !important;
        flex-shrink: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    header.site-header > a.brand.ott-brand,
    header.site-header > .ott-brand,
    header.ott-site-header > a.brand.ott-brand,
    header.ott-site-header > .ott-brand {
        flex: 0 1 auto !important;
        margin-right: auto !important;
        max-width: min(56vw, calc(100vw - 112px)) !important;
        min-width: 0 !important;
    }

    header.site-header .mobile-header-actions .hamburger.is-active,
    header.ott-site-header .mobile-header-actions .hamburger.is-active {
        top: calc(env(safe-area-inset-top, 0px) + (var(--mobile-hdr-h, 64px) - 40px) / 2) !important;
    }

    .home-body .ott-hero-copy {
        box-sizing: border-box !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .home-body .ott-hero-copy p {
        max-width: 100% !important;
        overflow-wrap: anywhere !important;
    }

    .home-body .ott-hero-inner {
        box-sizing: border-box !important;
        padding-left: max(16px, env(safe-area-inset-left, 0px)) !important;
        padding-right: max(16px, env(safe-area-inset-right, 0px)) !important;
    }

    .home-body .ott-hero-dots {
        bottom: max(18px, calc(env(safe-area-inset-bottom, 0px) + 12px)) !important;
        z-index: 30 !important;
    }
}

/* =============================================================================
   Admin SaaS dashboard — premium control panel (compact / Stripe–Linear tone)
   Scoped: body.admin-body.admin-saas-body (does not affect member dashboard)
   ============================================================================= */
body.admin-body.admin-saas-body {
    --admin-canvas: #0a0f1f;
    --admin-surface: rgba(17, 24, 39, 0.92);
    --admin-surface-2: #151d2e;
    --admin-border: rgba(255, 255, 255, 0.06);
    --admin-border-strong: rgba(255, 255, 255, 0.1);
    --admin-text: #e5e7eb;
    --admin-muted: #94a3b8;
    --admin-accent: #d4af37;
    --admin-accent-soft: rgba(212, 175, 55, 0.14);
    --admin-sidebar-w: 240px;
    --admin-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
    --admin-shadow-hover: 0 14px 44px rgba(0, 0, 0, 0.38);
    --admin-radius: 24px;
    --admin-radius-sm: 14px;
}

body.admin-body.admin-saas-body {
    background: var(--admin-canvas) !important;
    color: var(--admin-text) !important;
    grid-template-columns: var(--admin-sidebar-w) minmax(0, 1fr) !important;
}

body.admin-body.admin-saas-body::before {
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 175, 55, 0.06), transparent 55%) !important;
    opacity: 1 !important;
}

body.admin-body.admin-saas-body .admin-main {
    background: transparent !important;
    box-sizing: border-box !important;
    gap: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1600px !important;
    padding: 24px 32px !important;
    width: 100% !important;
}

body.admin-body.admin-saas-body .admin-sidebar {
    background: var(--admin-surface-2) !important;
    border-right: 1px solid var(--admin-border) !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    padding: 18px 14px 22px !important;
    width: var(--admin-sidebar-w) !important;
}

body.admin-body.admin-saas-body .admin-logo {
    color: #f8fafc !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 16px !important;
    text-shadow: none !important;
}

body.admin-body.admin-saas-body .admin-sidebar nav {
    gap: 4px !important;
}

body.admin-body.admin-saas-body .admin-sidebar nav a,
body.admin-body.admin-saas-body .admin-sidebar nav form button {
    align-items: center !important;
    border-radius: var(--admin-radius-sm) !important;
    color: var(--admin-muted) !important;
    display: flex !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    gap: 10px !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 12px !important;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease !important;
}

body.admin-body.admin-saas-body .admin-sidebar nav a.active,
body.admin-body.admin-saas-body .admin-sidebar nav a:hover,
body.admin-body.admin-saas-body .admin-sidebar nav form button:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid var(--admin-border) !important;
    box-shadow: none !important;
    color: #f8fafc !important;
}

body.admin-body.admin-saas-body .admin-sidebar nav a.active {
    background: var(--admin-accent-soft) !important;
    border-color: rgba(212, 175, 55, 0.28) !important;
    color: #fffbeb !important;
}

body.admin-body.admin-saas-body .admin-nav-icon {
    height: 18px !important;
    width: 18px !important;
}

body.admin-body.admin-saas-body .admin-nav-icon svg {
    height: 18px !important;
    stroke-width: 1.75 !important;
    width: 18px !important;
}

body.admin-body.admin-saas-body .admin-topbar,
body.admin-body.admin-saas-body .admin-panel,
body.admin-body.admin-saas-body .saas-panel,
body.admin-body.admin-saas-body .table-panel {
    backdrop-filter: blur(12px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(130%) !important;
    background: var(--admin-surface) !important;
    border: 1px solid var(--admin-border) !important;
    border-radius: var(--admin-radius) !important;
    box-shadow: var(--admin-shadow) !important;
    color: var(--admin-text) !important;
}

body.admin-body.admin-saas-body .admin-topbar {
    padding: 18px 22px !important;
}

body.admin-body.admin-saas-body .admin-topbar::after,
body.admin-body.admin-saas-body .admin-panel::after,
body.admin-body.admin-saas-body .saas-panel::after,
body.admin-body.admin-saas-body .saas-stat-card::after {
    opacity: 0.05 !important;
}

body.admin-body.admin-saas-body .admin-topbar h1,
body.admin-body.admin-saas-body .dashboard-hero h1 {
    font-size: clamp(24px, 2.4vw, 36px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
}

body.admin-body.admin-saas-body .admin-topbar > div > p:first-child,
body.admin-body.admin-saas-body .admin-topbar .admin-topbar-kicker {
    color: var(--admin-accent) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    margin: 0 0 6px !important;
    text-transform: uppercase !important;
}

body.admin-body.admin-saas-body .admin-topbar-subtitle {
    color: var(--admin-muted) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.45 !important;
    margin: 8px 0 0 !important;
    max-width: 56ch !important;
    text-transform: none !important;
}

body.admin-body.admin-saas-body .admin-panel,
body.admin-body.admin-saas-body .saas-panel,
body.admin-body.admin-saas-body .table-panel {
    padding: 18px 20px 20px !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease !important;
}

body.admin-body.admin-saas-body .admin-panel:hover,
body.admin-body.admin-saas-body .saas-panel:hover {
    border-color: var(--admin-border-strong) !important;
    box-shadow: var(--admin-shadow-hover) !important;
    transform: translateY(-1px) !important;
}

body.admin-body.admin-saas-body .panel-heading {
    margin-bottom: 14px !important;
}

body.admin-body.admin-saas-body .panel-heading h2 {
    font-size: clamp(18px, 1.4vw, 22px) !important;
    font-weight: 700 !important;
}

body.admin-body.admin-saas-body .panel-heading span {
    color: var(--admin-muted) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

body.admin-body.admin-saas-body .admin-button {
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease !important;
}

body.admin-body.admin-saas-body .admin-button.small {
    font-size: 13px !important;
    min-height: 36px !important;
    padding: 0 14px !important;
}

body.admin-body.admin-saas-body .admin-button:not(.subtle):not(.danger) {
    background: linear-gradient(135deg, #e8c547, var(--admin-accent)) !important;
    border: 1px solid rgba(212, 175, 55, 0.45) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.18) !important;
    color: #0f172a !important;
}

body.admin-body.admin-saas-body .admin-button.subtle {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--admin-border) !important;
    color: var(--admin-text) !important;
}

body.admin-body.admin-saas-body .saas-stat-grid {
    gap: 14px !important;
}

body.admin-body.admin-saas-body .saas-dashboard-grid {
    gap: 16px !important;
}

body.admin-body.admin-saas-body .saas-stat-card,
body.admin-body.admin-saas-body .stat-card {
    background: var(--admin-surface) !important;
    border: 1px solid var(--admin-border) !important;
    border-radius: var(--admin-radius) !important;
    box-shadow: var(--admin-shadow) !important;
    container-type: inline-size;
    min-height: 118px !important;
    min-width: 0;
    overflow: visible;
    padding: 16px 18px 14px 52px !important;
}

body.admin-body.admin-saas-body .admin-finance-stat-grid .saas-stat-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 112px !important;
    padding: 14px 16px 12px !important;
}

body.admin-body.admin-saas-body .saas-stat-card::before,
body.admin-body.admin-saas-body .stat-card::before {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid var(--admin-border) !important;
    box-shadow: none !important;
    color: var(--admin-accent) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    height: 34px !important;
    left: 14px !important;
    top: 18px !important;
    width: 34px !important;
}

body.admin-body.admin-saas-body .saas-stat-card span {
    color: var(--admin-muted) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    margin-bottom: 6px !important;
}

body.admin-body.admin-saas-body .saas-stat-card strong {
    color: #f9fafb !important;
    font-size: clamp(0.9375rem, 9cqi, 1.375rem) !important;
    font-variant-numeric: tabular-nums;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    max-width: 100%;
    overflow: visible;
    white-space: nowrap;
}

body.admin-body.admin-saas-body .admin-finance-stat-grid .saas-stat-card::before {
    display: flex !important;
    flex-shrink: 0;
    height: 32px !important;
    margin: 0 0 6px;
    position: static !important;
    width: 32px !important;
}

body.admin-body.admin-saas-body .admin-finance-stat-grid .saas-stat-card strong {
    font-size: clamp(0.875rem, 10cqi, 1.5rem) !important;
    line-height: 1.15 !important;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
}

body.admin-body.admin-saas-body .admin-finance-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.admin-body.admin-saas-body .saas-stat-card small {
    color: var(--admin-muted) !important;
    font-weight: 500 !important;
}

body.admin-body.admin-saas-body .admin-table-wrap {
    border: 1px solid var(--admin-border);
    border-radius: var(--admin-radius-sm);
    margin-top: 4px;
    overflow: auto;
}

body.admin-body.admin-saas-body .admin-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    font-size: 15px !important;
    min-width: min(720px, 100%) !important;
}

body.admin-body.admin-saas-body .admin-table thead th {
    background: #0f1424 !important;
    border-bottom: 1px solid var(--admin-border) !important;
    color: rgba(212, 175, 55, 0.88) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    padding: 12px 16px !important;
    position: sticky !important;
    text-transform: uppercase !important;
    top: 0 !important;
    vertical-align: middle !important;
    white-space: nowrap !important;
    z-index: 2 !important;
}

body.admin-body.admin-saas-body .admin-table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    min-height: 56px !important;
    padding: 12px 16px !important;
    vertical-align: middle !important;
}

body.admin-body.admin-saas-body .admin-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.03) !important;
}

body.admin-body.admin-saas-body .admin-icon-button {
    border-radius: 12px !important;
    height: 38px !important;
    width: 38px !important;
}

body.admin-body.admin-saas-body.admin-settings-body .admin-main {
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    justify-content: flex-start !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1600px !important;
    padding: 24px 32px !important;
    width: 100% !important;
}

body.admin-body.admin-saas-body.admin-settings-body .admin-main > .admin-topbar,
body.admin-body.admin-saas-body.admin-settings-body .admin-main > .admin-notice,
body.admin-body.admin-saas-body.admin-settings-body .admin-main > .admin-panel.saas-panel {
    justify-self: stretch !important;
    max-width: 100% !important;
    width: 100% !important;
}

body.admin-body.admin-saas-body.admin-settings-body {
    background: var(--admin-canvas) !important;
}

body.admin-body.admin-saas-body.admin-settings-body .admin-sidebar {
    background: var(--admin-surface-2) !important;
    box-shadow: none !important;
}

body.admin-body.admin-saas-body.admin-settings-body .settings-branding-panel,
body.admin-body.admin-saas-body.admin-settings-body .settings-contact-panel,
body.admin-body.admin-saas-body.admin-settings-body .settings-about-panel,
body.admin-body.admin-saas-body.admin-settings-body .settings-home-hero-panel,
body.admin-body.admin-saas-body.admin-settings-body .settings-mobile-menu-panel,
body.admin-body.admin-saas-body.admin-settings-body .settings-timezone-panel,
body.admin-body.admin-saas-body.admin-settings-body .settings-footer-social-panel {
    background: var(--admin-surface) !important;
    border: 1px solid var(--admin-border) !important;
    border-radius: var(--admin-radius) !important;
    box-shadow: var(--admin-shadow) !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Compact settings cards: fixed max width, centered (Logo, timezone, footer links, contact) */
body.admin-body.admin-saas-body.admin-settings-body .admin-main > .settings-branding-panel,
body.admin-body.admin-saas-body.admin-settings-body .admin-main > .settings-contact-panel,
body.admin-body.admin-saas-body.admin-settings-body .admin-main > .settings-timezone-panel,
body.admin-body.admin-saas-body.admin-settings-body .admin-main > .settings-footer-social-panel {
    align-self: center !important;
    box-sizing: border-box !important;
    max-width: min(720px, 100%) !important;
    width: 100% !important;
}

@media (min-width: 1400px) {
    body.admin-body.admin-saas-body {
        grid-template-columns: var(--admin-sidebar-w) minmax(0, 1fr) !important;
    }

    body.admin-body.admin-saas-body .admin-main {
        max-width: 1600px !important;
        padding-inline: 32px !important;
    }
}

@media (max-width: 980px) {
    body.admin-body.admin-saas-body .admin-sidebar nav a,
    body.admin-body.admin-saas-body .admin-sidebar nav form button {
        min-height: 44px !important;
    }
}

@media (min-width: 1920px) {
    body.admin-body.admin-saas-body .admin-main {
        max-width: 1600px !important;
    }
}

/* Admin: PayQora generated payment addresses */
.admin-payment-address-filter {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.admin-payment-address-filter label {
    color: rgba(148, 163, 184, 0.95);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-payment-address-filter select {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #e5e7eb;
    min-height: 40px;
    padding: 0 12px;
}

.admin-pay-addr {
    display: inline-block;
    font-size: 12px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-payment-address-pagination {
    margin-top: 16px;
}

/* Admin: Withdrawals detail page */
.admin-topbar-pill {
    align-self: center;
    background: rgba(251, 191, 36, 0.14);
    border: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 999px;
    color: #fcd34d;
    font-size: 13px;
    font-weight: 700;
    margin-left: auto;
    padding: 6px 12px;
}

.admin-withdrawal-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.admin-withdrawal-filter {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: rgba(226, 232, 240, 0.88);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.admin-withdrawal-filter:hover,
.admin-withdrawal-filter.is-active {
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.4);
    color: #f5d27a;
}

.admin-withdrawals-table code {
    font-size: 11px;
    word-break: break-all;
}

.admin-withdrawals-table td small {
    color: rgba(148, 163, 184, 0.92);
    display: block;
    margin-top: 4px;
}

.admin-withdrawal-approve-form {
    display: grid;
    gap: 8px;
    min-width: 220px;
}

.admin-withdrawal-tx-input {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #f8fafc;
    font-family: ui-monospace, monospace;
    font-size: 12px;
    min-height: 36px;
    padding: 6px 10px;
    width: 100%;
}

.admin-withdrawal-reject-form {
    margin-top: 8px;
}

.withdrawal-tx-hash {
    display: block;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Hidden text included in row text for client-side datatable search (full payment address) */
.admin-datatable-search-only {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* Settings: Logo, timezone, footer social — structure & readable descriptions */
body.admin-body.admin-saas-body.admin-settings-body .settings-branding-panel,
body.admin-body.admin-saas-body.admin-settings-body .settings-timezone-panel,
body.admin-body.admin-saas-body.admin-settings-body .settings-footer-social-panel {
    align-items: stretch !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

body.admin-body.admin-saas-body.admin-settings-body .settings-branding-panel .panel-heading,
body.admin-body.admin-saas-body.admin-settings-body .settings-timezone-panel .panel-heading,
body.admin-body.admin-saas-body.admin-settings-body .settings-footer-social-panel .panel-heading {
    align-items: flex-start !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px 14px !important;
    justify-content: space-between !important;
    margin: 0 !important;
    padding-bottom: 14px !important;
}

body.admin-body.admin-saas-body.admin-settings-body .settings-branding-panel .panel-heading h2,
body.admin-body.admin-saas-body.admin-settings-body .settings-timezone-panel .panel-heading h2,
body.admin-body.admin-saas-body.admin-settings-body .settings-footer-social-panel .panel-heading h2 {
    margin: 0 !important;
}

body.admin-body.admin-saas-body.admin-settings-body .settings-section-note {
    box-sizing: border-box !important;
    color: rgba(226, 232, 240, 0.78) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    max-width: 72ch !important;
    text-transform: none !important;
}

body.admin-body.admin-saas-body.admin-settings-body .settings-timezone-sample {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

body.admin-body.admin-saas-body.admin-settings-body .settings-branding-panel .admin-logo-preview {
    box-sizing: border-box !important;
    height: auto !important;
    min-height: 120px !important;
    padding: 20px !important;
}

body.admin-body.admin-saas-body.admin-settings-body .settings-timezone-panel #app_timezone,
body.admin-body.admin-saas-body.admin-settings-body .settings-branding-panel #brand_display_mode,
body.admin-body.admin-saas-body.admin-settings-body .settings-footer-social-panel input[type="text"] {
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
}

body.admin-body.admin-saas-body.admin-settings-body .settings-branding-panel .admin-form,
body.admin-body.admin-saas-body.admin-settings-body .settings-timezone-panel .admin-form,
body.admin-body.admin-saas-body.admin-settings-body .settings-footer-social-panel .admin-form {
    max-width: 100% !important;
    width: 100% !important;
}

body.admin-body.admin-saas-body.admin-settings-body .settings-branding-panel .admin-logo-remove-form {
    margin: 0 !important;
}

/* Income & report (?page=income, ?page=report) — match team / wallet / withdrawals */
body.finance-page .dashboard-hero,
body.finance-page .dashboard-stats,
body.finance-page .premium-analytics-grid,
body.finance-page .dashboard-panel,
body.finance-page .finance-rewards-panel,
body.finance-page .dashboard-grid,
body.finance-page .wd-payout-grid,
body.finance-page .wd-flash {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    width: 100%;
}

body.finance-page .premium-analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 28px;
}

body.finance-page .dashboard-stats.finance-stats {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    margin-bottom: 28px;
}

body.finance-page .stat-card small {
    color: rgba(255, 255, 255, 0.55);
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    margin-top: 8px;
}

body.finance-page .profile-card-content h2 {
    color: #f3e7c2;
    font-size: clamp(28px, 3vw, 38px);
    margin: 0 0 8px;
}

body.finance-page .profile-meta-line a {
    color: #d4af37;
    text-decoration: none;
}

body.finance-page .profile-meta-line a:hover {
    text-decoration: underline;
}

body.finance-page .finance-panel-intro {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1.25rem;
    max-width: 56rem;
}

body.finance-page .finance-meta-line {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    margin: 0 0 1rem;
}

body.finance-page .finance-metrics {
    margin-bottom: 1.25rem;
}

body.finance-page .finance-progress-bars {
    margin-bottom: 1rem;
}

body.finance-page .finance-notice {
    margin-bottom: 1rem;
}

body.finance-page .finance-subheading {
    margin-top: 1.25rem;
}

body.finance-page .finance-subheading h2 {
    font-size: 1.15rem;
}

body.finance-page .dashboard-grid.finance-rewards-grid {
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-bottom: 28px;
}

body.finance-page .finance-filter-panel {
    margin-bottom: 28px;
}

body.finance-page .finance-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.25rem;
}

body.finance-page .finance-preset {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

body.finance-page .finance-preset:hover {
    border-color: rgba(212, 175, 55, 0.45);
    color: #f4e4b8;
}

body.finance-page .finance-preset.is-active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(212, 175, 55, 0.1));
    border-color: rgba(212, 175, 55, 0.5);
    color: #fff8e7;
}

body.finance-page .finance-filter-form {
    align-items: end;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

body.finance-page .finance-filter-form label {
    color: rgba(255, 255, 255, 0.62);
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

body.finance-page .finance-filter-form input[type="date"] {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font: inherit;
    min-height: 42px;
    padding: 8px 12px;
    width: 100%;
}

body.finance-page .finance-empty {
    padding: 1.5rem 0 0.5rem;
    text-align: center;
}

body.finance-page .finance-empty a {
    color: #d4af37;
}

body.finance-page .finance-ledger-table tfoot .finance-ledger-total th,
body.finance-page .finance-ledger-table tfoot .finance-ledger-total td {
    border-top: 1px solid rgba(212, 175, 55, 0.28);
    color: #f3e7c2;
    font-weight: 700;
}

body.finance-page .finance-ledger-table th:not(:first-child),
body.finance-page .finance-ledger-table td:not(:first-child) {
    text-align: right;
}

/* Premium dark ledger — no white table blocks */
body.finance-page .finance-rewards-panel {
    margin-bottom: 54px;
    padding: clamp(22px, 2.2vw, 30px) !important;
}

body.finance-page .finance-rewards-panel > input[type="radio"] {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

body.finance-page .finance-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

body.finance-page .finance-tab-nav label {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: rgba(247, 242, 232, 0.78);
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 8px;
    padding: 11px 16px;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

body.finance-page .finance-tab-nav label em {
    color: #f5d27a;
    font-style: normal;
    font-weight: 900;
}

body.finance-page .finance-tab-nav label:hover {
    color: #f5d27a;
    transform: translateY(-1px);
}

body.finance-page #finance-tab-matching:checked ~ .finance-tab-nav label[for="finance-tab-matching"],
body.finance-page #finance-tab-leadership:checked ~ .finance-tab-nav label[for="finance-tab-leadership"] {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.28), rgba(245, 210, 122, 0.12));
    border-color: rgba(245, 210, 122, 0.44);
    color: #f5d27a;
}

body.finance-page .finance-tab-panel {
    display: none;
}

body.finance-page #finance-tab-matching:checked ~ .finance-tab-panel--matching,
body.finance-page #finance-tab-leadership:checked ~ .finance-tab-panel--leadership {
    display: block;
}

body.finance-page .finance-ledger-wrap {
    background: rgba(0, 0, 0, 0.28) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

body.finance-page .finance-ledger-wrap::before {
    display: none !important;
}

body.finance-page .finance-ledger-table {
    background: transparent !important;
    border-collapse: collapse;
    color: rgba(246, 241, 230, 0.9);
    font-size: 0.92rem;
    min-width: 100%;
    width: 100%;
}

body.finance-page .finance-ledger-table th,
body.finance-page .finance-ledger-table td {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.72rem 1rem;
    vertical-align: middle;
}

body.finance-page .finance-ledger-table th {
    background: rgba(212, 175, 55, 0.08) !important;
    color: rgba(216, 200, 154, 0.85) !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.finance-page .finance-ledger-table tbody tr:hover td {
    background: rgba(212, 175, 55, 0.06) !important;
}

body.finance-page .finance-ledger-table tbody tr:last-child td {
    border-bottom: none;
}

body.finance-page .finance-ledger-table .finance-amount,
body.finance-page .finance-ledger-table td strong {
    color: #f5d27a;
}

body.finance-page .finance-ledger-col-date {
    min-width: 168px;
    white-space: nowrap;
}

body.finance-page .finance-ledger-col-date span {
    vertical-align: middle;
}

body.finance-page .finance-day-expand {
    align-items: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 8px;
    color: #f5d27a;
    cursor: pointer;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    margin-right: 10px;
    padding: 0;
    pointer-events: auto;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    vertical-align: middle;
    width: 28px;
    z-index: 2;
}

body.finance-page .finance-day-expand:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.45);
}

body.finance-page .finance-day-expand.is-open {
    background: rgba(212, 175, 55, 0.22);
    border-color: rgba(212, 175, 55, 0.55);
}

body.finance-page .finance-day-expand.is-open .finance-day-expand__icon {
    transform: rotate(45deg);
}

body.finance-page .finance-day-expand__icon {
    height: 16px;
    transition: transform 0.2s ease;
    width: 16px;
}

body.finance-page tr.finance-ledger-detail.is-collapsed {
    display: none !important;
}

body.finance-page tr.finance-ledger-detail:not(.is-collapsed) {
    display: table-row !important;
}

body.finance-page .finance-ledger-detail td {
    background: rgba(0, 0, 0, 0.22) !important;
    padding: 0 !important;
}

body.finance-page .finance-day-detail {
    padding: 14px 16px 16px;
}

body.finance-page .finance-day-detail__title {
    color: rgba(216, 200, 154, 0.9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

body.finance-page .finance-day-detail__section + .finance-day-detail__section {
    margin-top: 14px;
}

body.finance-page .finance-day-detail__section-head {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 6px;
}

body.finance-page .finance-day-detail__section-head h3 {
    color: #f4f4f5;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

body.finance-page .finance-day-detail__section-head span {
    color: #f5d27a;
    font-size: 14px;
    font-weight: 800;
}

body.finance-page .finance-day-detail__list {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.finance-page .finance-day-detail__item {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 12px;
}

body.finance-page .finance-day-detail__item-copy strong {
    color: #f8fafc;
    display: block;
    font-size: 14px;
    font-weight: 700;
}

body.finance-page .finance-day-detail__item-copy small {
    color: rgba(199, 194, 184, 0.88);
    display: block;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 3px;
}

body.finance-page .finance-day-detail__amount {
    color: #f5d27a;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

body.finance-page .finance-day-detail__loading,
body.finance-page .finance-day-detail__empty {
    color: rgba(199, 194, 184, 0.9);
    font-size: 14px;
    margin: 0;
}

body.finance-page .finance-status {
    border-radius: 999px;
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 5px 10px;
    text-transform: uppercase;
}

body.finance-page .finance-status--success {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.28);
    color: #86efac;
}

body.finance-page .finance-status--pending {
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.28);
    color: #fcd34d;
}

body.finance-page .finance-status--danger {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.28);
    color: #fecaca;
}

body.finance-page .finance-empty-inline {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    padding: 8px 0 4px;
    text-align: center;
}

body.finance-page .stat-card strong {
    color: #f3e7c2;
    font-size: clamp(22px, 2.4vw, 28px);
}

@media (max-width: 920px) {
    body.finance-page .premium-analytics-grid {
        grid-template-columns: 1fr;
    }

    body.finance-page .dashboard-grid.finance-rewards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body.finance-page .dashboard-stats.finance-stats {
        grid-template-columns: 1fr 1fr;
    }

    body.finance-page .finance-filter-form .gold-button {
        width: 100%;
    }
}

/* SaaS header — final cascade (overrides legacy mobile-header flex lock) */
@media (min-width: 901px) {
    header.saas-chrome.site-header.iconic-header,
    header.saas-chrome.ott-site-header.iconic-header,
    header.saas-header.site-header.iconic-header,
    header.saas-header.ott-site-header.iconic-header {
        align-items: center !important;
        display: grid !important;
        flex-wrap: unset !important;
        gap: 0 20px !important;
        grid-template-areas: "brand search nav actions" !important;
        grid-template-columns: auto minmax(160px, 1fr) minmax(0, auto) auto !important;
        height: 56px !important;
        max-height: 56px !important;
        min-height: 56px !important;
        overflow: visible !important;
        padding: 0 clamp(16px, 2.5vw, 28px) !important;
        position: sticky !important;
    }

    header.saas-header--auth.saas-chrome,
    header.saas-header--auth.site-header.iconic-header,
    header.saas-header--auth.ott-site-header.iconic-header {
        grid-template-areas: "brand nav actions" !important;
        grid-template-columns: auto minmax(0, 1fr) auto !important;
    }

    header.saas-chrome > .iconic-nav.site-nav.mobile-menu-drawer,
    header.saas-chrome > .saas-nav,
    header.saas-header > .iconic-nav.site-nav.mobile-menu-drawer,
    header.saas-header > .saas-nav {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        height: auto !important;
        max-height: none !important;
        position: relative !important;
        top: auto !important;
        transform: none !important;
        width: auto !important;
    }

    header.saas-header .mobile-header-actions {
        grid-area: actions !important;
    }

    header.saas-header .mobile-menu-content .cine-nav-link.member-nav-link {
        border-bottom: 0 !important;
        margin: 0 !important;
        min-height: 32px !important;
        transform: none !important;
    }

    body.home-body.dashboard-body main.container,
    body.home-body.dashboard-body main.dashboard-main {
        padding-top: 72px !important;
    }
}

@media (max-width: 900px) {
    .home-body .site-header.saas-chrome,
    header.saas-chrome.site-header {
        display: block !important;
        flex-wrap: unset !important;
        height: auto !important;
        max-height: none !important;
        min-height: 0 !important;
        overflow: visible !important;
        position: sticky !important;
    }

    .home-body .site-header,
    .home-body .site-header.saas-chrome {
        position: sticky !important;
    }

    header.saas-chrome > .mobile-menu-drawer,
    header.saas-chrome > .site-nav.mobile-menu-drawer {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        background: #0f1117 !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 3000 !important;
    }

    header.saas-chrome > .mobile-menu-drawer.is-open,
    header.saas-chrome > .site-nav.mobile-menu-drawer.is-open {
        pointer-events: auto !important;
        transform: translate3d(0, 0, 0) !important;
    }

    body.menu-open header.saas-chrome.site-header,
    body.menu-open .home-body header.saas-chrome.site-header {
        z-index: 3010 !important;
    }

    body.menu-open .mobile-menu-overlay.is-visible {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.55) !important;
        z-index: 3000 !important;
    }

    body.menu-open header.saas-chrome > .site-nav.mobile-menu-drawer.is-open,
    body.menu-open header.saas-chrome > .mobile-menu-drawer.is-open {
        pointer-events: auto !important;
    }

    body.menu-open.home-body .home-main,
    body.menu-open.home-body .site-footer,
    body.menu-open.home-body .lux-hero,
    body.menu-open.home-body .ott-hero-inner {
        filter: none !important;
    }

    header.saas-chrome .mobile-only-nav,
    header.saas-chrome .mobile-menu-section-label,
    header.saas-chrome .mobile-menu-brand-block,
    header.saas-chrome .mobile-menu-profile,
    header.saas-chrome .mobile-menu-bottom,
    header.saas-chrome .mobile-menu-auth-actions,
    header.saas-chrome .cine-nav-rail,
    header.saas-chrome .member-nav-pill {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    header.saas-chrome .mobile-menu-auth-actions,
    header.saas-chrome .cine-nav-rail,
    header.saas-chrome .member-nav-pill {
        display: flex !important;
        flex-direction: column !important;
    }

    header.saas-chrome .mobile-menu-auth-actions {
        display: grid !important;
    }

    header.saas-chrome .mobile-menu-content .cine-nav-link,
    header.saas-chrome .mobile-menu-content .cine-nav-link__label {
        color: rgba(248, 250, 252, 0.94) !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    header.saas-chrome .mobile-menu-content .mobile-menu-item.cine-nav-link {
        background: #161a24 !important;
        border-bottom: 0 !important;
    }

    header.saas-chrome .mobile-menu-content .cine-nav-link__icon {
        display: inline-flex !important;
    }

    .home-body .mobile-menu-drawer,
    .home-body .site-nav.mobile-menu-drawer {
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }
}

/* Mobile drawer — bright readable text (overrides home-body faint nav colors) */
@media (max-width: 900px) {
    header.saas-chrome .site-nav.mobile-menu-drawer .mobile-menu-content a.cine-nav-link,
    header.saas-chrome .site-nav.mobile-menu-drawer .cine-nav-link__label,
    .home-body header.saas-chrome .site-nav.mobile-menu-drawer .cine-nav-link,
    .home-body header.saas-chrome .site-nav.mobile-menu-drawer .cine-nav-link__label,
    .home-body .site-nav.mobile-menu-drawer .mobile-menu-content a {
        color: #f4f4f5 !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        letter-spacing: 0 !important;
        opacity: 1 !important;
        -webkit-font-smoothing: antialiased;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .cine-nav-link__icon,
    .home-body .site-nav.mobile-menu-drawer .cine-nav-link__icon {
        color: #d4af37 !important;
        opacity: 1 !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .cine-nav-link__icon .cine-nav-svg,
    .home-body .site-nav.mobile-menu-drawer .cine-nav-svg {
        opacity: 1 !important;
        stroke: currentColor !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .cine-nav-link.is-active,
    header.saas-chrome .site-nav.mobile-menu-drawer .cine-nav-link.is-active .cine-nav-link__label {
        color: #ffffff !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .cine-nav-link.is-active .cine-nav-link__icon {
        color: #f5d27a !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .mobile-menu-section-label {
        color: #d4af37 !important;
        font-weight: 700 !important;
        letter-spacing: 0.12em !important;
        opacity: 1 !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .mobile-menu-brand-block p {
        color: rgba(226, 232, 240, 0.75) !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .mobile-menu-brand .brand-text {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .mobile-menu-profile span {
        color: #d4af37 !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .mobile-menu-profile strong {
        color: #ffffff !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .mobile-menu-profile small {
        color: rgba(226, 232, 240, 0.8) !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .cine-nav-logout button,
    header.saas-chrome .site-nav.mobile-menu-drawer .cine-nav-logout button span:last-child {
        color: #f4f4f5 !important;
        font-weight: 600 !important;
        opacity: 1 !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .login-btn {
        color: #f5d27a !important;
    }

    header.saas-chrome .site-nav.mobile-menu-drawer .register-btn {
        color: #0a0a0a !important;
    }
}

/* Mobile menu clickability — overlay must not sit above header/drawer stacking context */
@media (max-width: 900px) {
    body.menu-open header.saas-chrome.site-header,
    body.menu-open .home-body header.saas-chrome.site-header,
    body.menu-open header.saas-chrome.cine-header {
        isolation: isolate;
        z-index: 3010 !important;
    }

    body.menu-open .menu-overlay.mobile-menu-overlay.is-visible,
    body.menu-open .mobile-menu-overlay.is-visible {
        z-index: 3000 !important;
    }

    body.menu-open header.saas-chrome > nav.site-nav.mobile-menu-drawer.is-open,
    body.menu-open header.saas-chrome > .iconic-nav.site-nav.mobile-menu-drawer.is-open {
        pointer-events: auto !important;
        touch-action: manipulation;
    }

    body.menu-open header.saas-chrome .mobile-menu-content a,
    body.menu-open header.saas-chrome .mobile-menu-content button {
        pointer-events: auto !important;
        touch-action: manipulation;
    }
}

/* Admin login — error alert readable on light background (overrides global white body text) */
.admin-login-body .admin-login-alert,
.admin-login-body .alert.admin-login-alert {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    color: #7f1d1d !important;
}

.admin-login-body .admin-login-alert p,
.admin-login-body .alert.admin-login-alert p {
    color: #991b1b !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    opacity: 1 !important;
}

/* Plan activation confirm modal — match dashboard theme (override global marketing h2) */
body.dashboard-body .plan-confirm-modal__dialog h2,
body.wallet-page-body .plan-confirm-modal__dialog h2 {
    color: #f3e7c2 !important;
    font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em !important;
    line-height: 1.22 !important;
    margin: 0 !important;
    max-width: none !important;
    opacity: 1 !important;
    text-wrap: wrap !important;
}

body.dashboard-body .plan-confirm-modal__dialog .gold-kicker,
body.wallet-page-body .plan-confirm-modal__dialog .gold-kicker {
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 2px !important;
}

body.dashboard-body .plan-confirm-modal__message,
body.wallet-page-body .plan-confirm-modal__message {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    opacity: 1 !important;
}

body.dashboard-body .plan-confirm-modal__message strong,
body.wallet-page-body .plan-confirm-modal__message strong {
    color: #f5d27a !important;
    font-weight: 700 !important;
}

body.dashboard-body .plan-confirm-modal__hint,
body.wallet-page-body .plan-confirm-modal__hint {
    color: rgba(255, 255, 255, 0.52) !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    opacity: 1 !important;
}

body.dashboard-body .plan-confirm-modal__label,
body.wallet-page-body .plan-confirm-modal__label {
    color: rgba(243, 231, 194, 0.88) !important;
    font-size: 12.5px !important;
}

body.dashboard-body .plan-confirm-modal__input,
body.wallet-page-body .plan-confirm-modal__input {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(7, 10, 16, 0.82) !important;
    border: 1px solid rgba(245, 210, 122, 0.18) !important;
    border-radius: 12px !important;
    color: #f3e7c2 !important;
    font-size: 14px !important;
    min-height: 44px !important;
}

body.dashboard-body .plan-confirm-modal__actions .ghost-button,
body.dashboard-body .plan-confirm-modal__actions .gold-button,
body.wallet-page-body .plan-confirm-modal__actions .ghost-button,
body.wallet-page-body .plan-confirm-modal__actions .gold-button {
    font-size: 13px !important;
    min-height: 42px !important;
    padding: 10px 16px !important;
}

@media (max-width: 480px) {
    .plan-confirm-modal {
        padding: 14px;
    }

    .plan-confirm-modal__dialog {
        padding: 18px 16px 16px;
    }

    .plan-confirm-modal__actions {
        flex-direction: column-reverse;
    }

    .plan-confirm-modal__actions .ghost-button,
    .plan-confirm-modal__actions .gold-button {
        justify-content: center;
        width: 100%;
    }
}

/* Income report — breakdown drawer sits below table panel (outside overflow:hidden) */
body.report-page .dashboard-main {
    padding-bottom: 72px;
}

body.report-page .dashboard-main:has(.finance-report-drawer:not(.is-collapsed)) {
    padding-bottom: 120px;
}

body.report-page .finance-report-panel,
body.report-page .finance-report-panel.dashboard-panel,
body.report-page .finance-report-panel.glass-dashboard-card {
    margin-bottom: 0;
    overflow: visible !important;
}

body.report-page .finance-report-panel::before,
body.report-page .finance-report-panel::after,
body.report-page .finance-report-panel.glass-dashboard-card::before,
body.report-page .finance-report-panel.glass-dashboard-card::after {
    display: none !important;
}

body.report-page .finance-ledger-wrap {
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

body.report-page .finance-day-expand {
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    touch-action: manipulation;
    z-index: 5;
}

body.report-page .finance-ledger-row.is-active td {
    background: rgba(212, 175, 55, 0.1) !important;
}

body.report-page .finance-report-drawer {
    background:
        linear-gradient(180deg, rgba(22, 22, 24, 0.98), rgba(10, 10, 12, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 14px;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
    isolation: isolate;
    margin: 16px auto 56px;
    max-width: 1180px;
    padding: 18px 20px 22px;
    position: relative;
    width: calc(100% - 48px);
    z-index: 4;
}

body.report-page .finance-report-drawer.is-collapsed {
    display: none !important;
}

body.report-page .finance-report-drawer:not(.is-collapsed) {
    display: block !important;
}

body.report-page .finance-report-drawer .finance-day-detail {
    padding: 4px 0 0;
}

body.report-page .finance-report-drawer .finance-day-detail__title {
    color: rgba(216, 200, 154, 0.95);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

body.report-page .finance-report-drawer .finance-day-detail__section {
    margin-top: 0;
}

body.report-page .finance-report-drawer .finance-day-detail__section + .finance-day-detail__section {
    margin-top: 16px;
}

body.report-page .finance-report-drawer .finance-day-detail__section-head h3 {
    color: #f8fafc;
}

body.report-page .finance-report-drawer .finance-day-detail__list {
    display: grid !important;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

body.report-page .finance-report-drawer .finance-day-detail__item {
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex !important;
    gap: 12px;
    justify-content: space-between;
    padding: 10px 12px;
}

body.report-page .finance-report-drawer .finance-day-detail__item-copy strong {
    color: #f8fafc !important;
}

body.report-page .finance-report-drawer .finance-day-detail__item-copy small {
    color: rgba(199, 194, 184, 0.92) !important;
}

body.report-page .finance-report-drawer .finance-day-detail__amount {
    color: #f5d27a !important;
}

body.report-page .finance-report-drawer__hint {
    color: rgba(199, 194, 184, 0.85);
    font-size: 14px;
    margin: 0;
}

body.report-page .finance-report-drawer__hint strong {
    color: #f5d27a;
}

body.report-page .site-footer {
    clear: both;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    body.report-page .finance-report-drawer {
        margin-bottom: 40px;
        padding: 16px;
        width: calc(100% - 36px);
    }
}

/* Withdrawals page — layout & accents (typography via finance-page + dashboard-body) */
body.withdrawals-page .glass-dashboard-card::before,
body.withdrawals-page .glass-dashboard-card::after {
    opacity: 0.35;
}

body.withdrawals-page .wd-flash {
    margin-bottom: 18px;
}

body.withdrawals-page .wd-payout-grid {
    align-items: stretch;
    box-sizing: border-box;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
    width: 100%;
}

body.withdrawals-page .wd-payout-grid > .dashboard-panel {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    min-height: 0;
    min-width: 0;
    width: 100%;
}

body.withdrawals-page .wd-panel {
    display: flex;
    flex-direction: column;
    padding: 22px 24px 24px;
}

body.withdrawals-page .wd-payout-grid .admin-form,
body.withdrawals-page .wd-payout-grid .wd-form {
    flex: 1;
    min-width: 0;
    width: 100%;
}

body.withdrawals-page .wd-payout-grid .wd-form--request {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.withdrawals-page .wd-panel__head {
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
}

body.withdrawals-page .wd-panel__icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(216, 200, 154, 0.9);
    display: flex;
    flex-shrink: 0;
    height: 44px;
    justify-content: center;
    width: 44px;
}

body.withdrawals-page .wd-panel__icon svg {
    height: 22px;
    width: 22px;
}

body.withdrawals-page .wd-panel__icon--gold {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.28);
    color: #f5d27a;
}

body.withdrawals-page .wd-panel__head h2 {
    margin: 0 0 4px;
}

body.withdrawals-page .wd-panel__head span {
    color: rgba(199, 194, 184, 0.88);
}

body.withdrawals-page .wd-fee-chip {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
    color: #f5d27a;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 6px;
    padding: 4px 10px;
}

body.withdrawals-page .wd-panel__intro {
    color: rgba(199, 194, 184, 0.92);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 16px;
}

body.withdrawals-page .wd-address-lock {
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 14px;
    padding: 16px 18px;
}

body.withdrawals-page .wd-address-lock__badge {
    align-items: center;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 999px;
    color: #f5d27a;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    gap: 6px;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    padding: 5px 10px;
    text-transform: uppercase;
}

body.withdrawals-page .wd-address-lock__value {
    color: #f8fafc;
    display: block;
    font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
    font-size: 13px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-all;
}

body.withdrawals-page .wd-address-lock__hint {
    color: rgba(199, 194, 184, 0.88);
    font-size: 13px;
    line-height: 1.5;
    margin: 12px 0 0;
}

body.withdrawals-page .wd-form input[type="text"],
body.withdrawals-page .wd-form input:not([type]) {
    font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
    font-size: 13px;
}

body.withdrawals-page .wd-amount-wrap {
    align-items: center;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    gap: 4px;
    padding: 0 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.withdrawals-page .wd-amount-wrap:focus-within {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

body.withdrawals-page .wd-amount-wrap__prefix {
    color: #f5d27a;
    font-size: 18px;
    font-weight: 700;
}

body.withdrawals-page .wd-amount-wrap input {
    background: transparent;
    border: 0;
    box-shadow: none;
    flex: 1;
    font-family: inherit;
    font-size: clamp(17px, 1.5vw, 22px);
    font-weight: 700;
    min-height: 52px;
    padding: 0;
}

body.withdrawals-page .wd-amount-wrap input:focus {
    box-shadow: none;
}

body.withdrawals-page .wd-form__hint,
body.withdrawals-page .wd-form__footnote {
    color: rgba(199, 194, 184, 0.85);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

body.withdrawals-page .wd-form__hint code {
    color: #f5d27a;
}

body.withdrawals-page .wd-form__submit {
    align-self: stretch;
    justify-self: stretch;
    margin-top: 4px;
    width: 100%;
}

body.withdrawals-page .wd-split-preview {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px;
}

body.withdrawals-page .wd-split-preview__title {
    color: rgba(216, 200, 154, 0.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

body.withdrawals-page .wd-split-preview__grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.withdrawals-page .wd-split-preview__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 12px;
}

body.withdrawals-page .wd-split-preview__item span {
    color: rgba(199, 194, 184, 0.88);
    display: block;
    font-size: 11px;
    margin-bottom: 4px;
}

body.withdrawals-page .wd-split-preview__item strong {
    color: #f8fafc;
    display: block;
    font-size: 16px;
    font-weight: 700;
}

body.withdrawals-page .wd-split-preview__item small {
    color: rgba(148, 163, 184, 0.9);
    display: block;
    font-size: 10px;
    margin-top: 2px;
}

body.withdrawals-page .wd-split-preview__item--fee strong {
    color: #fcd34d;
}

body.withdrawals-page .wd-split-preview__item--bank strong {
    color: #f5d27a;
}

body.withdrawals-page .wd-split-preview__item--wallet strong {
    color: #86efac;
}

body.withdrawals-page .wd-locked-state {
    align-items: center;
    background: rgba(0, 0, 0, 0.18);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-sizing: border-box;
    color: rgba(199, 194, 184, 0.9);
    display: flex;
    flex: 1;
    font-size: 14px;
    justify-content: center;
    min-height: 180px;
    padding: 24px;
    text-align: center;
    width: 100%;
}

body.withdrawals-page .wd-rules {
    margin-bottom: 18px;
    padding: 22px 24px;
}

body.withdrawals-page .wd-rules__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.withdrawals-page .wd-rule {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
}

body.withdrawals-page .wd-rule__step {
    color: rgba(212, 175, 55, 0.75);
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

body.withdrawals-page .wd-rule h3 {
    color: #f8fafc;
    font-size: clamp(14px, 1vw, 15px);
    font-weight: 700;
    margin: 0 0 6px;
}

body.withdrawals-page .wd-rule p {
    color: rgba(199, 194, 184, 0.88);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

body.withdrawals-page .wd-history {
    margin-bottom: 28px;
    padding: 22px 24px 8px;
}

body.withdrawals-page .wd-history__empty {
    color: rgba(199, 194, 184, 0.9);
    padding: 24px 0 32px;
    text-align: center;
}

@media (max-width: 960px) {
    body.withdrawals-page .wd-payout-grid,
    body.withdrawals-page .wd-rules__grid,
    body.withdrawals-page .wd-split-preview__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.withdrawals-page .wd-form__submit {
        width: 100%;
    }
}

