/*
 * King Cinema Web V2
 * Final public presentation layer. Loaded after legacy styles so existing
 * business logic, settings and panel-managed content can remain untouched.
 */

:root {
    --kc2-bg: #050507;
    --kc2-bg-soft: #09090d;
    --kc2-surface: #111116;
    --kc2-surface-2: #17171d;
    --kc2-surface-3: #202028;
    --kc2-red: #e50914;
    --kc2-red-bright: #ff2636;
    --kc2-red-dark: #a80710;
    --kc2-text: #f7f7f8;
    --kc2-muted: #a4a4ad;
    --kc2-dim: #74747e;
    --kc2-border: rgba(255, 255, 255, .10);
    --kc2-border-strong: rgba(255, 255, 255, .16);
    --kc2-shadow: 0 30px 90px rgba(0, 0, 0, .42);
    --kc2-radius: 24px;
    --kc2-radius-sm: 16px;
    --kc2-nav-height: 68px;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    background: var(--kc2-bg);
}

body.kc-app-web:not(.admin-body) {
    min-width: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 85% -10%, rgba(229, 9, 20, .09), transparent 34rem),
        var(--kc2-bg) !important;
    color: var(--kc2-text) !important;
    font-family: "Cairo", "Tajawal", system-ui, sans-serif !important;
    padding-bottom: calc(var(--kc2-nav-height) + 30px + env(safe-area-inset-bottom, 0px)) !important;
}

body.kc-app-web:not(.admin-body) button,
body.kc-app-web:not(.admin-body) a,
body.kc-app-web:not(.admin-body) input,
body.kc-app-web:not(.admin-body) textarea,
body.kc-app-web:not(.admin-body) select {
    font-family: inherit;
}

body.kc-app-web:not(.admin-body) :where(button, a, input, textarea, select):focus-visible {
    outline: 3px solid rgba(229, 9, 20, .45) !important;
    outline-offset: 3px !important;
}

/* Shared public buttons */
body.kc-app-web:not(.admin-body) .kc-v2-btn,
body.kc-app-web:not(.admin-body) .kc-work-primary-action,
body.kc-app-web:not(.admin-body) .kc-profile-primary-action {
    min-height: 52px;
    border-radius: 16px;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

body.kc-app-web:not(.admin-body) :where(.kc-v2-btn, .kc-work-primary-action, .kc-profile-primary-action):hover {
    transform: translateY(-2px);
}

body.kc-app-web:not(.admin-body) :where(.kc-v2-btn, .kc-work-primary-action, .kc-profile-primary-action):active {
    transform: scale(.975);
}

/* --------------------------------------------------------------------------
   Main navigation — keep all five existing destinations
   -------------------------------------------------------------------------- */
body.kc-app-web:not(.admin-body) #bottom-navigation-bar,
body.kc-app-web.home-store-light:not(.admin-body) #bottom-navigation-bar,
body.kc-app-web.netflix-theme:not(.admin-body) #bottom-navigation-bar {
    position: fixed !important;
    z-index: 9990 !important;
    right: 50% !important;
    left: auto !important;
    bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
    width: min(680px, calc(100vw - 28px)) !important;
    height: var(--kc2-nav-height) !important;
    padding: 0 !important;
    transform: translateX(50%) !important;
    overflow: visible !important;
    border: 1px solid rgba(255, 255, 255, .11) !important;
    border-radius: 23px !important;
    background: rgba(14, 14, 19, .91) !important;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .50), inset 0 1px 0 rgba(255, 255, 255, .04) !important;
    -webkit-backdrop-filter: blur(22px) saturate(150%) !important;
    backdrop-filter: blur(22px) saturate(150%) !important;
}

body.kc-app-web:not(.admin-body) #bottom-navigation-bar > .kc-bottom-nav-inner,
body.kc-app-web.home-store-light:not(.admin-body) #bottom-navigation-bar > .kc-bottom-nav-inner,
body.kc-app-web.netflix-theme:not(.admin-body) #bottom-navigation-bar > .kc-bottom-nav-inner {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    direction: rtl !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 5px 7px !important;
    gap: 3px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: inherit !important;
    box-shadow: none !important;
}

body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn {
    position: relative !important;
    display: flex !important;
    min-width: 0 !important;
    min-height: 56px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    padding: 5px 2px !important;
    overflow: hidden !important;
    border: 1px solid transparent !important;
    border-radius: 17px !important;
    background: transparent !important;
    color: #8e8e98 !important;
    box-shadow: none !important;
    transform: none !important;
    transition: color .18s ease, background .18s ease, transform .18s ease, border-color .18s ease !important;
}

body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn:hover {
    color: #d4d4d9 !important;
    background: rgba(255, 255, 255, .055) !important;
    transform: translateY(-1px) !important;
}

body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn:active {
    transform: scale(.96) !important;
}

body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn > svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.85 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    filter: none !important;
}

body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn b,
body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn span:not(.nav-indicator) {
    max-width: 100% !important;
    overflow: hidden !important;
    color: inherit !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-indicator {
    position: absolute !important;
    top: 2px !important;
    right: 50% !important;
    left: auto !important;
    width: 18px !important;
    height: 3px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: var(--kc2-red) !important;
    box-shadow: 0 0 16px rgba(229, 9, 20, .65) !important;
    opacity: 0 !important;
    transform: translateX(50%) scaleX(.35) !important;
    transition: opacity .18s ease, transform .18s ease !important;
}

body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn:is(.active, .is-active) {
    color: #fff !important;
    border-color: rgba(229, 9, 20, .25) !important;
    background: linear-gradient(180deg, rgba(229, 9, 20, .20), rgba(229, 9, 20, .075)) !important;
}

body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn:is(.active, .is-active) svg {
    color: #fff !important;
    stroke: #fff !important;
    filter: drop-shadow(0 0 8px rgba(229, 9, 20, .72)) !important;
}

body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn:is(.active, .is-active) .nav-indicator {
    opacity: 1 !important;
    transform: translateX(50%) scaleX(1) !important;
}

/* Home renderer injects legacy navigation rules after linked styles. The extra
   root specificity below intentionally keeps the V2 dock as the final theme. */
html body.kc-app-web.home-store-light:not(.admin-body) #bottom-navigation-bar .nav-btn:is(.active, .is-active),
html body.kc-app-web.netflix-theme:not(.admin-body) #bottom-navigation-bar .nav-btn:is(.active, .is-active) {
    color: #fff !important;
    border-color: rgba(229, 9, 20, .25) !important;
    background: linear-gradient(180deg, rgba(229, 9, 20, .20), rgba(229, 9, 20, .075)) !important;
}

html body.kc-app-web.home-store-light:not(.admin-body) #bottom-navigation-bar .nav-btn:is(.active, .is-active) :where(svg, b),
html body.kc-app-web.netflix-theme:not(.admin-body) #bottom-navigation-bar .nav-btn:is(.active, .is-active) :where(svg, b) {
    color: #fff !important;
    stroke: #fff !important;
}

html body.kc-app-web.home-store-light:not(.admin-body) #bottom-navigation-bar .nav-btn:is(.active, .is-active) .nav-indicator,
html body.kc-app-web.netflix-theme:not(.admin-body) #bottom-navigation-bar .nav-btn:is(.active, .is-active) .nav-indicator {
    background: var(--kc2-red) !important;
    opacity: 1 !important;
}

html body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn::after,
html body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn::before {
    display: none !important;
    content: none !important;
}

body.reels-active.kc-app-web:not(.admin-body) #bottom-navigation-bar {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* --------------------------------------------------------------------------
   Promotional download home
   -------------------------------------------------------------------------- */
body.kc-app-web.home-store-light:not(.admin-body) {
    background: var(--kc2-bg) !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web.home-store-light:not(.admin-body) .play-store-page.kc-store-v2 {
    position: relative !important;
    isolation: isolate !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: var(--kc2-bg) !important;
    color: var(--kc2-text) !important;
    letter-spacing: 0 !important;
}

.kc-store-v2 .kc-v2-ambient {
    position: absolute;
    z-index: -1;
    top: -22rem;
    right: -18rem;
    width: 55rem;
    height: 55rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 9, 20, .21), transparent 66%);
    filter: blur(4px);
    pointer-events: none;
}

.kc-store-v2 .kc-v2-container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.kc-store-v2 .kc-v2-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 76px 0 42px;
    border-bottom: 1px solid var(--kc2-border);
    background:
        linear-gradient(90deg, rgba(5, 5, 7, .99) 0%, rgba(5, 5, 7, .87) 43%, rgba(5, 5, 7, .34) 100%),
        radial-gradient(circle at 88% 30%, rgba(229, 9, 20, .18), transparent 32rem);
}

.kc-store-v2 .kc-v2-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 190px;
    background: linear-gradient(transparent, var(--kc2-bg));
    pointer-events: none;
}

.kc-store-v2 .kc-v2-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
    gap: clamp(36px, 6vw, 88px);
    align-items: center;
}

.kc-store-v2 .kc-v2-brand-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.kc-store-v2 .kc-v2-logo-mark,
.kc-store-v2 .kc-v2-final-logo {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 15px;
    background: linear-gradient(145deg, #ff2332, #a8000a);
    color: #fff;
    box-shadow: 0 15px 35px rgba(229, 9, 20, .28), inset 0 1px 0 rgba(255, 255, 255, .25);
    font-family: Inter, sans-serif;
    font-size: 26px;
    font-weight: 900;
}

.kc-store-v2 .kc-v2-logo-mark img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.kc-store-v2 .kc-v2-sub-downloads {
    display: grid;
    gap: 9px;
    width: min(100%, 560px);
    margin-top: 14px;
}

.kc-store-v2 .kc-v2-sub-downloads > p {
    margin: 0;
    color: var(--kc2-muted);
    font-size: 11px;
    font-weight: 800;
}

.kc-store-v2 .kc-v2-sub-downloads > div {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.kc-store-v2 .kc-v2-sub-download {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid var(--kc2-border);
    border-radius: 13px;
    background: rgba(255, 255, 255, .045);
    color: #fff !important;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.kc-store-v2 .kc-v2-sub-download:hover {
    border-color: rgba(229, 9, 20, .45);
    background: rgba(229, 9, 20, .1);
}

.kc-store-v2 .kc-v2-sub-download img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.kc-store-v2 .kc-v2-brand-row > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.kc-store-v2 .kc-v2-brand-row b {
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.kc-store-v2 .kc-v2-brand-row small {
    color: var(--kc2-muted);
    font-size: 11px;
}

.kc-store-v2 .kc-v2-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 31px;
    margin-bottom: 16px;
    padding: 5px 12px;
    border: 1px solid rgba(229, 9, 20, .28);
    border-radius: 999px;
    background: rgba(229, 9, 20, .08);
    color: #ffb0b6;
    font-size: 11px;
    font-weight: 800;
}

.kc-store-v2 .kc-v2-kicker i,
.kc-store-v2 .kc-v2-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--kc2-red-bright);
    box-shadow: 0 0 0 5px rgba(229, 9, 20, .13), 0 0 16px var(--kc2-red);
}

.kc-store-v2 .kc-v2-hero h1 {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 730px;
    margin: 0;
    color: #fff !important;
    font-size: clamp(42px, 5vw, 68px) !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    letter-spacing: -.035em;
}

.kc-store-v2 .kc-v2-hero h1 > span {
    color: #fff;
}

.kc-store-v2 .kc-v2-hero h1 > strong {
    color: transparent;
    background: linear-gradient(90deg, #fff 0%, #b8b8c0 73%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 800;
}

.kc-store-v2 .kc-v2-lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: #b4b4bd !important;
    font-size: 16px !important;
    line-height: 1.9 !important;
}

.kc-store-v2 .kc-v2-actions {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.kc-store-v2 .kc-v2-btn {
    display: inline-flex;
    min-width: 214px;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 11px 15px;
    border: 1px solid transparent;
    text-decoration: none;
}

.kc-store-v2 .kc-v2-btn-primary {
    background: linear-gradient(135deg, var(--kc2-red-bright), var(--kc2-red-dark));
    color: #fff !important;
    box-shadow: 0 17px 38px rgba(229, 9, 20, .25), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.kc-store-v2 .kc-v2-btn-primary:hover {
    box-shadow: 0 22px 46px rgba(229, 9, 20, .34), inset 0 1px 0 rgba(255, 255, 255, .2);
}

.kc-store-v2 .kc-v2-btn-secondary {
    border-color: var(--kc2-border-strong);
    background: rgba(255, 255, 255, .055);
    color: #fff !important;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.kc-store-v2 .kc-v2-btn-secondary:hover {
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .09);
}

.kc-store-v2 .kc-v2-btn-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 11px;
    background: rgba(255, 255, 255, .12);
}

.kc-store-v2 .kc-v2-btn-icon svg {
    width: 19px;
    height: 19px;
}

.kc-store-v2 .kc-v2-btn > span:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.kc-store-v2 .kc-v2-btn b {
    font-size: 13px;
    font-weight: 900;
}

.kc-store-v2 .kc-v2-btn small {
    color: rgba(255, 255, 255, .68);
    font-size: 9.5px;
}

.kc-store-v2 .kc-trust-row {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    margin-top: 15px !important;
    flex-wrap: wrap !important;
}

.kc-store-v2 .kc-trust-chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    min-height: 28px !important;
    padding: 4px 10px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .035) !important;
    color: #aaaab3 !important;
    font-size: 9.5px !important;
    font-weight: 700 !important;
}

.kc-store-v2 .kc-trust-chip svg {
    width: 14px !important;
    height: 14px !important;
}

.kc-store-v2 .kc-v2-stats-wrap {
    max-width: 560px;
    margin-top: 18px;
}

.kc-store-v2 .kc-stats-row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    overflow: hidden !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .035) !important;
}

.kc-store-v2 .kc-stat-chip {
    display: flex !important;
    min-height: 67px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    padding: 9px 8px !important;
    border: 0 !important;
    border-inline-start: 1px solid var(--kc2-border) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.kc-store-v2 .kc-stat-chip:first-child {
    border-inline-start: 0 !important;
}

.kc-store-v2 .kc-stat-icon {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    color: #fff !important;
    background: none !important;
}

.kc-store-v2 .kc-stat-icon svg {
    width: 16px !important;
    height: 16px !important;
}

.kc-store-v2 .kc-stat-chip .stat-value {
    margin: 0 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.kc-store-v2 .kc-stat-chip .stat-text {
    margin: 0 !important;
    color: var(--kc2-muted) !important;
    font-size: 9px !important;
}

.kc-store-v2 .kc-v2-showcase {
    position: relative;
    min-width: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kc-store-v2 .kc-v2-showcase-glow {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 9, 20, .32), rgba(118, 0, 8, .12) 45%, transparent 70%);
    filter: blur(18px);
}

.kc-store-v2 .kc-v2-showcase-frame {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 32px;
    background: #000;
    box-shadow: 0 34px 100px rgba(0, 0, 0, .64), 0 0 0 8px rgba(255, 255, 255, .018);
    transform: perspective(1200px) rotateY(-5deg) rotateX(1.5deg);
}

.kc-store-v2 .kc-v2-showcase-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, .10), transparent 20%, transparent 70%, rgba(229, 9, 20, .08));
    pointer-events: none;
}

.kc-store-v2 .kc-v2-showcase-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.kc-store-v2 .kc-v2-float-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 15px;
    background: rgba(16, 16, 21, .88);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .45);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.kc-store-v2 .kc-v2-float-card > span:last-child,
.kc-store-v2 .kc-v2-float-card:not(.kc-v2-float-live) {
    flex-direction: column;
}

.kc-store-v2 .kc-v2-float-card b {
    display: block;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.kc-store-v2 .kc-v2-float-card small {
    display: block;
    margin-top: 1px;
    color: var(--kc2-muted);
    font-size: 8.5px;
}

.kc-store-v2 .kc-v2-float-live {
    top: 10%;
    right: -3%;
}

.kc-store-v2 .kc-v2-float-rating {
    left: 0;
    bottom: 11%;
    align-items: flex-start;
}

.kc-store-v2 .kc-v2-float-rating b {
    color: #ffd65a;
    font-size: 15px;
}

.kc-store-v2 .kc-v2-content {
    position: relative;
    z-index: 2;
}

.kc-store-v2 .kc-v2-section,
.kc-store-v2 .kc-v2-native-sections > .play-section,
.kc-store-v2 .kc-v2-native-sections .play-section,
.kc-store-v2 .kc-v2-reviews {
    margin: 0 !important;
    padding: 92px 0 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.kc-store-v2 .kc-v2-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.kc-store-v2 .kc-v2-section-heading > div:first-child {
    min-width: 0;
}

.kc-store-v2 .kc-v2-section-heading span,
.kc-store-v2 .kc-section-eyebrow,
.kc-store-v2 .kc-section-head > span {
    display: block;
    margin-bottom: 7px;
    color: #ff4b58 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .08em;
}

.kc-store-v2 .kc-v2-section-heading h2,
.kc-store-v2 .kc-section-head h2,
.kc-store-v2 .app-details-section .section-title {
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(25px, 3vw, 38px) !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
}

.kc-store-v2 .kc-v2-section-heading > p {
    max-width: 440px;
    margin: 0;
    color: var(--kc2-muted) !important;
    font-size: 13px !important;
    line-height: 1.8;
}

.kc-store-v2 .kc-v2-version-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.kc-store-v2 .kc-v2-version-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--kc2-border);
    border-radius: var(--kc2-radius);
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, .06), transparent 14rem),
        var(--kc2-surface);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .20);
}

.kc-store-v2 .kc-v2-version-card.is-featured {
    border-color: rgba(229, 9, 20, .32);
    background:
        radial-gradient(circle at 100% 0, rgba(229, 9, 20, .18), transparent 18rem),
        linear-gradient(145deg, #171116, #101014 60%);
}

.kc-store-v2 .kc-v2-version-card::after {
    content: "";
    position: absolute;
    top: -45px;
    left: -45px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .025);
}

.kc-store-v2 .kc-v2-version-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.kc-store-v2 .kc-v2-device-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(229, 9, 20, .13);
    color: #ff5b66;
}

.kc-store-v2 .kc-v2-device-icon svg {
    width: 24px;
    height: 24px;
}

.kc-store-v2 .kc-v2-version-badge {
    padding: 6px 10px;
    border: 1px solid rgba(229, 9, 20, .24);
    border-radius: 999px;
    background: rgba(229, 9, 20, .10);
    color: #ff9ba2;
    font-size: 9px;
    font-weight: 900;
}

.kc-store-v2 .kc-v2-version-badge.is-dark {
    border-color: var(--kc2-border);
    background: rgba(255, 255, 255, .055);
    color: #c5c5cc;
}

.kc-store-v2 .kc-v2-version-card h3 {
    margin: 0;
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}

.kc-store-v2 .kc-v2-version-card > p {
    min-height: 52px;
    margin: 9px 0 22px;
    color: var(--kc2-muted) !important;
    font-size: 12px !important;
    line-height: 1.85;
}

.kc-store-v2 .kc-v2-version-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.kc-store-v2 .kc-v2-version-card li {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
    padding: 11px 12px;
    border: 1px solid var(--kc2-border);
    border-radius: 13px;
    background: rgba(255, 255, 255, .035);
}

.kc-store-v2 .kc-v2-version-card li b {
    color: var(--kc2-dim);
    font-size: 9px;
}

.kc-store-v2 .kc-v2-version-card li span {
    overflow: hidden;
    color: #efeff1;
    font-size: 11px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.kc-store-v2 .kc-v2-card-action {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid var(--kc2-red) !important;
    border-radius: 14px;
    background: var(--kc2-red) !important;
    color: #fff !important;
    font-size: 12px;
    font-weight: 900;
    transition: transform .2s ease, background .2s ease;
}

.kc-store-v2 .kc-v2-card-action:hover {
    background: var(--kc2-red-bright) !important;
    transform: translateY(-1px);
}

.kc-store-v2 .kc-v2-card-action.is-outline {
    border-color: var(--kc2-border-strong) !important;
    background: rgba(255, 255, 255, .05) !important;
}

.kc-store-v2 .kc-v2-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.kc-store-v2 .kc-v2-feature-card {
    position: relative;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 34px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--kc2-border);
    border-radius: 21px;
    background: linear-gradient(145deg, #15151b, #0f0f13);
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.kc-store-v2 .kc-v2-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 9, 20, .30);
    background: linear-gradient(145deg, #1a151a, #111115);
}

.kc-store-v2 .kc-v2-feature-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -75px;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 9, 20, .13), transparent 68%);
}

.kc-store-v2 .kc-v2-feature-wide {
    grid-column: span 2;
}

.kc-store-v2 .kc-v2-feature-card > i {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(229, 9, 20, .13);
    color: #ff606b;
    font-style: normal;
}

.kc-store-v2 .kc-v2-feature-card > i svg {
    width: 22px;
    height: 22px;
}

.kc-store-v2 .kc-v2-feature-card h3 {
    margin: 0 0 6px;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

.kc-store-v2 .kc-v2-feature-card p {
    margin: 0;
    color: var(--kc2-muted) !important;
    font-size: 11px !important;
    line-height: 1.75;
}

/* Panel-managed screenshots and details, re-skinned rather than replaced. */
.kc-store-v2 .kc-v2-native-sections .kc-section-head {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    margin-bottom: 25px !important;
}

.kc-store-v2 .kc-v2-native-sections .kc-section-head h2 {
    font-size: clamp(25px, 3vw, 36px) !important;
}

.kc-store-v2 #screenshots-carousel {
    display: flex !important;
    gap: 14px !important;
    padding: 4px 0 10px !important;
}

.kc-store-v2 .app-store-screenshot {
    width: 210px !important;
}

.kc-store-v2 .kc-phone-shot-shell {
    overflow: hidden !important;
    border: 1px solid var(--kc2-border-strong) !important;
    border-radius: 28px !important;
    background: #08080b !important;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .34) !important;
}

.kc-store-v2 .kc-empty-showcase {
    min-height: 275px !important;
    display: flex !important;
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    padding: 34px !important;
    border: 1px dashed rgba(255, 255, 255, .17) !important;
    border-radius: var(--kc2-radius) !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018)) !important;
}

.kc-store-v2 .kc-empty-showcase h3 {
    margin: 0 0 8px !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.kc-store-v2 .kc-empty-showcase p {
    max-width: 500px;
    margin: 0 !important;
    color: var(--kc2-muted) !important;
    font-size: 12px !important;
    line-height: 1.8 !important;
}

.kc-store-v2 .kc-v2-default-showcase {
    display: grid !important;
    grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr) !important;
    align-items: center !important;
    gap: 30px !important;
    min-height: 340px !important;
    border-style: solid !important;
}

.kc-store-v2 .kc-v2-default-showcase-media {
    overflow: hidden;
    border: 1px solid var(--kc2-border);
    border-radius: 20px;
    background: #000;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .36);
}

.kc-store-v2 .kc-v2-default-showcase-media img {
    display: block;
    width: 100%;
    height: auto;
}

.kc-store-v2 .kc-v2-default-showcase-copy > span {
    color: #ff5965 !important;
    font-size: 9px !important;
    font-weight: 900 !important;
}

.kc-store-v2 .kc-v2-default-showcase-copy > div {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.kc-store-v2 .kc-v2-default-showcase-copy b {
    padding: 6px 9px;
    border: 1px solid var(--kc2-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, .04);
    color: #d9d9de;
    font-size: 8.5px;
}

.kc-store-v2 .app-details-container {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.kc-store-v2 .app-details-container > .kc-section-eyebrow,
.kc-store-v2 .app-details-container > .tags-container {
    grid-column: 1 / -1;
}

.kc-store-v2 .app-details-section {
    min-height: 175px !important;
    margin: 0 !important;
    padding: 24px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 21px !important;
    background: var(--kc2-surface) !important;
}

.kc-store-v2 .app-details-section .section-title {
    font-size: 18px !important;
}

.kc-store-v2 .section-short-desc {
    color: var(--kc2-muted) !important;
    font-size: 12px !important;
    line-height: 1.85 !important;
}

.kc-store-v2 .kc-section-icon-badge {
    background: rgba(229, 9, 20, .12) !important;
    color: #ff616c !important;
}

.kc-store-v2 .kc-feature-grid {
    display: flex !important;
    gap: 8px !important;
    margin: 0 !important;
}

.kc-store-v2 .kc-feature-card {
    border: 1px solid var(--kc2-border) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .045) !important;
    color: #d6d6dc !important;
}

.kc-store-v2 .kc-v2-review-heading {
    align-items: center;
}

.kc-store-v2 .kc-v2-text-action,
.kc-store-v2 .kc-v2-review-feed button {
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 13px;
    background: rgba(255, 255, 255, .045) !important;
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
}

.kc-store-v2 .kc-v2-verified {
    width: max-content;
    max-width: 100%;
    margin: -15px 0 24px;
    color: var(--kc2-muted) !important;
    font-size: 10px !important;
    cursor: pointer;
}

.kc-store-v2 .kc-v2-review-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 18px;
}

.kc-store-v2 .kc-v2-rating-block,
.kc-store-v2 .kc-v2-review-feed {
    padding: 25px;
    border: 1px solid var(--kc2-border);
    border-radius: var(--kc2-radius);
    background: var(--kc2-surface);
}

.kc-store-v2 .kc-v2-rating-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kc-store-v2 .kc-rating-ring {
    display: flex !important;
    width: 106px !important;
    height: 106px !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 10px !important;
    border-radius: 50% !important;
    background: conic-gradient(from -90deg, #ffd65a, var(--kc2-red) 72%, rgba(255, 255, 255, .07) 0) !important;
}

.kc-store-v2 .kc-rating-ring::before {
    background: var(--kc2-surface) !important;
}

.kc-store-v2 .kc-rating-ring > div {
    position: relative;
    z-index: 1;
    color: #fff !important;
    font-size: 29px !important;
    font-weight: 900 !important;
}

.kc-store-v2 .kc-v2-stars {
    margin-bottom: 4px !important;
    color: #ffd65a !important;
    letter-spacing: 2px;
}

.kc-store-v2 #total-reviews-count {
    margin-bottom: 18px;
    color: var(--kc2-muted) !important;
    font-size: 10px;
}

.kc-store-v2 #rating-bars-container {
    width: 100%;
}

.kc-store-v2 #recent-reviews-container {
    margin: 0 !important;
}

.kc-store-v2 #recent-reviews-container > * {
    border-color: var(--kc2-border) !important;
    color: var(--kc2-text) !important;
}

.kc-store-v2 #recent-reviews-container > *:nth-child(n+3) {
    display: none !important;
}

.kc-store-v2 .add-review-section {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    align-items: center !important;
    gap: 14px !important;
    margin-top: 18px !important;
    padding: 16px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .035) !important;
}

.kc-store-v2 .add-review-section > div:first-child {
    display: flex;
    flex-direction: column;
}

.kc-store-v2 .add-review-section b {
    color: #fff;
    font-size: 12px;
}

.kc-store-v2 .add-review-section small {
    color: var(--kc2-muted);
    font-size: 9px;
}

.kc-store-v2 .kc-v2-add-stars {
    display: flex;
    direction: ltr;
    color: #ffd65a;
    font-size: 25px;
    cursor: pointer;
}

.kc-store-v2 .kc-v2-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kc-store-v2 .kc-v2-steps li {
    display: flex;
    min-height: 104px;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--kc2-border);
    border-radius: 18px;
    background: var(--kc2-surface);
}

.kc-store-v2 .kc-v2-steps li > b {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 13px;
    background: var(--kc2-red);
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 17px;
}

.kc-store-v2 .kc-v2-steps li > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.kc-store-v2 .kc-v2-steps strong {
    color: #fff;
    font-size: 13px;
}

.kc-store-v2 .kc-v2-steps small {
    color: var(--kc2-muted);
    font-size: 9.5px;
}

.kc-store-v2 .kc-v2-faq-grid {
    display: grid;
    gap: 9px;
}

.kc-store-v2 .kc-v2-faq details {
    border: 1px solid var(--kc2-border);
    border-radius: 17px;
    background: var(--kc2-surface);
}

.kc-store-v2 .kc-v2-faq summary {
    position: relative;
    padding: 18px 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.kc-store-v2 .kc-v2-faq summary::-webkit-details-marker {
    display: none;
}

.kc-store-v2 .kc-v2-faq summary::after {
    content: "+";
    position: absolute;
    left: 20px;
    color: #ff5b66;
    font-size: 19px;
}

.kc-store-v2 .kc-v2-faq details[open] summary::after {
    content: "−";
}

.kc-store-v2 .kc-v2-faq details p {
    margin: 0;
    padding: 0 20px 19px;
    color: var(--kc2-muted) !important;
    font-size: 11px !important;
    line-height: 1.8;
}

.kc-store-v2 .kc-v2-final-cta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-top: 92px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(229, 9, 20, .31);
    border-radius: 28px;
    background:
        radial-gradient(circle at 0 50%, rgba(229, 9, 20, .22), transparent 22rem),
        linear-gradient(120deg, #1b0c10, #111116 64%);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .30);
}

.kc-store-v2 .kc-v2-final-cta small {
    color: #ff7a83;
    font-size: 9px;
    font-weight: 900;
}

.kc-store-v2 .kc-v2-final-cta h2 {
    margin: 1px 0 3px;
    color: #fff !important;
    font-size: 25px !important;
    font-weight: 900 !important;
}

.kc-store-v2 .kc-v2-final-cta p {
    margin: 0;
    color: var(--kc2-muted) !important;
    font-size: 10px !important;
}

.kc-store-v2 .kc-v2-final-cta button {
    display: flex;
    min-height: 50px;
    align-items: center;
    gap: 18px;
    padding: 11px 18px;
    border: 0;
    border-radius: 15px;
    background: var(--kc2-red);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.kc-store-v2 .kc-reveal {
    opacity: 1;
    transform: none;
}

/* Download chooser and work-page app prompt */
body.kc-app-web:not(.admin-body) :where(#download-app-modal, #app-download-modal) {
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) :where(#download-app-modal, #app-download-modal) [class*="bg-white"] {
    background: var(--kc2-surface) !important;
}

body.kc-app-web:not(.admin-body) :where(#download-app-modal, #app-download-modal) [class*="text-gray"] {
    color: var(--kc2-muted) !important;
}

html body.kc-app-web:not(.admin-body) #app-download-links-modal .kc-download-head button {
    border: 1px solid var(--kc2-border-strong) !important;
    background: #22222a !important;
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) #app-download-links-modal .is-tv .kc-device-download-btn.is-primary {
    border: 1px solid rgba(229, 9, 20, .34) !important;
    background: linear-gradient(135deg, #2a2025, #17171d) !important;
    color: #fff !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .25) !important;
}

html body.kc-app-web:not(.admin-body) #app-download-links-modal .kc-download-device-card.is-tv::before {
    background: linear-gradient(145deg, rgba(229, 9, 20, .18), transparent 52%) !important;
}

body.kc-app-web:not(.admin-body) #smart-app-banner {
    border-color: rgba(255, 255, 255, .10) !important;
    background: rgba(14, 14, 18, .94) !important;
    box-shadow: 0 12px 38px rgba(0, 0, 0, .42) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    backdrop-filter: blur(18px) !important;
}

body.kc-app-web:not(.admin-body) .kc-settings-menu-card {
    border: 1px solid var(--kc2-border-strong) !important;
    background: #111116 !important;
    color: var(--kc2-text) !important;
    box-shadow: 0 -24px 80px rgba(0, 0, 0, .58) !important;
}

body.kc-app-web:not(.admin-body) .kc-settings-menu-item {
    min-height: 56px !important;
    border: 1px solid transparent !important;
    border-radius: 15px !important;
    background: transparent !important;
    color: #f1f1f3 !important;
}

body.kc-app-web:not(.admin-body) .kc-settings-menu-item:hover {
    border-color: rgba(229, 9, 20, .24) !important;
    background: rgba(229, 9, 20, .09) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-settings-menu-ico {
    background: rgba(229, 9, 20, .12) !important;
    color: #ff5a66 !important;
}

body.kc-app-web:not(.admin-body) .comments-sheet-content {
    border: 1px solid var(--kc2-border-strong) !important;
    background: #0f0f14 !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) .comments-sheet-content > div,
body.kc-app-web:not(.admin-body) #reel-comment-form-wrapper {
    border-color: var(--kc2-border) !important;
    background: #0f0f14 !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) #reel-comment-text-area {
    border: 1px solid var(--kc2-border-strong) !important;
    background: #191920 !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) #reel-submit-comment-btn {
    background: var(--kc2-red) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) #app-modal-overlay .text-green-500 {
    color: var(--kc2-red-bright) !important;
    filter: drop-shadow(0 0 15px rgba(229, 9, 20, .36)) !important;
}

body.kc-app-web:not(.admin-body) :where(#app-modal-overlay, #video-modal-overlay) > div {
    border-color: var(--kc2-border-strong) !important;
    background: #111116 !important;
}

@media (max-width: 1050px) {
    .kc-store-v2 .kc-v2-hero {
        min-height: auto;
        padding-top: 62px;
    }

    .kc-store-v2 .kc-v2-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(400px, .92fr);
        gap: 34px;
    }

    .kc-store-v2 .kc-v2-showcase {
        min-height: 410px;
    }

    .kc-store-v2 .kc-v2-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .kc-store-v2 .kc-v2-container {
        width: min(100% - 32px, 680px);
    }

    .kc-store-v2 .kc-v2-hero {
        padding: 42px 0 30px;
    }

    .kc-store-v2 .kc-v2-hero-grid {
        grid-template-columns: 1fr;
    }

    .kc-store-v2 .kc-v2-hero-copy {
        text-align: center;
    }

    .kc-store-v2 .kc-v2-brand-row,
    .kc-store-v2 .kc-v2-kicker {
        margin-inline: auto;
    }

    .kc-store-v2 .kc-v2-lead,
    .kc-store-v2 .kc-v2-stats-wrap {
        margin-inline: auto;
    }

    .kc-store-v2 .kc-v2-actions,
    .kc-store-v2 .kc-trust-row {
        justify-content: center !important;
    }

    .kc-store-v2 .kc-v2-showcase {
        min-height: 420px;
    }

    .kc-store-v2 .kc-v2-showcase-frame {
        max-width: 620px;
        transform: none;
    }

    .kc-store-v2 .kc-v2-float-live {
        right: 2%;
    }

    .kc-store-v2 .kc-v2-float-rating {
        left: 2%;
    }

    .kc-store-v2 .kc-v2-section,
    .kc-store-v2 .kc-v2-native-sections > .play-section,
    .kc-store-v2 .kc-v2-native-sections .play-section,
    .kc-store-v2 .kc-v2-reviews {
        padding-top: 68px !important;
    }

    .kc-store-v2 .kc-v2-review-layout {
        grid-template-columns: 1fr;
    }

    .kc-store-v2 .kc-v2-rating-block {
        display: grid;
        grid-template-columns: auto auto minmax(0, 1fr);
        column-gap: 15px;
        align-items: center;
    }

    .kc-store-v2 .kc-rating-ring {
        grid-row: span 2;
        margin: 0 !important;
    }

    .kc-store-v2 #rating-bars-container {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .kc-store-v2 .kc-v2-final-cta {
        margin-top: 68px;
    }
}

@media (max-width: 640px) {
    :root {
        --kc2-nav-height: 64px;
    }

    body.kc-app-web:not(.admin-body) {
        padding-bottom: calc(var(--kc2-nav-height) + env(safe-area-inset-bottom, 0px)) !important;
    }

    body.kc-app-web:not(.admin-body) #bottom-navigation-bar,
    body.kc-app-web.home-store-light:not(.admin-body) #bottom-navigation-bar,
    body.kc-app-web.netflix-theme:not(.admin-body) #bottom-navigation-bar {
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(var(--kc2-nav-height) + env(safe-area-inset-bottom, 0px)) !important;
        transform: none !important;
        border-right: 0 !important;
        border-bottom: 0 !important;
        border-left: 0 !important;
        border-radius: 22px 22px 0 0 !important;
    }

    body.kc-app-web:not(.admin-body) #bottom-navigation-bar > .kc-bottom-nav-inner {
        height: 100% !important;
        padding: 4px 4px env(safe-area-inset-bottom, 0px) !important;
    }

    body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn {
        min-height: 55px !important;
        border-radius: 14px !important;
    }

    body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn > svg {
        width: 21px !important;
        height: 21px !important;
    }

    body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-btn b {
        font-size: 9.5px !important;
    }

    .kc-store-v2 .kc-v2-container {
        width: calc(100% - 28px);
    }

    .kc-store-v2 .kc-v2-hero {
        padding: 28px 0 22px;
    }

    .kc-store-v2 .kc-v2-brand-row {
        margin-bottom: 22px;
    }

    .kc-store-v2 .kc-v2-logo-mark {
        width: 43px;
        height: 43px;
        border-radius: 13px;
        font-size: 23px;
    }

    .kc-store-v2 .kc-v2-hero h1 {
        font-size: clamp(34px, 10vw, 43px) !important;
        line-height: 1.15 !important;
    }

    .kc-store-v2 .kc-v2-lead {
        margin-top: 16px;
        font-size: 13px !important;
        line-height: 1.8 !important;
    }

    .kc-store-v2 .kc-v2-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 22px;
    }

    .kc-store-v2 .kc-v2-btn {
        width: 100%;
        min-width: 0;
    }

    .kc-store-v2 .kc-trust-row {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .kc-store-v2 .kc-trust-chip {
        flex: 0 0 auto;
    }

    .kc-store-v2 .kc-v2-stats-wrap {
        margin-top: 13px;
    }

    .kc-store-v2 .kc-stat-chip {
        min-height: 61px !important;
        padding: 8px 4px !important;
    }

    .kc-store-v2 .kc-stat-chip .stat-value {
        font-size: 10.5px !important;
    }

    .kc-store-v2 .kc-stat-chip .stat-text {
        font-size: 8px !important;
    }

    .kc-store-v2 .kc-v2-showcase {
        min-height: 270px;
        margin-top: 2px;
    }

    .kc-store-v2 .kc-v2-showcase-frame {
        border-radius: 19px;
        box-shadow: 0 22px 60px rgba(0, 0, 0, .55);
    }

    .kc-store-v2 .kc-v2-float-card {
        display: none;
    }

    .kc-store-v2 .kc-v2-section,
    .kc-store-v2 .kc-v2-native-sections > .play-section,
    .kc-store-v2 .kc-v2-native-sections .play-section,
    .kc-store-v2 .kc-v2-reviews {
        padding-top: 54px !important;
    }

    .kc-store-v2 .kc-v2-section-heading {
        display: block;
        margin-bottom: 19px;
    }

    .kc-store-v2 .kc-v2-section-heading h2,
    .kc-store-v2 .kc-section-head h2 {
        font-size: 24px !important;
    }

    .kc-store-v2 .kc-v2-section-heading > p {
        margin-top: 8px;
        font-size: 11px !important;
    }

    .kc-store-v2 .kc-v2-version-grid,
    .kc-store-v2 .app-details-container {
        grid-template-columns: 1fr !important;
    }

    .kc-store-v2 .kc-v2-version-card {
        padding: 22px;
        border-radius: 20px;
    }

    .kc-store-v2 .kc-v2-version-card > p {
        min-height: 0;
    }

    .kc-store-v2 .kc-v2-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .kc-store-v2 .kc-v2-feature-wide {
        grid-column: span 2;
    }

    .kc-store-v2 .kc-v2-feature-card {
        min-height: 158px;
        gap: 20px;
        padding: 18px;
        border-radius: 18px;
    }

    .kc-store-v2 .kc-v2-feature-card > i {
        width: 39px;
        height: 39px;
    }

    .kc-store-v2 .kc-v2-feature-card h3 {
        font-size: 13px !important;
    }

    .kc-store-v2 .kc-v2-feature-card p {
        font-size: 9.5px !important;
    }

    .kc-store-v2 .kc-empty-showcase {
        min-height: 190px !important;
        align-items: flex-start !important;
        padding: 23px !important;
    }

    .kc-store-v2 .kc-v2-default-showcase {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .kc-store-v2 .app-details-section {
        min-height: auto !important;
        padding: 20px !important;
    }

    .kc-store-v2 .kc-v2-review-heading .kc-v2-text-action {
        margin-top: 12px;
    }

    .kc-store-v2 .kc-v2-review-layout {
        gap: 10px;
    }

    .kc-store-v2 .kc-v2-rating-block,
    .kc-store-v2 .kc-v2-review-feed {
        padding: 19px;
        border-radius: 19px;
    }

    .kc-store-v2 .kc-v2-rating-block {
        display: flex;
    }

    .kc-store-v2 #rating-bars-container {
        width: 100%;
    }

    .kc-store-v2 .add-review-section {
        grid-template-columns: 1fr !important;
        justify-items: center;
        text-align: center;
    }

    .kc-store-v2 .kc-v2-steps {
        grid-template-columns: 1fr;
    }

    .kc-store-v2 .kc-v2-steps li {
        min-height: 88px;
    }

    .kc-store-v2 .kc-v2-final-cta {
        grid-template-columns: auto 1fr;
        gap: 14px;
        margin-top: 54px;
        padding: 24px;
        border-radius: 21px;
    }

    .kc-store-v2 .kc-v2-final-cta button {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: space-between;
    }

    .kc-store-v2 .kc-v2-final-cta h2 {
        font-size: 20px !important;
    }
}

/* V3 final color lock: legacy app-web rules use high-specificity green buttons. */
html body.kc-app-web.kc-app-web:not(.admin-body) #main-content .kc-primary-action,
html body.kc-app-web.kc-app-web:not(.admin-body) #main-content .kc-load-more-btn,
html body.kc-app-web.kc-app-web:not(.admin-body) #main-content .kc-library-open-app,
html body.kc-app-web.kc-app-web:not(.admin-body) #main-content .kc-account-primary-action,
html body.kc-app-web.kc-app-web:not(.admin-body) #main-content .kc-legal-report-v3,
html body.kc-app-web.kc-app-web:not(.admin-body) #main-content .kc-discover-download-cta,
html body.kc-app-web.kc-app-web:not(.admin-body) #page-content .kc-primary-action,
html body.kc-app-web.kc-app-web:not(.admin-body) #page-content .kc-load-more-btn,
html body.kc-app-web.kc-app-web:not(.admin-body) #page-content .kc-library-open-app,
html body.kc-app-web.kc-app-web:not(.admin-body) #page-content .kc-account-primary-action,
html body.kc-app-web.kc-app-web:not(.admin-body) #page-content .kc-legal-report-v3 {
    border-color: #e50914 !important;
    background-color: #e50914 !important;
    background-image: linear-gradient(135deg, #ff1824, #b20710) !important;
    color: #fff !important;
    box-shadow: 0 14px 32px rgba(229, 9, 20, .26) !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-hero-skeleton-v3 {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 13px;
    padding: clamp(24px, 5vw, 64px);
    overflow: hidden;
    border-radius: inherit;
    background:
        linear-gradient(90deg, transparent, rgba(255,255,255,.055), transparent) -120% 0 / 46% 100% no-repeat,
        radial-gradient(circle at 20% 10%, rgba(229,9,20,.18), transparent 38%),
        linear-gradient(135deg, #17171d, #0b0b0f 70%);
    animation: kc3-hero-shimmer 1.45s ease-in-out infinite;
}

html body.kc-app-web:not(.admin-body) .kc-library-hero-skeleton-v3 span {
    display: block;
    width: min(420px, 74%);
    height: 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
}

html body.kc-app-web:not(.admin-body) .kc-library-hero-skeleton-v3 span:first-child { width: min(520px, 84%); height: 42px; }
html body.kc-app-web:not(.admin-body) .kc-library-hero-skeleton-v3 span:nth-child(3) { width: min(330px, 62%); }
html body.kc-app-web:not(.admin-body) .kc-library-hero-skeleton-v3 i { width: 150px; height: 46px; margin-top: 7px; border-radius: 14px; background: rgba(229,9,20,.34); }

html body.kc-app-web:not(.admin-body) .kc-skeleton-strip {
    display: flex !important;
    gap: 13px !important;
    min-height: 310px;
    overflow: hidden !important;
}

html body.kc-app-web:not(.admin-body) .kc-skeleton-card {
    flex: 0 0 176px;
    min-height: 282px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
    background: linear-gradient(110deg, #15151b 24%, #202028 38%, #15151b 52%) 0 0 / 220% 100%;
    animation: kc3-card-shimmer 1.2s linear infinite;
}

@keyframes kc3-hero-shimmer { 50% { background-position: 220% 0, 0 0, 0 0; } }
@keyframes kc3-card-shimmer { to { background-position: -220% 0; } }

html body.kc-app-web.kc-app-web:not(.admin-body) #app-modal-overlay .kc-app-modal-download-link {
    border: 1px solid #e50914 !important;
    background-color: #e50914 !important;
    background-image: linear-gradient(135deg, #ff1824, #b20710) !important;
    color: #fff !important;
    box-shadow: 0 14px 32px rgba(229, 9, 20, .3) !important;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* --------------------------------------------------------------------------
   Account, profile, favourites and watch history
   -------------------------------------------------------------------------- */
body.kc-app-web:not(.admin-body) .kc-account-page-v2 {
    width: min(1120px, 100%) !important;
    min-height: 100vh !important;
    margin-inline: auto !important;
    padding-bottom: 120px !important;
    overflow: hidden !important;
    border-inline: 1px solid rgba(255, 255, 255, .055) !important;
    background: #08080b !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-profile-topbar {
    position: sticky !important;
    z-index: 70 !important;
    top: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    min-height: 64px !important;
    padding: 8px 18px !important;
    border-bottom: 1px solid var(--kc2-border) !important;
    background: rgba(8, 8, 11, .88) !important;
    -webkit-backdrop-filter: blur(18px) saturate(145%) !important;
    backdrop-filter: blur(18px) saturate(145%) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-topbar-side {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 7px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-topbar-left {
    justify-content: flex-end !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-icon-btn {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .045) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-icon-btn:hover {
    border-color: rgba(229, 9, 20, .28) !important;
    background: rgba(229, 9, 20, .10) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-brand {
    color: var(--kc2-red-bright) !important;
    font-family: Inter, sans-serif !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    letter-spacing: -.02em !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-cover {
    position: relative !important;
    width: calc(100% - 36px) !important;
    height: clamp(190px, 31vw, 340px) !important;
    margin: 18px auto 0 !important;
    overflow: hidden !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 26px !important;
    background: #101015 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(5, 5, 7, .68));
    pointer-events: none;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-cover-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-cover-edit,
body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-avatar-edit {
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    background: rgba(10, 10, 14, .78) !important;
    color: #fff !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-profile-head {
    position: relative !important;
    z-index: 4 !important;
    display: flex !important;
    align-items: flex-end !important;
    gap: 22px !important;
    margin: -72px 38px 0 !important;
    padding-bottom: 20px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-avatar-wrap {
    position: relative !important;
    width: 145px !important;
    height: 145px !important;
    flex: 0 0 145px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-avatar-ring {
    width: 100% !important;
    height: 100% !important;
    padding: 5px !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, var(--kc2-red-bright), #500006) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .48) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-avatar-img,
body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-avatar-ring > img,
body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-avatar-ring > span {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid #08080b !important;
    border-radius: 50% !important;
    background: #27272f !important;
    color: #fff !important;
    object-fit: cover !important;
    font-size: 36px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-identity {
    min-width: 0 !important;
    padding-bottom: 7px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-identity h1 {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(24px, 4vw, 36px) !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-identity > p {
    margin: 2px 0 6px !important;
    color: #7e7e88 !important;
    font-size: 12px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-identity > span {
    display: block !important;
    max-width: 620px !important;
    color: #b6b6be !important;
    font-size: 12px !important;
    line-height: 1.75 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-verified-badge {
    display: inline-flex !important;
    width: 24px !important;
    height: 24px !important;
    color: var(--kc-verified-color, #3897f0) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 :where(.kc-cinema-dashboard, .kc-cinema-stats, .kc-cinema-actions, .kc-cinema-highlights, .kc-cinema-studio, .kc-cinema-mutual, .kc-cinema-content) {
    width: calc(100% - 76px) !important;
    margin-inline: auto !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-dashboard {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 14px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-dashboard-card {
    position: relative !important;
    min-height: 112px !important;
    padding: 17px !important;
    overflow: hidden !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 19px !important;
    background: var(--kc2-surface) !important;
    box-shadow: none !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-dashboard-card > span {
    display: inline-flex !important;
    width: 34px !important;
    height: 34px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 11px !important;
    background: rgba(229, 9, 20, .11) !important;
    color: #ff5d69 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-dashboard-card p {
    margin: 10px 0 2px !important;
    color: var(--kc2-muted) !important;
    font-size: 10px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-dashboard-card strong {
    color: #fff !important;
    font-size: 19px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-dashboard-card i {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    width: var(--value, 0%) !important;
    max-width: 100% !important;
    height: 3px !important;
    background: var(--kc2-red) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-actions {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: minmax(0, 1fr) !important;
    gap: 9px !important;
    margin-top: 13px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 :where(.kc-cinema-primary, .kc-cinema-secondary, .kc-cinema-square) {
    display: inline-flex !important;
    min-height: 49px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 9px 14px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 15px !important;
    background: rgba(255, 255, 255, .05) !important;
    color: #fff !important;
    box-shadow: none !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-primary {
    border-color: var(--kc2-red) !important;
    background: var(--kc2-red) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-primary.is-following {
    border-color: var(--kc2-border-strong) !important;
    background: rgba(255, 255, 255, .055) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-square {
    min-width: 49px !important;
    padding: 9px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-stats {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    margin-top: 15px !important;
    overflow: hidden !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, .027) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-stat {
    display: flex !important;
    min-height: 78px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 5px !important;
    border-inline-start: 1px solid var(--kc2-border) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-stat:first-child {
    border-inline-start: 0 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-stat strong {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-stat span {
    color: var(--kc2-muted) !important;
    font-size: 9px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-highlights,
body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-studio-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 9px !important;
    margin-top: 16px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 :where(.kc-cinema-highlight, .kc-cinema-studio-tile) {
    position: relative !important;
    display: flex !important;
    min-height: 94px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 8px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 17px !important;
    background: var(--kc2-surface) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 :where(.kc-cinema-highlight, .kc-cinema-studio-tile) > span:first-child {
    color: #ff5f6a !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 :where(.kc-cinema-highlight, .kc-cinema-studio-tile) strong {
    color: #fff !important;
    font-size: 10px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-studio {
    margin-top: 22px !important;
    padding-top: 19px !important;
    border-top: 1px solid var(--kc2-border) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-studio > h2 {
    margin: 0 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-mutual {
    margin-top: 13px !important;
    padding: 12px 14px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .035) !important;
    color: var(--kc2-muted) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-content {
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px solid var(--kc2-border) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-tabs {
    display: flex !important;
    gap: 7px !important;
    margin: 0 0 18px !important;
    padding: 0 0 8px !important;
    overflow-x: auto !important;
    border: 0 !important;
    scrollbar-width: none !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-tab {
    display: inline-flex !important;
    min-width: max-content !important;
    min-height: 43px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 8px 13px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .035) !important;
    color: #96969f !important;
    font-size: 10px !important;
    font-weight: 800 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-tab.active {
    border-color: rgba(229, 9, 20, .34) !important;
    background: rgba(229, 9, 20, .14) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-tab-panel {
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-panel-card {
    margin-bottom: 12px !important;
    padding: 21px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 19px !important;
    background: var(--kc2-surface) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-panel-heading {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-panel-heading > .material-symbols-rounded {
    display: inline-flex !important;
    width: 39px !important;
    height: 39px !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    border-radius: 12px !important;
    background: rgba(229, 9, 20, .12) !important;
    color: #ff606b !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-panel-heading h2 {
    margin: 0 !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-panel-heading p {
    margin: 1px 0 0 !important;
    color: var(--kc2-muted) !important;
    font-size: 9.5px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-info-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-info-list > div {
    padding: 13px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, .027) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-info-list dt {
    color: var(--kc2-dim) !important;
    font-size: 9px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-info-list dd {
    margin: 3px 0 0 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-switch-list,
body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-settings-links {
    display: grid !important;
    gap: 7px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 :where(.kc-account-switch-row, .kc-account-settings-link) {
    display: flex !important;
    min-height: 58px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 13px !important;
    padding: 11px 14px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 15px !important;
    background: rgba(255, 255, 255, .027) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-switch-copy {
    display: flex !important;
    flex-direction: column !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-switch-copy strong,
body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-settings-link span {
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-switch-copy small {
    color: var(--kc2-muted) !important;
    font-size: 8.5px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-switch-control {
    position: relative !important;
    width: 44px !important;
    height: 25px !important;
    flex: 0 0 auto !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-switch-control input {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-switch-control i {
    position: absolute !important;
    inset: 0 !important;
    border-radius: 999px !important;
    background: #373741 !important;
    transition: background .2s ease !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-switch-control i::after {
    content: "";
    position: absolute;
    top: 3px;
    right: 3px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #fff;
    transition: transform .2s ease;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-switch-control input:checked + i {
    background: var(--kc2-red) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-switch-control input:checked + i::after {
    transform: translateX(-19px);
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-settings-links {
    margin-top: 12px !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-settings-link {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    text-align: right !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-settings-link--danger,
body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-settings-link--danger span {
    color: #ff626c !important;
}

body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-fab {
    position: fixed !important;
    z-index: 80 !important;
    right: max(22px, calc((100vw - 1120px) / 2 + 22px)) !important;
    bottom: 104px !important;
    display: inline-flex !important;
    width: 54px !important;
    height: 54px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 18px !important;
    background: var(--kc2-red) !important;
    color: #fff !important;
    box-shadow: 0 18px 40px rgba(229, 9, 20, .30) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-collection-page {
    width: min(1180px, 100%) !important;
    min-height: 100vh !important;
    margin-inline: auto !important;
    padding: 26px 26px 120px !important;
    background: var(--kc2-bg) !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-collection-header {
    position: sticky !important;
    z-index: 50 !important;
    top: 0 !important;
    min-height: 64px !important;
    margin: 0 0 23px !important;
    padding: 8px 0 13px !important;
    border-bottom: 1px solid var(--kc2-border) !important;
    background: rgba(5, 5, 7, .88) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-collection-header h1 {
    color: #fff !important;
    font-size: 23px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-account-collection-header button {
    min-width: 43px !important;
    min-height: 43px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, .045) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-account-empty-state,
body.kc-app-web:not(.admin-body) .kc-account-page-state {
    min-height: 340px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 30px !important;
    border: 1px dashed var(--kc2-border-strong) !important;
    border-radius: 22px !important;
    background: var(--kc2-surface) !important;
    color: var(--kc2-muted) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-primary-action {
    border: 0 !important;
    background: var(--kc2-red) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-account-history-card {
    overflow: hidden !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 17px !important;
    background: var(--kc2-surface) !important;
    box-shadow: none !important;
}

body.kc-app-web:not(.admin-body) .kc-account-history-card > div {
    border-color: var(--kc2-border) !important;
    background: var(--kc2-surface) !important;
}

body.kc-app-web:not(.admin-body) .kc-account-history-card h3 {
    color: #fff !important;
}

/* Auth/edit surfaces still keep their existing forms and IDs. */
body.kc-app-web:not(.admin-body).kc-page-auth #main-content,
body.kc-app-web:not(.admin-body) [data-kc-page="auth"] {
    color: var(--kc2-text) !important;
    background: var(--kc2-bg) !important;
}

body.kc-app-web:not(.admin-body).kc-page-auth #main-content :where(.bg-white, .bg-gray-50, .bg-gray-100),
body.kc-app-web:not(.admin-body) [data-kc-page="auth"] :where(.bg-white, .bg-gray-50, .bg-gray-100) {
    border-color: var(--kc2-border) !important;
    background: var(--kc2-surface) !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body).kc-page-auth #main-content :where(input, textarea, select),
body.kc-app-web:not(.admin-body) [data-kc-page="auth"] :where(input, textarea, select) {
    min-height: 48px !important;
    border: 1px solid var(--kc2-border-strong) !important;
    border-radius: 14px !important;
    background: #0d0d12 !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body).kc-page-auth #main-content :where(.bg-blue-500, .bg-green-500, .bg-emerald-500),
body.kc-app-web:not(.admin-body) [data-kc-page="auth"] :where(.bg-blue-500, .bg-green-500, .bg-emerald-500) {
    background: var(--kc2-red) !important;
    color: #fff !important;
}

@media (max-width: 720px) {
    body.kc-app-web:not(.admin-body) .kc-account-page-v2 {
        border: 0 !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-profile-topbar {
        min-height: 58px !important;
        padding: 6px 11px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-icon-btn {
        width: 39px !important;
        height: 39px !important;
        border-radius: 12px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-brand {
        font-size: 14px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-cover {
        width: calc(100% - 24px) !important;
        height: 190px !important;
        margin-top: 12px !important;
        border-radius: 20px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-profile-head {
        display: block !important;
        margin: -55px 18px 0 !important;
        text-align: center !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-avatar-wrap {
        width: 112px !important;
        height: 112px !important;
        margin-inline: auto !important;
        flex-basis: 112px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-identity {
        margin-top: 8px !important;
        padding-bottom: 0 !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-identity h1 {
        justify-content: center !important;
        font-size: 24px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 :where(.kc-cinema-dashboard, .kc-cinema-stats, .kc-cinema-actions, .kc-cinema-highlights, .kc-cinema-studio, .kc-cinema-mutual, .kc-cinema-content) {
        width: calc(100% - 28px) !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-dashboard {
        gap: 7px !important;
        margin-top: 8px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-dashboard-card {
        min-height: 101px !important;
        padding: 13px !important;
        border-radius: 16px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-dashboard-card p {
        font-size: 8.5px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-actions {
        grid-auto-flow: row !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-stats {
        margin-top: 10px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-stat {
        min-height: 67px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-highlights,
    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-studio-grid {
        grid-template-columns: repeat(4, minmax(72px, 1fr)) !important;
        overflow-x: auto !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-panel-card {
        padding: 17px !important;
        border-radius: 17px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-account-info-list {
        grid-template-columns: 1fr !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-page-v2 .kc-cinema-fab {
        right: 16px !important;
        bottom: 82px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-account-collection-page {
        padding: 15px 14px 100px !important;
    }
}

/* --------------------------------------------------------------------------
   Film and series details
   -------------------------------------------------------------------------- */
body.kc-app-web:not(.admin-body) .kc-work-details {
    width: 100% !important;
    min-height: 100vh !important;
    padding-bottom: 115px !important;
    overflow: hidden !important;
    background: var(--kc2-bg) !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-hero {
    position: relative !important;
    min-height: 700px !important;
    display: flex !important;
    align-items: flex-end !important;
    overflow: hidden !important;
    background: #08080c !important;
}

body.kc-app-web:not(.admin-body) .kc-work-hero-media {
    position: absolute !important;
    inset: 0 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-backdrop {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 24% !important;
    opacity: .72 !important;
    filter: saturate(.88) contrast(1.04) !important;
    transform: scale(1.025) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-hero--poster-fallback .kc-work-backdrop {
    object-fit: cover !important;
    object-position: center 25% !important;
    opacity: .47 !important;
    filter: blur(24px) saturate(.8) brightness(.60) !important;
    transform: scale(1.16) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-hero-scrim {
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, rgba(5, 5, 7, .98) 0%, rgba(5, 5, 7, .74) 36%, rgba(5, 5, 7, .24) 76%, rgba(5, 5, 7, .50) 100%),
        linear-gradient(180deg, rgba(5, 5, 7, .05) 0%, rgba(5, 5, 7, .20) 44%, var(--kc2-bg) 96%) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-hero-content {
    position: relative !important;
    z-index: 2 !important;
    width: min(1240px, calc(100% - 48px)) !important;
    max-width: none !important;
    margin-inline: auto !important;
    padding: 82px 0 56px !important;
}

@media (min-width: 901px) {
    body.kc-app-web:not(.admin-body) .kc-work-copy {
        transform: translateY(-56px) !important;
    }
}

body.kc-app-web:not(.admin-body) .kc-work-back-link {
    display: inline-flex !important;
    min-height: 42px !important;
    align-items: center !important;
    gap: 7px !important;
    margin-bottom: 22px !important;
    padding: 8px 13px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 13px !important;
    background: rgba(8, 8, 11, .50) !important;
    color: #d5d5da !important;
    -webkit-backdrop-filter: blur(12px) !important;
    backdrop-filter: blur(12px) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-hero-grid {
    display: grid !important;
    grid-template-columns: 260px minmax(0, 1fr) !important;
    gap: clamp(30px, 5vw, 64px) !important;
    align-items: end !important;
}

body.kc-app-web:not(.admin-body) .kc-work-poster {
    width: 260px !important;
    max-width: none !important;
    aspect-ratio: 2 / 3 !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 23px !important;
    background: var(--kc2-surface) !important;
    box-shadow: 0 28px 75px rgba(0, 0, 0, .56), 0 0 0 7px rgba(255, 255, 255, .018) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-poster img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

body.kc-app-web:not(.admin-body) .kc-work-copy {
    min-width: 0 !important;
    width: auto !important;
    padding-bottom: 3px !important;
    text-align: right !important;
}

body.kc-app-web:not(.admin-body) .kc-work-eyebrow {
    display: inline-flex !important;
    min-height: 31px !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 5px 11px !important;
    border: 1px solid rgba(229, 9, 20, .30) !important;
    border-radius: 999px !important;
    background: rgba(229, 9, 20, .10) !important;
    color: #ff939b !important;
    font-size: 9.5px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-title {
    max-width: 900px !important;
    margin: 13px 0 0 !important;
    color: #fff !important;
    font-size: clamp(36px, 5.5vw, 70px) !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    letter-spacing: -.035em !important;
    text-wrap: balance !important;
}

body.kc-app-web:not(.admin-body) .kc-work-title-en {
    max-width: 760px !important;
    margin: 7px 0 0 !important;
    color: #a8a8b1 !important;
    font-family: Inter, sans-serif !important;
    font-size: clamp(13px, 2vw, 20px) !important;
    font-weight: 600 !important;
    text-align: right !important;
    direction: ltr !important;
}

body.kc-app-web:not(.admin-body) .kc-work-meta {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    margin-top: 17px !important;
}

body.kc-app-web:not(.admin-body) .kc-work-meta > span,
body.kc-app-web:not(.admin-body) .kc-work-category-chip {
    display: inline-flex !important;
    min-height: 30px !important;
    align-items: center !important;
    padding: 5px 10px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .065) !important;
    color: #e9e9ec !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-meta .kc-work-rating {
    border-color: rgba(255, 214, 90, .36) !important;
    background: rgba(255, 214, 90, .12) !important;
    color: #ffd65a !important;
}

body.kc-app-web:not(.admin-body) .kc-work-meta .kc-work-type,
body.kc-app-web:not(.admin-body) .kc-work-category-chip {
    border-color: rgba(229, 9, 20, .32) !important;
    background: rgba(229, 9, 20, .14) !important;
    color: #ff8d95 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-genres {
    margin-top: 11px !important;
    color: #aaaab3 !important;
    font-size: 10.5px !important;
    line-height: 1.8 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-genre-link {
    color: #d8d8dc !important;
}

body.kc-app-web:not(.admin-body) .kc-work-description {
    max-width: 820px !important;
    margin: 15px 0 0 !important;
    color: #b7b7bf !important;
    font-size: 13px !important;
    line-height: 1.9 !important;
    text-align: right !important;
}

body.kc-app-web:not(.admin-body) .kc-work-actions {
    display: flex !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 9px !important;
    padding-top: 20px !important;
}

body.kc-app-web:not(.admin-body) :where(.kc-work-primary-action, .kc-work-secondary-action) {
    display: inline-flex !important;
    width: auto !important;
    min-height: 52px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 11px 22px !important;
    border-radius: 15px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-primary-action {
    border: 1px solid var(--kc2-red) !important;
    background: linear-gradient(135deg, var(--kc2-red-bright), var(--kc2-red-dark)) !important;
    color: #fff !important;
    box-shadow: 0 17px 37px rgba(229, 9, 20, .26) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-secondary-action {
    border: 1px solid var(--kc2-border-strong) !important;
    background: rgba(255, 255, 255, .065) !important;
    color: #fff !important;
    box-shadow: none !important;
}

body.kc-app-web:not(.admin-body) .kc-work-app-note {
    margin: 9px 0 0 !important;
    color: #85858f !important;
    font-size: 9.5px !important;
}

body.kc-app-web:not(.admin-body) .kc-work-interactions {
    margin-top: 22px !important;
    padding-top: 15px !important;
    overflow-x: auto !important;
    border-top: 1px solid var(--kc2-border) !important;
    scrollbar-width: none !important;
}

body.kc-app-web:not(.admin-body) .kc-work-interaction-row {
    display: flex !important;
    width: max-content !important;
    min-width: 100% !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    padding: 0 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-interaction {
    display: inline-flex !important;
    min-height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 8px 11px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, .045) !important;
    color: #b9b9c1 !important;
    font-size: 9.5px !important;
    font-weight: 800 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-interaction:hover,
body.kc-app-web:not(.admin-body) .kc-work-interaction.active {
    border-color: rgba(229, 9, 20, .31) !important;
    background: rgba(229, 9, 20, .11) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-work-interaction.kc-work-rate {
    border-color: rgba(255, 214, 90, .25) !important;
    background: rgba(255, 214, 90, .075) !important;
    color: #ffd65a !important;
}

body.kc-app-web:not(.admin-body) :where(.kc-work-episodes, .kc-work-cast, .kc-work-comments) {
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: none !important;
    margin: 0 auto !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episodes {
    padding: 78px 0 0 !important;
    border: 0 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-section-heading {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin-bottom: 22px !important;
    padding: 0 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-section-kicker {
    color: #ff5965 !important;
    font-size: 9.5px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-section-heading h3,
body.kc-app-web:not(.admin-body) .kc-work-cast > h3,
body.kc-app-web:not(.admin-body) .kc-work-comments > h2 {
    margin: 3px 0 0 !important;
    color: #fff !important;
    font-size: clamp(24px, 3vw, 34px) !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-section-count {
    padding: 6px 10px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .04) !important;
    color: var(--kc2-muted) !important;
    font-size: 9px !important;
}

body.kc-app-web:not(.admin-body) .kc-work-season-tabs {
    display: flex !important;
    gap: 7px !important;
    margin: 0 0 18px !important;
    padding: 0 0 8px !important;
    overflow-x: auto !important;
    border: 0 !important;
    scrollbar-width: none !important;
}

body.kc-app-web:not(.admin-body) .kc-work-season-tab,
body.kc-app-web:not(.admin-body) .kc-work-season-single {
    min-width: max-content !important;
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 14px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, .04) !important;
    color: #a9a9b2 !important;
    box-shadow: none !important;
    font-size: 10px !important;
    font-weight: 800 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-season-tab:is(.bg-blue-600, .is-active, [aria-selected="true"]) {
    border-color: rgba(229, 9, 20, .34) !important;
    background: rgba(229, 9, 20, .14) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episodes-list {
    padding: 0 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-season-panel {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px !important;
}

body.kc-app-web:not(.admin-body) .kc-work-season-panel.hidden {
    display: none !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-card {
    display: grid !important;
    grid-template-columns: 190px minmax(0, 1fr) !important;
    gap: 15px !important;
    min-width: 0 !important;
    padding: 13px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 18px !important;
    background: var(--kc2-surface) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-card:hover {
    border-color: rgba(229, 9, 20, .25) !important;
    background: #15151b !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-media {
    width: 190px !important;
    max-width: none !important;
    aspect-ratio: 16 / 10 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    background: #08080b !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-number,
body.kc-app-web:not(.admin-body) .kc-work-episode-duration {
    padding: 4px 7px !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 8px !important;
    background: rgba(5, 5, 7, .78) !important;
    color: #fff !important;
    font-size: 8px !important;
    -webkit-backdrop-filter: blur(8px) !important;
    backdrop-filter: blur(8px) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-play {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, .28) !important;
    border-radius: 50% !important;
    background: rgba(229, 9, 20, .88) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-copy {
    min-width: 0 !important;
    padding: 2px 0 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-title {
    margin: 0 0 4px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-description {
    margin: 0 0 10px !important;
    color: var(--kc2-muted) !important;
    font-size: 9.5px !important;
    line-height: 1.7 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-cta,
body.kc-app-web:not(.admin-body) .kc-work-support-btn {
    min-height: 38px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, .05) !important;
    color: #fff !important;
    font-size: 9px !important;
    font-weight: 800 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-episode-cta:hover {
    border-color: var(--kc2-red) !important;
    background: var(--kc2-red) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-cast {
    padding: 78px 0 0 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-cast-list {
    display: flex !important;
    gap: 12px !important;
    padding: 2px 0 10px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
}

body.kc-app-web:not(.admin-body) .kc-work-cast-card {
    width: 138px !important;
    flex: 0 0 138px !important;
    text-align: center !important;
}

body.kc-app-web:not(.admin-body) .kc-work-cast-photo {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 2 / 3 !important;
    margin-bottom: 10px !important;
    overflow: hidden !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 17px !important;
    background: var(--kc2-surface) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-cast-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

body.kc-app-web:not(.admin-body) .kc-work-cast-name {
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-cast-name-en,
body.kc-app-web:not(.admin-body) .kc-work-cast-role,
body.kc-app-web:not(.admin-body) .kc-work-cast-role-type {
    color: var(--kc2-muted) !important;
    font-size: 8.5px !important;
}

body.kc-app-web:not(.admin-body) .kc-work-cast-role {
    margin-top: 6px !important;
    padding-top: 6px !important;
    border-top: 1px solid var(--kc2-border) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-company {
    margin: 60px auto 0 !important;
    padding: 13px 18px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 15px !important;
    background: var(--kc2-surface) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-company-link {
    color: #ff6b75 !important;
}

body.kc-app-web:not(.admin-body) .kc-work-comments {
    margin-top: 78px !important;
    margin-bottom: 35px !important;
    padding: 27px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 24px !important;
    background: var(--kc2-surface) !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .24) !important;
}

body.kc-app-web:not(.admin-body) .kc-work-comment-form textarea,
body.kc-app-web:not(.admin-body) .kc-work-comment-form input {
    min-height: 52px !important;
    border: 1px solid var(--kc2-border-strong) !important;
    border-radius: 15px !important;
    background: #0b0b0f !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-work-comment-submit {
    min-height: 46px !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: var(--kc2-red) !important;
    color: #fff !important;
    box-shadow: none !important;
}

body.kc-app-web:not(.admin-body) .kc-work-comments-list > * {
    border-color: var(--kc2-border) !important;
    color: var(--kc2-text) !important;
}

@media (max-width: 900px) {
    body.kc-app-web:not(.admin-body) .kc-work-hero {
        min-height: auto !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-hero-scrim {
        background:
            linear-gradient(180deg, rgba(5, 5, 7, .12) 0%, rgba(5, 5, 7, .60) 34%, var(--kc2-bg) 78%) !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-hero-content {
        width: min(100% - 32px, 680px) !important;
        padding: 45px 0 38px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-hero-grid {
        grid-template-columns: 190px minmax(0, 1fr) !important;
        gap: 26px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-poster {
        width: 190px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-title {
        font-size: clamp(32px, 7vw, 48px) !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-season-panel {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 620px) {
    body.kc-app-web:not(.admin-body) .kc-work-details {
        padding-bottom: 85px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-hero {
        align-items: stretch !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-backdrop {
        height: 52vh !important;
        min-height: 420px !important;
        object-position: center top !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-hero-media {
        height: 54vh !important;
        min-height: 430px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-hero-content {
        width: calc(100% - 28px) !important;
        padding: 22px 0 30px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-back-link {
        margin-bottom: 185px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-hero-grid {
        display: block !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-poster {
        display: none !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-copy {
        width: 100% !important;
        padding: 0 !important;
        text-align: center !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-eyebrow {
        font-size: 8.5px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-title {
        margin-top: 11px !important;
        font-size: 34px !important;
        line-height: 1.16 !important;
        text-align: center !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-title-en {
        margin-inline: auto !important;
        font-size: 13px !important;
        text-align: center !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-meta,
    body.kc-app-web:not(.admin-body) .kc-work-actions {
        justify-content: center !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-genres,
    body.kc-app-web:not(.admin-body) .kc-work-description,
    body.kc-app-web:not(.admin-body) .kc-work-app-note {
        margin-inline: auto !important;
        text-align: center !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-description {
        font-size: 11.5px !important;
        line-height: 1.8 !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    body.kc-app-web:not(.admin-body) :where(.kc-work-primary-action, .kc-work-secondary-action) {
        width: 100% !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-interaction-row {
        justify-content: flex-start !important;
    }

    body.kc-app-web:not(.admin-body) :where(.kc-work-episodes, .kc-work-cast, .kc-work-comments) {
        width: calc(100% - 28px) !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-episodes,
    body.kc-app-web:not(.admin-body) .kc-work-cast {
        padding-top: 54px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-section-heading {
        padding: 0 !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-section-heading h3,
    body.kc-app-web:not(.admin-body) .kc-work-cast > h3,
    body.kc-app-web:not(.admin-body) .kc-work-comments > h2 {
        font-size: 23px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-episode-card {
        grid-template-columns: 132px minmax(0, 1fr) !important;
        gap: 11px !important;
        padding: 10px !important;
        border-radius: 15px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-episode-media {
        width: 132px !important;
        border-radius: 12px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-episode-description {
        display: none !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-episode-title {
        font-size: 11px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-episode-cta {
        min-height: 34px !important;
        padding: 6px 10px !important;
        font-size: 8px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-cast-card {
        width: 112px !important;
        flex-basis: 112px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-work-comments {
        margin-top: 54px !important;
        padding: 19px !important;
        border-radius: 20px !important;
    }
}

/* --------------------------------------------------------------------------
   Web watch / Discover player — presentation only, player logic untouched
   -------------------------------------------------------------------------- */
body.kc-app-web:not(.admin-body) .kc-watch-page {
    width: min(1500px, 100%) !important;
    max-width: 1500px !important;
    min-height: 100vh !important;
    margin-inline: auto !important;
    padding: 26px 26px 120px !important;
    gap: 20px !important;
    overflow: visible !important;
    background: var(--kc2-bg) !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-main {
    width: min(100%, 1010px) !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-player-shell {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .13) !important;
    border-radius: 22px !important;
    background: #000 !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .54), 0 0 0 7px rgba(255, 255, 255, .018) !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-player-container,
body.kc-app-web:not(.admin-body) .kc-watch-player-container > *,
body.kc-app-web:not(.admin-body) .kc-watch-player-shell :where(video, iframe) {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-player-loading {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
        radial-gradient(circle at 50% 50%, rgba(229, 9, 20, .12), transparent 18rem),
        #020203 !important;
    color: #d8d8dd !important;
    font-size: 12px !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-info {
    width: 100% !important;
    padding: 22px 2px 0 !important;
    background: transparent !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-title {
    max-width: 900px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(24px, 3vw, 38px) !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
    letter-spacing: -.02em !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-title-en {
    margin: 4px 0 15px !important;
    color: #85858f !important;
    font-family: Inter, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-align: right !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-promo {
    margin: 10px 0 14px !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-promo-link {
    display: inline-flex !important;
    min-height: 39px !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(229, 9, 20, .30) !important;
    border-radius: 13px !important;
    background: rgba(229, 9, 20, .10) !important;
    color: #ff8b94 !important;
    font-size: 10px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) :where(.kc-watch-description-card, .kc-watch-publisher, .kc-watch-comments-preview) {
    border: 1px solid var(--kc2-border) !important;
    border-radius: 18px !important;
    background: var(--kc2-surface) !important;
    box-shadow: none !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-description-card {
    margin-bottom: 11px !important;
    padding: 17px !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-description-card:hover,
body.kc-app-web:not(.admin-body) .kc-watch-comments-preview:hover {
    border-color: rgba(229, 9, 20, .23) !important;
    background: #16161d !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-stats {
    display: flex !important;
    gap: 8px !important;
    color: #8e8e98 !important;
    font-size: 9.5px !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-description {
    margin-top: 8px !important;
    color: #b9b9c1 !important;
    font-size: 11px !important;
    line-height: 1.8 !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-description-more {
    margin-top: 8px !important;
    color: #ff5e69 !important;
    font-size: 9.5px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-publisher {
    min-height: 72px !important;
    margin-bottom: 11px !important;
    padding: 11px 13px !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-publisher-avatar {
    width: 46px !important;
    height: 46px !important;
    border: 2px solid #27272f !important;
    outline: 1px solid rgba(229, 9, 20, .30) !important;
    background: var(--kc2-surface-2) !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-publisher-name {
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-publisher-count {
    color: #85858e !important;
    font-size: 9px !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-follow-button {
    min-width: 92px !important;
    min-height: 42px !important;
    padding: 8px 14px !important;
    border: 1px solid var(--kc2-red) !important;
    border-radius: 13px !important;
    background: var(--kc2-red) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(229, 9, 20, .20) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-follow-button.is-following {
    border-color: var(--kc2-border-strong) !important;
    background: rgba(255, 255, 255, .05) !important;
    box-shadow: none !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-actions {
    margin: 0 0 11px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-action-row {
    display: flex !important;
    width: max-content !important;
    min-width: 100% !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 1px 0 4px !important;
}

body.kc-app-web:not(.admin-body) :where(.kc-watch-action, .kc-watch-reaction-group) {
    min-height: 42px !important;
    border: 1px solid var(--kc2-border) !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, .045) !important;
    color: #c3c3ca !important;
    box-shadow: none !important;
    font-size: 9.5px !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-action:hover,
body.kc-app-web:not(.admin-body) .kc-watch-action.active {
    border-color: rgba(229, 9, 20, .29) !important;
    background: rgba(229, 9, 20, .10) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-rate {
    border-color: rgba(255, 214, 90, .24) !important;
    background: rgba(255, 214, 90, .07) !important;
    color: #ffd65a !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-comments-preview {
    margin-bottom: 0 !important;
    padding: 17px !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-ad-slot:empty {
    display: none !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-suggestions {
    position: sticky !important;
    top: 20px !important;
    width: 390px !important;
    min-width: 330px !important;
    max-height: calc(100vh - 105px) !important;
    align-self: flex-start !important;
    padding: 0 !important;
    overflow-y: auto !important;
    background: transparent !important;
    scrollbar-width: thin !important;
    scrollbar-color: #3b3b45 transparent !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-suggestions > * {
    border-color: var(--kc2-border) !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-description-overlay {
    background: rgba(0, 0, 0, .82) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    backdrop-filter: blur(12px) !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-description-sheet {
    overflow: hidden !important;
    border: 1px solid var(--kc2-border-strong) !important;
    border-radius: 25px 25px 0 0 !important;
    background: #111116 !important;
    color: var(--kc2-text) !important;
    box-shadow: 0 -26px 80px rgba(0, 0, 0, .55) !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-description-sheet-head,
body.kc-app-web:not(.admin-body) .kc-watch-description-sheet-body {
    border-color: var(--kc2-border) !important;
    background: #111116 !important;
    color: var(--kc2-text) !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-description-stats {
    border: 1px solid var(--kc2-border) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, .04) !important;
}

body.kc-app-web:not(.admin-body) .kc-watch-description-full {
    color: #c6c6cc !important;
}

body.kc-app-web:not(.admin-body) #kc-web-preview-download {
    border-color: var(--kc2-red) !important;
    background: var(--kc2-red) !important;
    color: #fff !important;
}

@media (min-width: 700px) {
    body.kc-app-web:not(.admin-body) .kc-watch-description-sheet {
        border-radius: 25px !important;
    }
}

@media (max-width: 1050px) {
    body.kc-app-web:not(.admin-body) .kc-watch-page {
        display: block !important;
        width: min(100%, 920px) !important;
        padding: 20px 20px 105px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-watch-main {
        width: 100% !important;
    }

    body.kc-app-web:not(.admin-body) .kc-watch-suggestions {
        position: relative !important;
        top: auto !important;
        width: 100% !important;
        min-width: 0 !important;
        max-height: none !important;
        margin-top: 22px !important;
        overflow: visible !important;
    }
}

@media (max-width: 640px) {
    body.kc-app-web:not(.admin-body) .kc-watch-page {
        width: 100% !important;
        padding: 0 0 84px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-watch-player-shell {
        position: sticky !important;
        z-index: 80 !important;
        top: 0 !important;
        border-inline: 0 !important;
        border-top: 0 !important;
        border-radius: 0 !important;
        box-shadow: 0 16px 42px rgba(0, 0, 0, .46) !important;
    }

    body.kc-app-web:not(.admin-body) .kc-watch-info {
        padding: 18px 14px 0 !important;
    }

    body.kc-app-web:not(.admin-body) .kc-watch-title {
        font-size: 21px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-watch-title-en {
        font-size: 11px !important;
    }

    body.kc-app-web:not(.admin-body) :where(.kc-watch-description-card, .kc-watch-publisher, .kc-watch-comments-preview) {
        border-radius: 16px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-watch-description-card,
    body.kc-app-web:not(.admin-body) .kc-watch-comments-preview {
        padding: 14px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-watch-publisher {
        padding: 10px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-watch-follow-button {
        min-width: 80px !important;
        min-height: 39px !important;
    }

    body.kc-app-web:not(.admin-body) .kc-watch-suggestions {
        padding: 0 14px !important;
    }
}

/* Keep the cinema-red visual language even when legacy page styles are injected later. */
html body.kc-app-web.netflix-theme:not(.admin-body) .kc-work-details .kc-work-primary-action {
    border-color: var(--kc2-red) !important;
    background: linear-gradient(135deg, var(--kc2-red-bright), var(--kc2-red-dark)) !important;
    color: #fff !important;
    box-shadow: 0 17px 37px rgba(229, 9, 20, .26) !important;
}

html body.kc-app-web.netflix-theme:not(.admin-body) .kc-work-details .kc-work-primary-action:hover {
    border-color: #ff3340 !important;
    background: linear-gradient(135deg, #ff2431, #b20710) !important;
}

html body.kc-app-web.netflix-theme:not(.admin-body) .kc-work-details .kc-work-category-chip,
html body.kc-app-web.netflix-theme:not(.admin-body) .kc-work-details .kc-work-genre-link {
    border-color: rgba(229, 9, 20, .32) !important;
    background: rgba(229, 9, 20, .14) !important;
    color: #ff8d95 !important;
}

html body.kc-app-web.netflix-theme:not(.admin-body) .kc-watch-page .kc-watch-follow-button:not(.is-following) {
    border-color: var(--kc2-red) !important;
    background: linear-gradient(135deg, var(--kc2-red-bright), var(--kc2-red-dark)) !important;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(229, 9, 20, .24) !important;
}

html body.kc-app-web.netflix-theme:not(.admin-body) .kc-watch-page .kc-watch-follow-button.is-following {
    border-color: var(--kc2-border-strong) !important;
    background: rgba(255, 255, 255, .07) !important;
    color: #fff !important;
    box-shadow: none !important;
}

/* Account/auth page isolation from the legacy light web theme. */
html body.kc-app-web.netflix-theme.kc-page-auth:not(.admin-body) #main-content .kc-auth-page-v2 {
    background: radial-gradient(circle at 50% -10%, rgba(229, 9, 20, .16), transparent 34%), #050507 !important;
    color: #fff !important;
}

html body.kc-app-web.netflix-theme.kc-page-auth:not(.admin-body) #main-content .kc-auth-page-card {
    border: 1px solid rgba(255, 255, 255, .1) !important;
    background: linear-gradient(155deg, rgba(25, 25, 31, .98), rgba(12, 12, 17, .99)) !important;
    color: #fff !important;
    box-shadow: 0 24px 68px rgba(0, 0, 0, .58), 0 0 42px rgba(229, 9, 20, .08) !important;
}

html body.kc-app-web.netflix-theme.kc-page-auth:not(.admin-body) #main-content .kc-auth-page-intro h1 {
    color: #fff !important;
}

html body.kc-app-web.netflix-theme.kc-page-auth:not(.admin-body) #main-content :where(.kc-auth-page-intro p, .kc-auth-page-foot, .kc-auth-page-topbar span) {
    color: #a7a7b0 !important;
}

html body.kc-app-web.netflix-theme.kc-page-auth:not(.admin-body) #main-content .kc-auth-page-logo {
    border-color: rgba(255, 255, 255, .12) !important;
    background: linear-gradient(145deg, #ff2332, #a8000a) !important;
    box-shadow: 0 18px 38px rgba(229, 9, 20, .25) !important;
}

html body.kc-app-web.netflix-theme.kc-page-auth:not(.admin-body) #main-content .kc-auth-page-input {
    border-color: rgba(255, 255, 255, .12) !important;
    background: #0b0b10 !important;
    color: #fff !important;
    box-shadow: none !important;
}

html body.kc-app-web.netflix-theme.kc-page-auth:not(.admin-body) #main-content .kc-auth-page-submit {
    border-color: var(--kc2-red) !important;
    background: linear-gradient(135deg, var(--kc2-red-bright), var(--kc2-red-dark)) !important;
    color: #fff !important;
    box-shadow: 0 14px 32px rgba(229, 9, 20, .28) !important;
}

html body.kc-app-web.netflix-theme.kc-page-auth:not(.admin-body) #main-content .kc-auth-page-secondary,
html body.kc-app-web.netflix-theme.kc-page-auth:not(.admin-body) #main-content .kc-auth-page-back {
    border-color: rgba(255, 255, 255, .12) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #fff !important;
}

/* ========================================================================== 
   King Cinema Web V3 — final public-site unification
   Keeps admin surfaces isolated and preserves every runtime-controlled block.
   ========================================================================== */
html body.kc-app-web:not(.admin-body) {
    --kc3-red: #e50914;
    --kc3-red-bright: #ff2633;
    --kc3-red-dark: #a9000a;
    --kc3-bg: #050507;
    --kc3-panel: #111116;
    --kc3-panel-2: #17171e;
    --kc3-border: rgba(255, 255, 255, .10);
    --kc3-border-strong: rgba(255, 255, 255, .16);
    --kc3-text: #f8f8fa;
    --kc3-muted: #a5a5ae;
    background: var(--kc3-bg) !important;
    color: var(--kc3-text) !important;
}

html body.kc-app-web:not(.admin-body) :where(#main-content, #page-content) {
    min-height: 100vh !important;
    background: var(--kc3-bg) !important;
    color: var(--kc3-text) !important;
}

/* Undo the old Play-green conversion layer on the new public experience. */
html body.kc-app-web:not(.admin-body) :where(
    button[class*="bg-[#e50914]"], a[class*="bg-[#e50914]"],
    button.bg-red-500, button.bg-red-600, a.bg-red-500, a.bg-red-600,
    button[class*="from-red"], a[class*="from-red"],
    .kc-primary-action, .kc-load-more-btn, .kc-library-open-app,
    .kc-account-primary-action, .kc-legal-report-v3
) {
    border-color: var(--kc3-red) !important;
    background: linear-gradient(135deg, var(--kc3-red-bright), var(--kc3-red-dark)) !important;
    background-color: var(--kc3-red) !important;
    color: #fff !important;
    box-shadow: 0 14px 32px rgba(229, 9, 20, .24) !important;
}

html body.kc-app-web:not(.admin-body) :where(.kc-row-more, .kc-back-link) {
    color: #ff6872 !important;
}

html body.kc-app-web:not(.admin-body) :where(.kc-row-more, .kc-back-link):hover {
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) .kc-phone-home-block {
    --kc-accent: var(--kc3-red) !important;
}

html body.kc-app-web:not(.admin-body) .kc-phone-home-block .kc-phone-home-row-head .kc-row-more {
    color: #ff4b55 !important;
}

html body.kc-app-web:not(.admin-body) :where(#login-modal-overlay, #signup-modal-overlay) .kc-account-panel::before {
    background: linear-gradient(90deg, #7d0610, var(--kc3-red), #ff3945) !important;
}

html body.kc-app-web:not(.admin-body) :where(#login-modal-overlay, #signup-modal-overlay) .kc-account-title > span {
    color: #ff5963 !important;
}

html body.kc-app-web:not(.admin-body) :where(#login-modal-overlay, #signup-modal-overlay) .kc-account-field input {
    caret-color: #ff5963 !important;
}

html body.kc-app-web:not(.admin-body) :where(#login-modal-overlay, #signup-modal-overlay) .kc-account-field input:focus {
    border-color: var(--kc3-red) !important;
    box-shadow: 0 0 0 3px rgba(229, 9, 20, .16), inset 0 1px 0 rgba(255,255,255,.05) !important;
}

html body.kc-app-web:not(.admin-body) :where(#login-modal-overlay, #signup-modal-overlay) :where(.kc-account-primary, .kc-signup-submit, .kc-auth-submit) {
    border-color: rgba(255, 73, 84, .58) !important;
    background: linear-gradient(135deg, #f01420, #b00610) !important;
    box-shadow: 0 18px 36px rgba(229, 9, 20, .28) !important;
}

html body.kc-app-web:not(.admin-body) #signup-modal-overlay #signup-modal-content.kc-signup-panel button.kc-account-primary.kc-signup-submit,
html body.kc-app-web:not(.admin-body) #login-modal-overlay button.kc-account-primary.kc-auth-submit {
    border-color: rgba(255, 73, 84, .58) !important;
    background: linear-gradient(135deg, #f01420, #b00610) !important;
    color: #fff !important;
    box-shadow: 0 18px 36px rgba(229, 9, 20, .28) !important;
}

html body.kc-app-web:not(.admin-body) :where(.bg-blue-500, .bg-blue-600) {
    background-color: var(--kc3-red) !important;
}

html body.kc-app-web:not(.admin-body) :where(.text-blue-300, .text-blue-400, .text-blue-500, .text-blue-600) {
    color: #ff6670 !important;
}

html body.kc-app-web:not(.admin-body) :where(.border-blue-200, .border-blue-300, .border-blue-500, .border-blue-600) {
    border-color: rgba(229, 9, 20, .48) !important;
}

html body.kc-app-web:not(.admin-body) .channel-playlist-card,
html body.kc-app-web:not(.admin-body) .channel-playlist-toolbar {
    border-color: rgba(255,255,255,.10) !important;
    background: #111117 !important;
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) .channel-playlist-card:hover {
    border-color: rgba(229,9,20,.42) !important;
}

html body.kc-app-web:not(.admin-body) .channel-playlist-card h3,
html body.kc-app-web:not(.admin-body) .channel-playlist-toolbar h3 {
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) .channel-playlist-card p,
html body.kc-app-web:not(.admin-body) .channel-playlist-toolbar p {
    color: rgba(255,255,255,.58) !important;
}

html body.kc-app-web:not(.admin-body) #bottom-navigation-bar :where(.nav-btn, .nav-btn-center).active,
html body.kc-app-web:not(.admin-body) #bottom-navigation-bar :where(.nav-btn, .nav-btn-center).active :where(span, svg),
html body.kc-app-web:not(.admin-body) #bottom-navigation-bar :where(.nav-btn, .nav-btn-center).is-active,
html body.kc-app-web:not(.admin-body) #bottom-navigation-bar :where(.nav-btn, .nav-btn-center).is-active :where(span, svg) {
    color: #ff3f4b !important;
}

html body.kc-app-web:not(.admin-body) #bottom-navigation-bar .nav-indicator {
    background: var(--kc3-red) !important;
    box-shadow: 0 0 18px rgba(229, 9, 20, .72) !important;
}

html body.kc-app-web:not(.admin-body) :where(input, textarea, select) {
    border-color: var(--kc3-border-strong) !important;
    background: #0d0d12 !important;
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) :where(input, textarea)::placeholder {
    color: #75757f !important;
}

.kc-v3-spinner {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255, 255, 255, .18);
    border-top-color: var(--kc3-red, #e50914);
    border-radius: 50%;
    animation: kc3-spin .75s linear infinite;
}

@keyframes kc3-spin { to { transform: rotate(360deg); } }

body.kc-app-web:not(.admin-body) .kc-web-loading-v3 {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--kc3-muted) !important;
    font-size: 12px;
    font-weight: 900;
}

body.kc-app-web:not(.admin-body) .kc-web-loading-v3.is-compact {
    min-height: 160px;
}

body.kc-app-web:not(.admin-body) .kc-web-empty-v3 {
    width: min(760px, calc(100% - 28px));
    min-height: 300px;
    margin: 32px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px;
    border: 1px dashed var(--kc3-border-strong);
    border-radius: 24px;
    background: radial-gradient(circle at 50% 0, rgba(229, 9, 20, .13), transparent 48%), var(--kc3-panel);
    color: var(--kc3-muted) !important;
    text-align: center;
}

body.kc-app-web:not(.admin-body) .kc-web-empty-v3.is-compact {
    width: 100%;
    min-height: 150px;
    margin: 12px auto;
    border-radius: 18px;
}

body.kc-app-web:not(.admin-body) .kc-web-empty-v3 > .material-symbols-rounded {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    flex: 0 0 58px;
    border: 1px solid rgba(229, 9, 20, .28);
    border-radius: 18px;
    background: rgba(229, 9, 20, .11);
    color: #ff5f69 !important;
    font-size: 30px;
}

body.kc-app-web:not(.admin-body) .kc-web-empty-v3 > div {
    min-width: min(100%, 280px);
    flex: 1 1 330px;
    text-align: right;
}

body.kc-app-web:not(.admin-body) .kc-web-empty-v3 b {
    display: block;
    color: #fff !important;
    font-size: 17px;
    font-weight: 950;
}

body.kc-app-web:not(.admin-body) .kc-web-empty-v3 p {
    margin: 5px 0 0 !important;
    color: var(--kc3-muted) !important;
    font-size: 11px;
    line-height: 1.8;
}

body.kc-app-web:not(.admin-body) .kc-web-empty-v3 :where(a, button) {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid rgba(229, 9, 20, .32) !important;
    border-radius: 13px;
    background: rgba(229, 9, 20, .10) !important;
    color: #ff7881 !important;
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
}

body.kc-app-web:not(.admin-body) .kc-web-empty-v3 :where(button[data-open-app-download]) {
    background: var(--kc3-red) !important;
    color: #fff !important;
}

/* Library, categories and all-content pages */
html body.kc-app-web:not(.admin-body) .kc-public-library {
    background:
        radial-gradient(circle at 90% 4%, rgba(229, 9, 20, .12), transparent 34rem),
        var(--kc3-bg) !important;
}

html body.kc-app-web:not(.admin-body) .kc-public-library-head {
    border-color: var(--kc3-border) !important;
    background: linear-gradient(110deg, rgba(7, 7, 10, .98), rgba(31, 7, 12, .92)) !important;
}

html body.kc-app-web:not(.admin-body) .kc-public-library-title :where(h1, span) {
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) .kc-public-library-title p {
    color: #b9b9c1 !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-tabs {
    border-color: var(--kc3-border) !important;
    background: rgba(12, 12, 17, .96) !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-tabs .kc-library-tab {
    border-color: var(--kc3-border) !important;
    background: rgba(255, 255, 255, .045) !important;
    color: #c5c5cc !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-tabs .kc-library-tab.is-active {
    border-color: rgba(229, 9, 20, .72) !important;
    background: rgba(229, 9, 20, .15) !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(229, 9, 20, .13) !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-tabs .kc-library-tab.is-active .kc-library-tab-mark {
    background: var(--kc3-red) !important;
    box-shadow: 0 0 12px rgba(229, 9, 20, .75) !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-all-v3 {
    padding: 24px 0 110px;
}

html body.kc-app-web:not(.admin-body) .kc-library-quick-shell {
    width: min(1280px, 100%);
    margin: 0 auto 24px;
    padding-inline: 18px;
    background: transparent !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-chip {
    border-color: var(--kc3-border) !important;
    background: rgba(255, 255, 255, .04) !important;
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-chip:hover {
    border-color: rgba(229, 9, 20, .42) !important;
    background: rgba(229, 9, 20, .09) !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-chip > .kc-library-chip-icon {
    border-color: rgba(229, 9, 20, .26) !important;
    background: rgba(229, 9, 20, .11) !important;
    color: #ff5e69 !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-chip :where(strong, small) {
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) .kc-library-modal-panel {
    border-color: var(--kc3-border-strong) !important;
    background: #0d0d12 !important;
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) .kc-category-hero {
    overflow: hidden !important;
    border: 1px solid var(--kc3-border) !important;
    border-radius: 28px !important;
    background: var(--kc3-panel) !important;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .42) !important;
}

html body.kc-app-web:not(.admin-body) .kc-category-hero .kc-primary-action {
    border-radius: 14px !important;
}

html body.kc-app-web:not(.admin-body) :where(.kc-category-page, .kc-all-page) {
    padding-bottom: 118px !important;
    background: var(--kc3-bg) !important;
}

html body.kc-app-web:not(.admin-body) .kc-content-row {
    border: 0 !important;
    background: transparent !important;
}

html body.kc-app-web:not(.admin-body) .kc-row-title {
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) .kc-all-page {
    width: min(1280px, 100%) !important;
    margin-inline: auto !important;
    padding-inline: 22px !important;
    padding-top: 36px !important;
}

html body.kc-app-web:not(.admin-body) .kc-all-title {
    color: #fff !important;
    font-size: clamp(27px, 4vw, 42px) !important;
}

html body.kc-app-web:not(.admin-body) .kc-all-card {
    overflow: hidden !important;
    border: 1px solid var(--kc3-border) !important;
    border-radius: 18px !important;
    background: var(--kc3-panel) !important;
    box-shadow: none !important;
    transition: transform .22s ease, border-color .22s ease !important;
}

html body.kc-app-web:not(.admin-body) .kc-all-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(229, 9, 20, .42) !important;
}

html body.kc-app-web:not(.admin-body) .kc-all-card h3 {
    padding: 11px 10px 13px !important;
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) .kc-empty-state {
    min-height: 170px;
    display: grid;
    place-items: center;
    margin: 12px auto;
    padding: 28px;
    border: 1px dashed var(--kc3-border-strong);
    border-radius: 20px;
    background: var(--kc3-panel) !important;
    color: var(--kc3-muted) !important;
    text-align: center;
    font-weight: 850;
}

/* Football uses the same red cinema identity while its data remains panel-controlled. */
html body.kc-app-web:not(.admin-body) .football-page {
    background: var(--kc3-bg) !important;
}

html body.kc-app-web:not(.admin-body) .football-hero::after {
    background: linear-gradient(180deg, transparent, var(--kc3-bg)) !important;
}

html body.kc-app-web:not(.admin-body) :where(.football-kicker, .football-section-head span) {
    border-color: rgba(229, 9, 20, .34) !important;
    background: rgba(229, 9, 20, .12) !important;
    color: #ff858d !important;
}

html body.kc-app-web:not(.admin-body) :where(.football-card-media span, .football-play-btn) {
    background: var(--kc3-red) !important;
    color: #fff !important;
}

html body.kc-app-web:not(.admin-body) :where(.football-card-body small, .football-match-row em) {
    color: #ff626d !important;
}

html body.kc-app-web:not(.admin-body) .football-card {
    border-color: var(--kc3-border) !important;
    background: var(--kc3-panel) !important;
}

/* Download conversion page */
body.kc-app-web:not(.admin-body) .kc-download-page-v3 {
    position: relative;
    min-height: 100vh;
    padding: 72px 22px 132px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 6%, rgba(229, 9, 20, .16), transparent 33rem),
        radial-gradient(circle at 8% 74%, rgba(104, 10, 20, .12), transparent 28rem),
        var(--kc3-bg) !important;
    color: #fff !important;
}

.kc-download-orb {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(229, 9, 20, .09);
    filter: blur(70px);
    pointer-events: none;
}

.kc-download-orb--one { top: -160px; right: -80px; }
.kc-download-orb--two { bottom: -210px; left: -120px; }

body.kc-app-web:not(.admin-body) .kc-download-layout-v3 {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(390px, .78fr);
    align-items: center;
    gap: clamp(36px, 7vw, 86px);
}

body.kc-app-web:not(.admin-body) .kc-download-brand-v3 {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff !important;
    text-decoration: none;
}

body.kc-app-web:not(.admin-body) .kc-download-brand-v3 img {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    object-fit: contain;
    box-shadow: 0 13px 32px rgba(229, 9, 20, .23);
}

body.kc-app-web:not(.admin-body) .kc-download-brand-v3 span {
    display: flex;
    flex-direction: column;
}

body.kc-app-web:not(.admin-body) .kc-download-brand-v3 b {
    color: #fff !important;
    font-family: Inter, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

body.kc-app-web:not(.admin-body) .kc-download-brand-v3 small {
    margin-top: 2px;
    color: #8d8d97 !important;
    font-size: 9px;
    font-weight: 800;
}

body.kc-app-web:not(.admin-body) .kc-download-eyebrow-v3 {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 44px;
    padding: 7px 11px;
    border: 1px solid rgba(229, 9, 20, .27);
    border-radius: 999px;
    background: rgba(229, 9, 20, .09);
    color: #ff7a83 !important;
    font-size: 10px;
    font-weight: 900;
}

body.kc-app-web:not(.admin-body) .kc-download-eyebrow-v3 .material-symbols-rounded { font-size: 16px; }

body.kc-app-web:not(.admin-body) .kc-download-hero-v3 h1 {
    max-width: 700px;
    margin: 15px 0 0 !important;
    color: #fff !important;
    font-size: clamp(42px, 6vw, 70px) !important;
    font-weight: 950 !important;
    line-height: 1.16 !important;
    letter-spacing: -.045em !important;
}

body.kc-app-web:not(.admin-body) .kc-download-lead-v3 {
    max-width: 640px;
    margin: 17px 0 0 !important;
    color: #b5b5bf !important;
    font-size: 15px;
    line-height: 1.9;
}

body.kc-app-web:not(.admin-body) .kc-download-benefits-v3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    margin-top: 30px;
}

body.kc-app-web:not(.admin-body) .kc-download-benefits-v3 > div {
    min-height: 130px;
    padding: 16px;
    border: 1px solid var(--kc3-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
}

body.kc-app-web:not(.admin-body) .kc-download-benefits-v3 .material-symbols-rounded {
    color: #ff5661 !important;
    font-size: 25px;
}

body.kc-app-web:not(.admin-body) .kc-download-benefits-v3 b {
    display: block;
    margin-top: 8px;
    color: #fff !important;
    font-size: 11px;
    font-weight: 900;
}

body.kc-app-web:not(.admin-body) .kc-download-benefits-v3 small {
    display: block;
    margin-top: 4px;
    color: #83838e !important;
    font-size: 8.5px;
    line-height: 1.7;
}

body.kc-app-web:not(.admin-body) .kc-download-preview-link-v3 {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 19px;
    color: #d7d7dc !important;
    font-size: 10px;
    font-weight: 900;
    text-decoration: none;
}

body.kc-app-web:not(.admin-body) .kc-download-panel-v3 {
    padding: 26px;
    border: 1px solid var(--kc3-border-strong);
    border-radius: 28px;
    background: linear-gradient(155deg, rgba(24, 24, 31, .98), rgba(10, 10, 14, .99));
    box-shadow: 0 34px 100px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .05);
}

body.kc-app-web:not(.admin-body) .kc-download-panel-head-v3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

body.kc-app-web:not(.admin-body) .kc-download-panel-icon-v3 {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    background: var(--kc3-red);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(229, 9, 20, .26);
}

body.kc-app-web:not(.admin-body) .kc-download-panel-head-v3 small {
    color: #ff747d !important;
    font-size: 9px;
    font-weight: 900;
}

body.kc-app-web:not(.admin-body) .kc-download-panel-head-v3 h2 {
    margin: 1px 0 0 !important;
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 950 !important;
}

body.kc-app-web:not(.admin-body) .kc-download-links-v3 { display: grid; gap: 10px; }

body.kc-app-web:not(.admin-body) .kc-download-link-v3 {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 11px;
    border: 1px solid var(--kc3-border) !important;
    border-radius: 18px;
    background: rgba(255, 255, 255, .04) !important;
    color: #fff !important;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease !important;
}

body.kc-app-web:not(.admin-body) .kc-download-link-v3.is-primary {
    border-color: rgba(229, 9, 20, .34) !important;
    background: linear-gradient(135deg, rgba(229, 9, 20, .17), rgba(255, 255, 255, .035)) !important;
}

body.kc-app-web:not(.admin-body) .kc-download-link-v3:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 9, 20, .54) !important;
}

body.kc-app-web:not(.admin-body) .kc-download-link-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    background: rgba(229, 9, 20, .12);
    color: #ff6670 !important;
}

body.kc-app-web:not(.admin-body) .kc-download-link-copy { min-width: 0; display: flex; flex-direction: column; }
body.kc-app-web:not(.admin-body) .kc-download-link-copy b { color: #fff !important; font-size: 12px; font-weight: 900; }
body.kc-app-web:not(.admin-body) .kc-download-link-copy small { color: #85858f !important; font-size: 9px; }
body.kc-app-web:not(.admin-body) .kc-download-link-arrow { color: #73737e !important; font-size: 20px; }

body.kc-app-web:not(.admin-body) :where(.kc-download-trust-v3, .kc-download-help-v3) {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 14px;
    padding: 13px;
    border: 1px solid var(--kc3-border);
    border-radius: 15px;
    background: rgba(255, 255, 255, .025);
}

body.kc-app-web:not(.admin-body) :where(.kc-download-trust-v3, .kc-download-help-v3) > .material-symbols-rounded {
    color: #ff5964 !important;
    font-size: 19px;
}

body.kc-app-web:not(.admin-body) :where(.kc-download-trust-v3, .kc-download-help-v3) p { margin: 0 !important; color: #a2a2ac !important; font-size: 9px; line-height: 1.7; }
body.kc-app-web:not(.admin-body) .kc-download-trust-v3 b { display: block; color: #e9e9ed !important; font-size: 10px; }
body.kc-app-web:not(.admin-body) .kc-download-trust-v3 small { display: block; margin-top: 2px; color: #81818b !important; font-size: 8px; }

/* Legal / copyright */
body.kc-app-web:not(.admin-body) .kc-legal-page-v3 {
    min-height: 100vh;
    padding: 34px 20px 130px;
    background: radial-gradient(circle at 88% 0, rgba(229, 9, 20, .14), transparent 32rem), var(--kc3-bg) !important;
    color: #fff !important;
}

body.kc-app-web:not(.admin-body) .kc-legal-wrap-v3 { width: min(1020px, 100%); margin-inline: auto; }
body.kc-app-web:not(.admin-body) .kc-legal-top-v3 { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 34px; }
body.kc-app-web:not(.admin-body) .kc-legal-back-v3 { display: inline-flex; align-items: center; gap: 5px; padding: 9px 12px; border: 1px solid var(--kc3-border); border-radius: 13px; background: rgba(255,255,255,.04); color: #d6d6dc !important; text-decoration: none; font-size: 10px; font-weight: 900; }
body.kc-app-web:not(.admin-body) .kc-legal-hero-v3 { padding: clamp(24px, 5vw, 48px); border: 1px solid var(--kc3-border); border-radius: 30px; background: linear-gradient(145deg, rgba(26,20,25,.98), rgba(12,12,17,.98)); box-shadow: 0 28px 90px rgba(0,0,0,.38); }
body.kc-app-web:not(.admin-body) .kc-legal-icon-v3 { display: grid; width: 62px; height: 62px; place-items: center; border: 1px solid rgba(229,9,20,.3); border-radius: 20px; background: rgba(229,9,20,.12); color: #ff5d68 !important; }
body.kc-app-web:not(.admin-body) .kc-legal-icon-v3 .material-symbols-rounded { font-size: 34px; }
body.kc-app-web:not(.admin-body) .kc-legal-kicker-v3 { margin: 18px 0 0 !important; color: #ff6973 !important; font-size: 10px; font-weight: 950; }
body.kc-app-web:not(.admin-body) .kc-legal-hero-v3 h1 { margin: 7px 0 0 !important; color: #fff !important; font-size: clamp(34px, 6vw, 60px) !important; font-weight: 950 !important; line-height: 1.18 !important; }
body.kc-app-web:not(.admin-body) .kc-legal-lead-v3 { max-width: 880px; margin: 16px 0 0 !important; color: #c8c8cf !important; font-size: 15px; font-weight: 750; line-height: 2; }
body.kc-app-web:not(.admin-body) .kc-legal-grid-v3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 16px; }
body.kc-app-web:not(.admin-body) .kc-legal-grid-v3 article { padding: 21px; border: 1px solid var(--kc3-border); border-radius: 21px; background: var(--kc3-panel); }
body.kc-app-web:not(.admin-body) .kc-legal-grid-v3 .material-symbols-rounded { color: #ff5c67 !important; font-size: 28px; }
body.kc-app-web:not(.admin-body) .kc-legal-grid-v3 h2 { margin: 10px 0 0 !important; color: #fff !important; font-size: 17px !important; font-weight: 950 !important; }
body.kc-app-web:not(.admin-body) .kc-legal-grid-v3 p { margin: 7px 0 0 !important; color: #9999a3 !important; font-size: 10.5px; line-height: 1.9; }
body.kc-app-web:not(.admin-body) .kc-legal-cta-v3 { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 16px; padding: 22px; border: 1px solid rgba(229,9,20,.25); border-radius: 22px; background: linear-gradient(120deg,rgba(229,9,20,.14),rgba(255,255,255,.025)); }
body.kc-app-web:not(.admin-body) .kc-legal-cta-v3 h2 { margin: 0 !important; color: #fff !important; font-size: 22px !important; font-weight: 950 !important; }
body.kc-app-web:not(.admin-body) .kc-legal-cta-v3 p { margin: 3px 0 0 !important; color: #9797a1 !important; font-size: 10px; }
body.kc-app-web:not(.admin-body) .kc-legal-report-v3 { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 9px 18px; border-radius: 15px; font-size: 11px; font-weight: 950; white-space: nowrap; }
body.kc-app-web:not(.admin-body) .kc-legal-links-v3 { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
body.kc-app-web:not(.admin-body) .kc-legal-links-v3 :where(a,button) { border: 0; background: transparent !important; color: #888892 !important; font-size: 9.5px; font-weight: 850; text-decoration: none; }

/* Channel / publisher */
body.kc-app-web:not(.admin-body) .kc-channel-page-v3 { min-height: 100vh; padding-bottom: 125px; background: var(--kc3-bg) !important; color: #fff !important; }
body.kc-app-web:not(.admin-body) .kc-channel-hero-v3 { position: relative; width: min(1440px,100%); height: clamp(230px,34vw,440px); margin-inline: auto; overflow: hidden; background: #0b0b0f; }
body.kc-app-web:not(.admin-body) .kc-channel-cover-v3 { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
body.kc-app-web:not(.admin-body) .kc-channel-cover-shade-v3 { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(5,5,7,.08),rgba(5,5,7,.28) 55%,var(--kc3-bg)); }
body.kc-app-web:not(.admin-body) .kc-channel-back-v3 { position: absolute; top: 20px; right: 20px; display: inline-flex; align-items: center; gap: 5px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; background: rgba(0,0,0,.48); color: #fff !important; backdrop-filter: blur(11px); font-size: 10px; font-weight: 900; text-decoration: none; }
body.kc-app-web:not(.admin-body) .kc-channel-shell-v3 { position: relative; z-index: 2; width: min(1120px,calc(100% - 30px)); margin: -82px auto 0; }
body.kc-app-web:not(.admin-body) .kc-channel-profile-v3 { display: grid; grid-template-columns: 132px minmax(0,1fr) auto; align-items: end; gap: 22px; padding: 22px; border: 1px solid var(--kc3-border); border-radius: 26px; background: rgba(14,14,19,.92); box-shadow: 0 28px 80px rgba(0,0,0,.42); backdrop-filter: blur(20px); }
body.kc-app-web:not(.admin-body) .kc-channel-avatar-v3 { width: 132px; height: 132px; border: 4px solid #111116; border-radius: 35px; object-fit: cover; outline: 1px solid rgba(229,9,20,.34); box-shadow: 0 18px 42px rgba(0,0,0,.38); }
body.kc-app-web:not(.admin-body) .kc-channel-copy-v3 { min-width: 0; }
body.kc-app-web:not(.admin-body) .kc-channel-copy-v3 h1 { display: flex; align-items: center; gap: 7px; margin: 0 !important; color: #fff !important; font-size: clamp(26px,4vw,41px) !important; font-weight: 950 !important; }
body.kc-app-web:not(.admin-body) .kc-channel-copy-v3 h1 > span { overflow: hidden; color: #fff !important; text-overflow: ellipsis; white-space: nowrap; }
body.kc-app-web:not(.admin-body) .kc-channel-meta-v3 { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 8px 0 0 !important; color: #9c9ca6 !important; font-size: 9.5px; font-weight: 850; }
body.kc-app-web:not(.admin-body) .kc-channel-meta-v3 i { width: 3px; height: 3px; border-radius: 50%; background: #e50914; }
body.kc-app-web:not(.admin-body) .kc-channel-description-v3 { max-width: 720px; margin: 10px 0 0 !important; color: #aaaab3 !important; font-size: 10.5px; line-height: 1.8; }
body.kc-app-web:not(.admin-body) .kc-channel-actions-v3 { display: flex; align-items: center; gap: 7px; }
body.kc-app-web:not(.admin-body) :where(.kc-channel-follow-v3,.kc-channel-app-v3,.kc-channel-bell-v3) { min-height: 44px; border: 1px solid var(--kc3-border) !important; border-radius: 14px; background: rgba(255,255,255,.05) !important; color: #fff !important; font-size: 10px; font-weight: 900; }
body.kc-app-web:not(.admin-body) .kc-channel-follow-v3 { min-width: 104px; padding: 8px 18px; border-color: var(--kc3-red) !important; background: var(--kc3-red) !important; box-shadow: 0 13px 28px rgba(229,9,20,.23); }
body.kc-app-web:not(.admin-body) .kc-channel-follow-v3.is-following { border-color: var(--kc3-border-strong) !important; background: rgba(255,255,255,.06) !important; box-shadow: none; }
body.kc-app-web:not(.admin-body) .kc-channel-app-v3 { display: inline-flex; align-items: center; gap: 5px; padding: 8px 12px; }
body.kc-app-web:not(.admin-body) .kc-channel-bell-v3 { width: 44px; display: grid; place-items: center; }
body.kc-app-web:not(.admin-body) .kc-channel-bell-v3 img { width: 19px; height: 19px; filter: grayscale(1) brightness(3); }
body.kc-app-web:not(.admin-body) .kc-channel-alert-v3 { margin: 10px 0 0 !important; padding: 10px 13px; border: 1px solid var(--kc3-border); border-radius: 13px; background: var(--kc3-panel); color: #fff !important; font-size: 10px; text-align: center; }
body.kc-app-web:not(.admin-body) .kc-channel-tabs-v3 { position: sticky; z-index: 35; top: 0; display: flex; gap: 7px; margin-top: 14px; padding: 7px; overflow-x: auto; border: 1px solid var(--kc3-border); border-radius: 18px; background: rgba(10,10,14,.9) !important; backdrop-filter: blur(18px); scrollbar-width: none; }
body.kc-app-web:not(.admin-body) .kc-channel-tabs-v3 .pub-tab-btn { min-width: max-content; min-height: 42px; padding: 8px 16px; border: 1px solid transparent !important; border-radius: 13px; background: transparent !important; color: #8f8f99 !important; font-size: 10px !important; font-weight: 900 !important; }
body.kc-app-web:not(.admin-body) .kc-channel-tabs-v3 .pub-tab-btn.active { border-color: rgba(229,9,20,.26) !important; background: rgba(229,9,20,.12) !important; color: #fff !important; }
body.kc-app-web:not(.admin-body) .kc-channel-content-v3 { width: min(1120px,100%); margin: 18px auto 0; padding-inline: 15px; }
body.kc-app-web:not(.admin-body) .kc-channel-content-v3 :where(.bg-white,.bg-gray-50,.bg-gray-100) { border-color: var(--kc3-border) !important; background: var(--kc3-panel) !important; color: #fff !important; }

/* Account collection cards */
body.kc-app-web:not(.admin-body) .kc-account-collection-grid .kc-account-history-card { transition: transform .22s ease, border-color .22s ease !important; }
body.kc-app-web:not(.admin-body) .kc-account-collection-grid .kc-account-history-card:hover { transform: translateY(-4px); border-color: rgba(229,9,20,.4) !important; }
body.kc-app-web:not(.admin-body) .kc-account-collection-grid .kc-account-favorite-card:hover img { transform: scale(1.035); }

/* Discover and reels polish */
body.kc-app-web:not(.admin-body) .kc-discover-download-cta { border-color: rgba(255,255,255,.16) !important; background: var(--kc3-red) !important; color: #fff !important; box-shadow: 0 12px 28px rgba(229,9,20,.27) !important; }
body.kc-app-web:not(.admin-body) .kc-discover-page-shell :where(.bg-gray-200,.bg-gray-300,.bg-slate-200,.animate-pulse > div) { background: linear-gradient(110deg,#13131a 20%,#1d1d25 38%,#13131a 60%) !important; background-size: 220% 100% !important; }
body.kc-app-web:not(.admin-body) .kc-discover-page-shell .discover-video-card { border: 1px solid var(--kc3-border) !important; background: var(--kc3-panel) !important; color: #fff !important; box-shadow: 0 16px 38px rgba(0,0,0,.24) !important; }
body.kc-app-web:not(.admin-body) .kc-reels-page-v3 .kc-reels-state { gap: 14px; background: radial-gradient(circle at center,rgba(229,9,20,.08),transparent 24rem),#000 !important; }
body.kc-app-web:not(.admin-body) .kc-reels-page-v3 .kc-reels-state p { color: #d3d3d9 !important; font-size: 12px; }

/* Rich 404 */
body.kc-app-web:not(.admin-body) .kc-not-found-v3 { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; padding: 50px 18px 132px; background: radial-gradient(circle at 50% 35%,rgba(229,9,20,.14),transparent 26rem),var(--kc3-bg) !important; color: #fff !important; text-align: center; }
body.kc-app-web:not(.admin-body) .kc-not-found-v3 > * { position: relative; z-index: 1; }
body.kc-app-web:not(.admin-body) .kc-not-found-v3 .kc-download-brand-v3 { margin-bottom: 42px; }
body.kc-app-web:not(.admin-body) .kc-not-found-code-v3 { display: flex; align-items: center; justify-content: center; gap: 7px; color: #fff; font-family: Inter,sans-serif; font-size: clamp(86px,16vw,164px); font-weight: 950; line-height: .8; letter-spacing: -.08em; }
body.kc-app-web:not(.admin-body) .kc-not-found-code-v3 i { display: grid; width: clamp(62px,9vw,102px); height: clamp(62px,9vw,102px); place-items: center; border: 1px solid rgba(229,9,20,.35); border-radius: 28px; background: var(--kc3-red); color: #fff; font-size: clamp(32px,5vw,54px); font-style: normal; box-shadow: 0 22px 60px rgba(229,9,20,.27); }
body.kc-app-web:not(.admin-body) .kc-not-found-v3 h1 { margin: 31px 0 0 !important; color: #fff !important; font-size: clamp(28px,5vw,45px) !important; font-weight: 950 !important; }
body.kc-app-web:not(.admin-body) .kc-not-found-v3 > p { max-width: 640px; margin: 12px 0 0 !important; color: #aaaab4 !important; font-size: 13px; line-height: 1.9; }
body.kc-app-web:not(.admin-body) .kc-not-found-actions-v3 { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 26px; }
body.kc-app-web:not(.admin-body) .kc-not-found-actions-v3 :where(a,button) { min-height: 47px; display: inline-flex; align-items: center; justify-content: center; padding: 9px 19px; border: 1px solid var(--kc3-red) !important; border-radius: 15px; background: var(--kc3-red) !important; color: #fff !important; font-size: 10.5px; font-weight: 950; text-decoration: none; }
body.kc-app-web:not(.admin-body) .kc-not-found-actions-v3 .is-secondary { border-color: var(--kc3-border-strong) !important; background: rgba(255,255,255,.05) !important; }
body.kc-app-web:not(.admin-body) .kc-not-found-suggestions-v3 { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 22px; }
body.kc-app-web:not(.admin-body) .kc-not-found-suggestions-v3 a { padding: 6px 10px; border: 1px solid var(--kc3-border); border-radius: 999px; background: rgba(255,255,255,.025); color: #85858f !important; font-size: 9px; font-weight: 850; text-decoration: none; }

@media (max-width: 930px) {
    body.kc-app-web:not(.admin-body) .kc-download-layout-v3 { grid-template-columns: 1fr; width: min(720px,100%); }
    body.kc-app-web:not(.admin-body) .kc-download-panel-v3 { width: 100%; }
    body.kc-app-web:not(.admin-body) .kc-channel-profile-v3 { grid-template-columns: 112px minmax(0,1fr); }
    body.kc-app-web:not(.admin-body) .kc-channel-avatar-v3 { width: 112px; height: 112px; border-radius: 30px; }
    body.kc-app-web:not(.admin-body) .kc-channel-actions-v3 { grid-column: 1/-1; justify-content: flex-end; }
}

@media (max-width: 720px) {
    body.kc-app-web:not(.admin-body) .kc-download-page-v3 { padding: 30px 14px 105px; }
    body.kc-app-web:not(.admin-body) .kc-download-eyebrow-v3 { margin-top: 32px; }
    body.kc-app-web:not(.admin-body) .kc-download-hero-v3 h1 { font-size: 42px !important; }
    body.kc-app-web:not(.admin-body) .kc-download-benefits-v3 { grid-template-columns: 1fr; }
    body.kc-app-web:not(.admin-body) .kc-download-benefits-v3 > div { min-height: auto; display: grid; grid-template-columns: auto 1fr; column-gap: 10px; }
    body.kc-app-web:not(.admin-body) .kc-download-benefits-v3 > div .material-symbols-rounded { grid-row: 1/3; }
    body.kc-app-web:not(.admin-body) .kc-download-benefits-v3 > div b { margin-top: 0; }
    body.kc-app-web:not(.admin-body) .kc-download-panel-v3 { padding: 19px; border-radius: 23px; }
    body.kc-app-web:not(.admin-body) .kc-legal-page-v3 { padding: 20px 14px 105px; }
    body.kc-app-web:not(.admin-body) .kc-legal-top-v3 { margin-bottom: 22px; }
    body.kc-app-web:not(.admin-body) .kc-legal-grid-v3 { grid-template-columns: 1fr; }
    body.kc-app-web:not(.admin-body) .kc-legal-cta-v3 { align-items: stretch; flex-direction: column; }
    body.kc-app-web:not(.admin-body) .kc-channel-hero-v3 { height: 260px; }
    body.kc-app-web:not(.admin-body) .kc-channel-shell-v3 { margin-top: -64px; }
    body.kc-app-web:not(.admin-body) .kc-channel-profile-v3 { display: block; padding: 17px; text-align: center; }
    body.kc-app-web:not(.admin-body) .kc-channel-avatar-v3 { width: 104px; height: 104px; margin-inline: auto; border-radius: 29px; }
    body.kc-app-web:not(.admin-body) .kc-channel-copy-v3 h1 { justify-content: center; margin-top: 11px !important; font-size: 26px !important; }
    body.kc-app-web:not(.admin-body) .kc-channel-meta-v3 { justify-content: center; }
    body.kc-app-web:not(.admin-body) .kc-channel-description-v3 { text-align: center; }
    body.kc-app-web:not(.admin-body) .kc-channel-actions-v3 { justify-content: center; margin-top: 15px; }
    body.kc-app-web:not(.admin-body) .kc-channel-tabs-v3 { top: 5px; }
    body.kc-app-web:not(.admin-body) .kc-web-empty-v3 > div { text-align: center; }
}

@media (max-width: 520px) {
    html body.kc-app-web:not(.admin-body) .kc-all-page { padding: 24px 12px 98px !important; }
    body.kc-app-web:not(.admin-body) .kc-download-brand-v3 img { width: 42px; height: 42px; border-radius: 13px; }
    body.kc-app-web:not(.admin-body) .kc-download-hero-v3 h1 { font-size: 36px !important; }
    body.kc-app-web:not(.admin-body) .kc-download-lead-v3 { font-size: 13px; }
    body.kc-app-web:not(.admin-body) .kc-download-link-v3 { grid-template-columns: 44px minmax(0,1fr) auto; }
    body.kc-app-web:not(.admin-body) .kc-download-link-icon { width: 44px; height: 44px; }
    body.kc-app-web:not(.admin-body) .kc-legal-top-v3 .kc-download-brand-v3 small { display: none; }
    body.kc-app-web:not(.admin-body) .kc-legal-hero-v3 { padding: 22px; border-radius: 23px; }
    body.kc-app-web:not(.admin-body) .kc-legal-lead-v3 { font-size: 13px; }
    body.kc-app-web:not(.admin-body) .kc-legal-links-v3 { flex-wrap: wrap; }
    body.kc-app-web:not(.admin-body) .kc-channel-back-v3 { top: 13px; right: 13px; }
    body.kc-app-web:not(.admin-body) .kc-channel-app-v3 { display: none; }
    body.kc-app-web:not(.admin-body) .kc-not-found-code-v3 { font-size: 80px; }
    body.kc-app-web:not(.admin-body) .kc-not-found-code-v3 i { width: 60px; height: 60px; border-radius: 19px; font-size: 30px; }
    body.kc-app-web:not(.admin-body) .kc-not-found-actions-v3 :where(a,button) { flex: 1 1 130px; }
}
