:root {
    --bg: #0f172a;
    --bg-soft: #1e293b;
    --bg-card: #162033;
    --gold: #c9a227;
    --gold-light: #f5e6a3;
    --text: #f8fafc;
    --muted: #94a3b8;
    --line: rgba(201, 162, 39, 0.35);
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    --header-bg: rgba(15, 23, 42, 0.88);
    --qr-dot: var(--gold-light);
    --qr-bg: var(--bg);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background:
        radial-gradient(circle at top, rgba(201, 162, 39, 0.12), transparent 34rem),
        linear-gradient(180deg, #111827 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.6;
}

a { color: var(--gold-light); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: var(--header-bg);
    border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold-light);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(0, 84, 166, 0.35));
    border: 1px solid var(--line);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
}

.nav-cta {
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: var(--gold);
    color: #111827 !important;
    font-weight: 700;
    text-decoration: none;
}

.nav-cta:hover { filter: brightness(1.05); text-decoration: none; }

.hero {
    padding: 4.5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero h1 {
    margin: 0.75rem 0 1rem;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    color: var(--gold-light);
}

.hero-copy {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 38rem;
}

.hero-card {
    background: rgba(22, 32, 51, 0.92);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.hero-card h2 {
    margin: 0 0 0.75rem;
    color: var(--gold-light);
    font-size: 1.25rem;
}

.hero-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    font-family: system-ui, sans-serif;
}

.section {
    padding: 3rem 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--gold-light);
}

.section-head p {
    margin: 0;
    color: var(--muted);
    max-width: 34rem;
    font-family: system-ui, sans-serif;
}

.trailer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.trailer-card {
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 160ms ease, border-color 160ms ease;
}

.trailer-card:hover {
    transform: translateY(-3px);
    border-color: var(--line);
}

.trailer-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    background: #020617 center/cover no-repeat;
    position: relative;
}

.trailer-thumb::after {
    content: "Preview";
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: var(--gold-light);
    font-family: system-ui, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trailer-body {
    padding: 1rem 1rem 1.15rem;
}

.trailer-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.55rem;
    font-family: system-ui, sans-serif;
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trailer-body h3 {
    margin: 0 0 0.45rem;
    font-size: 1.15rem;
    color: var(--text);
}

.trailer-body p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
}

.button {
    display: inline-block;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--gold);
    color: #111827;
    font-family: system-ui, sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.button:hover { filter: brightness(1.05); text-decoration: none; }

.button-secondary {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--line);
}

.about-panel,
.app-panel {
    background: rgba(22, 32, 51, 0.88);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.about-panel p,
.app-panel p {
    color: var(--muted);
    font-family: system-ui, sans-serif;
}

.app-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: center;
}

.app-panel h2,
.about-panel h2 {
    margin-top: 0;
    color: var(--gold-light);
}

.site-footer {
    margin-top: 3rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-family: system-ui, sans-serif;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.footer-bmc-link {
    color: var(--gold-light);
}

.support-panel {
    margin-top: 1.5rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(22, 32, 51, 0.72);
}

.support-panel p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-family: system-ui, sans-serif;
}

.bmc-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: #ffdd00;
    color: #0f172a;
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 8px 20px rgba(255, 221, 0, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.bmc-button:hover {
    background: #ffe566;
    color: #0f172a;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 221, 0, 0.24);
}

.bmc-button-large {
    padding: 0.7rem 1.2rem;
    font-size: 1rem;
}

.bmc-button-icon {
    font-size: 1.1em;
    line-height: 1;
}

.bmc-floating-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1200;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: stretch;
    gap: 0;
    max-width: min(calc(100vw - 1.5rem), 20rem);
    border-radius: 999px;
    background: #ffdd00;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    touch-action: none;
    user-select: none;
}

.bmc-floating-widget[hidden] {
    display: none !important;
}

.bmc-floating-widget--dragging {
    cursor: grabbing;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.bmc-floating-drag {
    display: grid;
    place-items: center;
    width: 2rem;
    border: 0;
    border-radius: 999px 0 0 999px;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    cursor: grab;
    font-size: 0.8rem;
    line-height: 1;
    padding: 0;
}

.bmc-floating-drag:active {
    cursor: grabbing;
}

.bmc-floating-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1rem 0.65rem 0.35rem;
    color: #0f172a;
    font-family: system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 0 999px 999px 0;
}

.bmc-floating-link:hover {
    color: #0f172a;
}

@media (max-width: 520px) {
    .bmc-floating-link span:not(.bmc-button-icon) {
        display: none;
    }

    .bmc-floating-link {
        padding: 0.65rem 0.55rem;
    }
}

body.bmc-support-pane-open {
    overflow: hidden;
}

.bmc-support-pane {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.bmc-support-pane[hidden] {
    display: none !important;
}

.bmc-support-pane-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(4px);
}

.bmc-support-pane-dialog {
    position: relative;
    z-index: 1;
    width: min(28rem, calc(100vw - 2rem));
    max-height: min(90vh, 36rem);
    overflow: auto;
    padding: 1.35rem 1.4rem 1.45rem;
    border-radius: 1.15rem;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top right, rgba(201, 162, 39, 0.16), transparent 12rem),
        linear-gradient(180deg, #1a2438 0%, #121a2b 100%);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.bmc-support-pane-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.bmc-support-pane-heading {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.bmc-support-pane-heading h2 {
    margin: 0;
    color: var(--gold-light);
    font-size: 1.25rem;
    line-height: 1.25;
}

.bmc-support-pane-close {
    flex: 0 0 auto;
    width: 2.1rem;
    height: 2.1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.45);
    color: var(--gold-light);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.bmc-support-pane-close:hover {
    background: rgba(201, 162, 39, 0.14);
}

.bmc-support-pane-lead {
    margin: 0.85rem 0 1.15rem;
    color: var(--muted);
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
}

.bmc-support-pane-sections {
    display: grid;
    gap: 0.75rem;
}

.bmc-support-section {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 0.95rem;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.55);
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.bmc-support-section:hover {
    text-decoration: none;
    border-color: rgba(201, 162, 39, 0.7);
    background: rgba(201, 162, 39, 0.1);
    transform: translateY(-1px);
}

.bmc-support-section-icon {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.75rem;
    background: rgba(255, 221, 0, 0.14);
    font-size: 1.15rem;
}

.bmc-support-section-body {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.bmc-support-section-title {
    color: var(--gold-light);
    font-family: system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
}

.bmc-support-section-desc {
    color: var(--muted);
    font-family: system-ui, sans-serif;
    font-size: 0.88rem;
    line-height: 1.4;
}

.bmc-support-section-arrow {
    color: var(--gold);
    font-size: 1.1rem;
}

.watch-layout {
    padding: 2.5rem 0 3rem;
}

.player-shell {
    background: #020617;
    border: 1px solid var(--line);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.player-shell video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.watch-copy {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 1.5rem;
}

.watch-copy h1 {
    margin: 0 0 0.75rem;
    color: var(--gold-light);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.watch-copy p {
    color: var(--muted);
    font-family: system-ui, sans-serif;
}

.auth-section {
    padding: 3rem 0 4rem;
}

.auth-card {
    max-width: 440px;
    margin: 0 auto;
    background: rgba(22, 32, 51, 0.92);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}

.auth-card-wide {
    max-width: 560px;
}

.auth-card-qr {
    max-width: 480px;
}

.auth-card-signin {
    max-width: 920px;
}

.auth-section-signin {
    padding: 2.5rem 0 3.5rem;
}

.signin-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
    margin-top: 0.5rem;
}

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

.signin-panel-app {
    display: grid;
    justify-items: center;
    text-align: center;
}

.signin-panel-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    align-self: stretch;
    color: var(--muted);
    font-family: system-ui, sans-serif;
    font-size: 0.9rem;
    padding: 0 0.15rem;
}

.signin-panel-divider::before,
.signin-panel-divider::after {
    content: '';
    flex: 1 1 auto;
    width: 1px;
    min-height: 1.5rem;
    background: var(--line);
}

.signin-panel-divider span {
    writing-mode: horizontal-tb;
    text-align: center;
    max-width: 5.5rem;
    line-height: 1.35;
}

.auth-card-signin .signin-qr-only {
    width: min(100%, 280px);
}

.auth-card-signin .app-launch-lead {
    margin-top: 0;
}

.auth-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0 1.25rem;
    color: var(--muted);
    font-family: system-ui, sans-serif;
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    height: 1px;
    background: var(--line);
}

.auth-card-signin .app-launch-lead {
    margin-top: 0;
}

@media (max-width: 820px) {
    .signin-split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .signin-panel-divider {
        flex-direction: row;
        align-self: auto;
        margin: 1.75rem 0 1.25rem;
        padding: 0;
        gap: 1rem;
    }

    .signin-panel-divider::before,
    .signin-panel-divider::after {
        width: auto;
        height: 1px;
        min-height: 0;
        flex: 1 1 auto;
    }

    .signin-panel-divider span {
        max-width: none;
        white-space: nowrap;
    }

    .signin-panel-app {
        justify-items: stretch;
    }
}

.auth-section-qr {
    display: grid;
    place-items: center;
    min-height: calc(100dvh - 12rem);
    padding: 2rem 0 3rem;
}

.signin-qr-only {
    width: min(72vmin, 420px);
    margin: 0 auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.signin-qr-only svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.75rem;
}

.app-launch-panel {
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.app-launch-actions {
    width: 100%;
    display: grid;
    justify-items: center;
}

.app-launch-button {
    min-width: min(100%, 18rem);
    text-align: center;
}

.app-launch-lead {
    text-align: center;
}

.auth-card h1 {
    margin: 0 0 0.5rem;
    color: var(--gold-light);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
}

.auth-lead {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-family: system-ui, sans-serif;
}

.auth-form {
    display: grid;
    gap: 1rem;
}

.auth-form label {
    display: grid;
    gap: 0.35rem;
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
    color: var(--text);
}

.auth-hint {
    color: var(--muted);
    font-size: 0.82rem;
}

.auth-form input {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border-radius: 0.65rem;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--text);
    font: inherit;
}

.auth-form input:focus {
    outline: 2px solid rgba(201, 162, 39, 0.45);
    outline-offset: 1px;
}

.auth-actions {
    margin-top: 0.25rem;
}

.auth-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.auth-switch {
    margin: 1.25rem 0 0;
    color: var(--muted);
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
}

.auth-alert {
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    margin-bottom: 1rem;
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
}

.auth-alert-error {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
}

.auth-alert-success {
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.35);
    color: #bbf7d0;
}

.auth-form select {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border-radius: 0.65rem;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--text);
    font: inherit;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: system-ui, sans-serif;
}

.auth-checkbox input {
    width: auto;
}

.account-divider {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 1.75rem 0;
}

.account-section-title {
    margin: 0 0 0.35rem;
    color: var(--gold-light);
    font-size: 1.25rem;
}

.account-details {
    display: grid;
    gap: 1rem;
    margin: 0 0 1.5rem;
    font-family: system-ui, sans-serif;
}

.account-details dt {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.account-details dd {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
}

.settings-page {
    max-width: 960px;
}

.settings-panel {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.settings-panel:first-of-type {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.settings-panel-head {
    margin-bottom: 1rem;
}

.settings-panel-lead {
    margin-bottom: 0;
}

.settings-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.subscription-badge {
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.18);
    color: var(--gold-light, #f5e6a3);
    font-size: 0.82rem;
    font-weight: 600;
}

.subscription-badge-active {
    background: rgba(134, 239, 172, 0.16);
    color: #86efac;
}

.subscription-tier-list {
    margin: 0 0 1.25rem;
}

.subscription-tiers {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.subscription-tier {
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.35);
}

.subscription-tier.is-current {
    border-color: var(--gold, #c9a227);
}

.subscription-tier strong {
    color: var(--gold-light, #f5e6a3);
}

.settings-table-wrap {
    overflow-x: auto;
    margin: 0 0 1rem;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: rgba(15, 23, 42, 0.45);
}

.settings-table {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
}

.settings-table th,
.settings-table td {
    padding: 0.85rem 0.9rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    text-align: left;
    vertical-align: top;
}

.settings-table th {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(15, 23, 42, 0.55);
}

.settings-table tbody tr:last-child td {
    border-bottom: 0;
}

.settings-table code {
    font-size: 0.82rem;
    color: var(--gold-light);
    word-break: break-all;
}

.settings-table-sub {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.settings-table-current {
    background: rgba(201, 162, 39, 0.08);
}

.settings-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.18);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.settings-table-actions {
    white-space: nowrap;
}

.settings-device-form {
    margin: 0;
}

.button-small {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

.button-danger {
    background: transparent;
    border-color: rgba(248, 113, 113, 0.55);
    color: #fca5a5;
}

.button-danger:hover {
    background: rgba(248, 113, 113, 0.12);
    border-color: #f87171;
    color: #fecaca;
}

.settings-footer-actions {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
    .settings-table thead {
        display: none;
    }

    .settings-table,
    .settings-table tbody,
    .settings-table tr,
    .settings-table td {
        display: block;
        width: 100%;
    }

    .settings-table tr {
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    }

    .settings-table tr:last-child {
        border-bottom: 0;
    }

    .settings-table td {
        border: 0;
        padding: 0.35rem 0.9rem;
    }

    .settings-table td::before {
        content: attr(data-label);
        display: block;
        color: var(--muted);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 0.15rem;
    }
}

.notice {
    padding: 1rem 1.1rem;
    border-radius: 0.9rem;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid var(--line);
    color: var(--gold-light);
    font-family: system-ui, sans-serif;
}

/* PlayStation-style system notification bar */
.ps-notifications {
    position: relative;
    z-index: 30;
}

.ps-notification {
    animation: ps-notification-in 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(180deg, rgba(46, 56, 74, 0.98) 0%, rgba(28, 34, 48, 0.96) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 8px 24px rgba(0, 0, 0, 0.28);
}

.ps-notification + .ps-notification {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.ps-notification-inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.72rem 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.ps-notification-icon {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    position: relative;
}

.ps-notification-icon::before {
    content: "i";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #dbeafe;
}

.ps-notification-warning .ps-notification-icon::before {
    content: "!";
    color: #fde68a;
}

.ps-notification-error .ps-notification-icon::before {
    content: "×";
    color: #fecaca;
    font-size: 1.1rem;
}

.ps-notification-warning {
    background: linear-gradient(180deg, rgba(74, 58, 28, 0.98) 0%, rgba(42, 32, 18, 0.96) 100%);
}

.ps-notification-error {
    background: linear-gradient(180deg, rgba(74, 28, 28, 0.98) 0%, rgba(42, 18, 18, 0.96) 100%);
}

.ps-notification-body {
    flex: 1 1 auto;
    min-width: 0;
}

.ps-notification-message {
    margin: 0;
    color: rgba(248, 250, 252, 0.96);
    font-size: 0.92rem;
    line-height: 1.45;
}

.ps-notification-action {
    display: inline-block;
    margin-top: 0.25rem;
    color: #93c5fd;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
}

.ps-notification-action:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

.ps-notification-close {
    flex: 0 0 auto;
    width: 1.85rem;
    height: 1.85rem;
    border: 0;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(248, 250, 252, 0.75);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
}

.ps-notification-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@keyframes ps-notification-in {
    from {
        opacity: 0;
        transform: translateY(-110%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 820px) {
    .hero-grid,
    .app-panel,
    .watch-copy {
        grid-template-columns: 1fr;
    }

    .site-nav a:not(.nav-cta):not(.nav-auth) {
        display: none;
    }

    .language-switcher {
        order: 10;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
}

.language-select,
.language-select-label select {
    appearance: none;
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    padding: 0.45rem 2rem 0.45rem 0.75rem;
    font-family: system-ui, sans-serif;
    font-size: 0.9rem;
    line-height: 1.2;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--gold-light) 50%),
        linear-gradient(135deg, var(--gold-light) 50%, transparent 50%);
    background-position:
        calc(100% - 16px) calc(50% + 2px),
        calc(100% - 11px) calc(50% + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.language-select-label {
    display: grid;
    gap: 0.45rem;
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
}
