:root {
    --bg: #000000;
    --panel: #0b0b12;
    --panel-2: #13131c;
    --text: #f4f4f4;
    --muted: #9ea0ad;
    --pink: #ff00ff;
    --green: #00ff9f;
    --border: rgba(255, 0, 255, 0.22);
    --border-soft: rgba(255, 0, 255, 0.14);
    --border-strong: rgba(255, 0, 255, 0.4);
    --border-green: rgba(0, 255, 159, 0.34);
    --border-width-thin: 1px;
    --border-width-medium: 2px;
    --border-width-thick: 3px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --glow-pink: 0 0 24px rgba(255, 0, 255, 0.22);
    --glow-green: 0 0 24px rgba(0, 255, 159, 0.14);
    --page-gutter: clamp(10px, 2vw, 24px);
    --page-gutter-wide: clamp(14px, 3vw, 40px);
    --control-min-height: clamp(38px, 3.2vw, 46px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
}

html {
    background: var(--bg);
    font-size: clamp(14px, 0.78rem + 0.28vw, 16px);
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background:
        radial-gradient(circle at top right, rgba(255, 0, 255, 0.12), transparent 26%),
        radial-gradient(circle at top left, rgba(0, 255, 159, 0.1), transparent 24%),
        var(--bg);
    color: var(--text);
}

a,
button {
    transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

a {
    color: var(--green);
}

a:hover {
    color: #ffffff;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0.01em;
    max-width: 100%;
    min-width: 0;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

img,
video {
    height: auto;
}

main,
section,
article,
aside,
header,
footer,
nav,
form,
fieldset,
.card,
.panel,
.neon-card {
    min-width: 0;
}

select {
    color-scheme: dark;
}

select:not([multiple]):not([size]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(0, 255, 159, 0.92) 50%),
        linear-gradient(135deg, rgba(0, 255, 159, 0.92) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 12px) calc(50% - 2px);
    background-size: 7px 7px, 7px 7px;
    background-repeat: no-repeat;
    padding-right: 34px;
}

select:not([multiple]):not([size]):focus-visible {
    outline: 2px solid rgba(0, 255, 159, 0.58);
    outline-offset: 2px;
}

select option,
select optgroup {
    background: #0b1118;
    color: #f1f7ff;
}

select:disabled {
    opacity: 0.64;
    cursor: not-allowed;
}
/* --- GLOBAL MOBILE CONTAINMENT & OVERRIDES --- */
@media (max-width: 480px) {
    html,
    body {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden !important;
    }

    main {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .community-shell,
    .community-panel,
    .member-card,
    .message-thread,
    .message-sidebar,
    .stats-grid,
    .members-grid,
    .messages-layout {
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .feed-shell,
    .feed-stage,
    .feed-card {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;
    }

    section,
    article,
    aside,
    .panel,
    .card {
        max-width: 100vw !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    .flash-stack {
        width: 100vw !important;
        max-width: 100vw !important;
        left: 0;
        right: 0;
        margin: 0 auto 12px auto !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}
@media (max-width: 412px) {
    html, body {
        font-size: clamp(14px, 3.64vw, 15px);
    }
}
@media (max-width: 390px) {
    html, body {
        font-size: clamp(13.5px, 3.59vw, 14.5px);
    }
}
@media (max-width: 360px) {
    html, body {
        font-size: clamp(13px, 3.61vw, 14px);
    }
}
@media (max-width: 340px) {
    html, body {
        font-size: clamp(12.5px, 3.68vw, 13.5px);
    }
}

button {
    font-weight: 700;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 56px;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    text-decoration: none;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-shadow: 0 0 14px rgba(0, 255, 159, 0.24);
}

.navbar-logo-image {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.24), 0 0 16px rgba(0, 255, 159, 0.3);
}

.navbar-logo-text {
    display: inline-block;
}

.navbar-menu,
.navbar-left,
.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-menu {
    flex: 1;
    min-width: 0;
    justify-content: space-between;
}

.navbar-left {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.navbar-right {
    justify-content: flex-end;
    min-width: min(100%, 720px);
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.navbar-right-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.navbar-admin-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(96px, auto));
    align-items: center;
    gap: 10px;
    justify-content: end;
    order: -1;
    position: relative;
    z-index: 1210;
}

.navbar-legal {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.navbar-legal .su-legal-nav {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.navbar-legal .su-legal-nav__title {
    display: none;
}

.navbar-legal .su-legal-nav__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px 10px;
}

.navbar-legal .su-legal-nav__links a {
    width: auto;
    min-height: 22px;
    padding: 0;
    justify-content: center;
    font-size: 0.72rem;
    color: rgba(223, 236, 255, 0.78);
    text-decoration: none;
    font-weight: 700;
}

.navbar-legal .su-legal-nav__links a:hover,
.navbar-legal .su-legal-nav__links a:focus-visible {
    color: #00f5c4;
}

.navbar-right-actions,
.navbar-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.navbar-auth {
    margin-left: 0;
    justify-content: flex-end;
}

.navbar-admin-actions a {
    justify-content: center;
    text-align: center;
}

.navbar-left a,
.navbar-right a,
.navbar-right button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.navbar-left a:hover,
.navbar-right a:hover,
.navbar-right button:hover {
    color: var(--green);
    transform: none;
}

.navbar-left a.navbar-link-locked,
.navbar-right a.navbar-link-locked {
    color: rgba(255, 255, 255, 0.44);
    text-decoration: none;
}

.navbar-left a.navbar-link-locked:hover,
.navbar-right a.navbar-link-locked:hover {
    color: rgba(255, 255, 255, 0.58);
}

.navbar-link-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    padding: 1px 6px;
    border: 1px solid rgba(255, 0, 255, 0.42);
    border-radius: 999px;
    color: #ff8ce6;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.2;
}

.navbar-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.navbar-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 3px 0;
    background: var(--green);
    border-radius: 999px;
}

main {
    min-height: calc(100vh - 56px);
    padding: 14px 0 80px;
}
@media (max-width: 480px) {
  .navbar {
     min-height: 54px !important;
     padding: 0 8px !important;
  }
  .navbar-menu, .navbar-left, .navbar-right {
     width: 100% !important;
     max-width: 100% !important;
     padding: 0 !important;
  }
  .navbar-left a, .navbar-right a, .navbar-right button {
     min-height: 38px !important;
     padding: 0 8px !important;
     margin: 0 0 2px 0 !important;
     border-radius: 10px !important;
     font-size: 0.98em !important;
     width: 100% !important;
     box-sizing: border-box !important;
  }
  .navbar-hamburger {
     display: flex !important;
     width: 38px !important;
     height: 38px !important;
     margin: 4px 0 4px 0 !important;
  }
}

.flash-stack {
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto 18px;
    display: grid;
    gap: 10px;
}

.maintenance-banner {
    width: min(1180px, calc(100vw - 32px));
    margin: 12px auto 14px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 159, 0.24);
    background: rgba(0, 26, 18, 0.72);
    color: #d7fff1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    box-shadow: 0 0 14px rgba(0, 255, 159, 0.16);
}

.maintenance-banner--warning {
    border-color: rgba(255, 183, 0, 0.44);
    background: rgba(38, 24, 0, 0.74);
    color: #ffe9b3;
    box-shadow: 0 0 14px rgba(255, 183, 0, 0.2);
}

.maintenance-banner--critical {
    border-color: rgba(255, 64, 117, 0.54);
    background: rgba(42, 6, 18, 0.78);
    color: #ffd6e3;
    box-shadow: 0 0 14px rgba(255, 64, 117, 0.22);
}

.maintenance-label {
    font-weight: 800;
    letter-spacing: 0.02em;
}

.maintenance-message {
    color: inherit;
    opacity: 0.96;
}

.ad-slot {
    width: min(1180px, calc(100vw - 32px));
    margin: 10px auto 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 255, 159, 0.2);
    background:
        linear-gradient(150deg, rgba(0, 255, 159, 0.06), rgba(255, 0, 255, 0.08)),
        rgba(6, 9, 14, 0.95);
    box-shadow: 0 0 18px rgba(0, 255, 159, 0.1), 0 0 18px rgba(255, 0, 255, 0.1);
}

.ad-slot--inline {
    width: 100%;
    margin: 8px 0 12px;
}

.ad-slot--global {
    margin: 22px auto 6px;
}

.ad-slot__head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 8px;
}

.ad-slot__label {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 255, 0.32);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ad-slot .adsbygoogle {
    display: block;
    width: 100%;
    min-height: clamp(7.5rem, 16vw, 8.125rem);
}

.ad-slot__adsterra {
    display: grid;
    place-items: center;
    width: min(100%, var(--adsterra-width, 300px));
    min-height: var(--adsterra-height, 250px);
    margin: 0 auto;
    overflow: hidden;
}

.ad-slot__adsterra iframe {
    display: block;
    max-width: 100%;
}

.ad-slot__fallback {
    min-height: clamp(7rem, 15vw, 7.5rem);
    border-radius: 12px;
    border: 1px dashed rgba(255, 0, 255, 0.35);
    background: rgba(2, 4, 10, 0.76);
    padding: 14px;
    display: grid;
    gap: 8px;
    align-content: center;
}

.ad-slot__fallback strong {
    color: var(--green);
    font-size: 0.98rem;
}

.ad-slot__fallback p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

.ad-slot__fallback a {
    width: fit-content;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 159, 0.34);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 159, 0.1);
}

.ad-slot__fallback a:hover {
    border-color: rgba(255, 0, 255, 0.44);
    background: rgba(255, 0, 255, 0.14);
}

.ad-slot__example {
    margin-top: 2px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 159, 0.3);
    background: linear-gradient(130deg, rgba(0, 255, 159, 0.08), rgba(255, 0, 255, 0.12));
    display: grid;
    gap: 4px;
}

.ad-slot__example-tag {
    display: inline-flex;
    width: fit-content;
    min-height: 20px;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 255, 0.45);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ad-slot__example-cta {
    margin-top: 2px;
    color: var(--green) !important;
    font-weight: 700;
}

.ad-slot__catalog {
    margin-top: 4px;
    display: grid;
    gap: 10px;
}

.ad-slot__catalog-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    align-items: baseline;
}

.ad-slot__catalog-head strong {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.ad-slot__catalog-head span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
}

.ad-slot__catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 10px;
}

.ad-slot__catalog-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 159, 0.22);
    background: linear-gradient(155deg, rgba(0, 255, 159, 0.06), rgba(255, 0, 255, 0.12));
    display: grid;
    min-height: 100%;
}

.ad-slot__catalog-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.ad-slot__catalog-body {
    padding: 10px;
    display: grid;
    gap: 6px;
}

.ad-slot__catalog-tag {
    width: fit-content;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 255, 0.4);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
}

.ad-slot__catalog-body strong {
    color: #fff;
    font-size: 0.97rem;
    line-height: 1.25;
}

.ad-slot__catalog-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.84rem;
}

.ad-slot__catalog-meta {
    margin-top: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ad-slot__catalog-meta span {
    color: var(--green);
    font-size: 0.84rem;
    font-weight: 700;
}

.ad-slot__catalog-meta a {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 159, 0.36);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 159, 0.1);
    font-size: 0.8rem;
}

.ad-slot__catalog-meta a:hover {
    border-color: rgba(255, 0, 255, 0.45);
    background: rgba(255, 0, 255, 0.14);
}

.ad-slot__support {
    margin-top: 4px;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 159, 0.24);
    background: rgba(1, 10, 14, 0.62);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.ad-slot__support-copy {
    display: grid;
    gap: 4px;
    align-content: start;
}

.ad-slot__support-tag {
    display: inline-flex;
    width: fit-content;
    min-height: 20px;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 159, 0.45);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ad-slot__support-copy p {
    margin: 0;
}

.ad-slot__support-link {
    margin-top: 4px;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 255, 0.34);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 255, 0.12);
}

.ad-slot__support-link:hover {
    border-color: rgba(0, 255, 159, 0.45);
    background: rgba(0, 255, 159, 0.12);
}

.ad-slot__support-media {
    display: grid;
    gap: 8px;
    justify-items: end;
    min-width: clamp(5.5rem, 13vw, 7rem);
}

.ad-slot__support-media img {
    width: clamp(5.5rem, 13vw, 6.875rem);
    height: clamp(5.5rem, 13vw, 6.875rem);
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 255, 0.35);
    background: #fff;
    padding: 4px;
}

.ad-slot__support-video {
    width: min(100%, clamp(10rem, 24vw, 13.75rem));
    max-width: 40vw;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 159, 0.3);
    background: #000;
}

@media (max-width: 900px) {
    .ad-slot__catalog-grid {
        grid-template-columns: 1fr;
    }

    .ad-slot__support {
        grid-template-columns: 1fr;
    }

    .ad-slot__support-media {
        justify-items: start;
    }

    .ad-slot__support-video {
        width: min(100%, 360px);
        max-width: 100%;
    }
}

.home-ad-slot,
.community-ad-slot,
.profile-ad-slot {
    width: 100%;
}

.flash-pill {
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 0, 255, 0.24);
    background: rgba(15, 15, 21, 0.92);
    box-shadow: var(--glow-pink);
}

.flash-pill[data-level="success"] {
    border-color: rgba(0, 255, 159, 0.28);
    box-shadow: var(--glow-green);
}

.flash-pill[data-level="error"],
.flash-pill[data-level="danger"] {
    border-color: rgba(255, 0, 95, 0.42);
}

.assistant-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--green));
    color: #050505;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: var(--glow-pink), var(--glow-green);
    cursor: pointer;
}

.feature-locked {
    opacity: 0.45 !important;
    filter: grayscale(0.9);
    cursor: not-allowed !important;
}

.feature-locked a,
.feature-locked button,
.feature-locked input,
.feature-locked select,
.feature-locked textarea {
    pointer-events: none !important;
}

.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    width: min(1200px, calc(100vw - 40px));
    margin: 0 auto;
}

.subscription-hero {
    width: min(1200px, calc(100vw - 40px));
    margin: 16px auto 24px;
    display: flex;
    justify-content: center;
}

.subscription-hero img {
    width: 100%;
    max-width: 760px;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(255, 0, 255, 0.28);
    box-shadow: var(--glow-pink), var(--glow-green);
}

.subscription-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    box-shadow: var(--glow-pink), var(--glow-green);
}

.subscription-card--active {
    border-color: rgba(0, 255, 159, 0.42);
}

.subscription-card__name {
    font-size: 1.2rem;
    font-weight: 800;
}

.subscription-card__price {
    margin: 12px 0;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--green);
}

.subscription-card__features,
.subscription-card__platforms,
.subscription-status-box,
.subscription-message {
    margin-top: 12px;
}

.subscription-discount {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.subscription-discount label {
    font-size: 0.88rem;
    color: var(--muted);
}

.subscription-discount input {
    min-height: 40px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: rgba(4, 6, 12, 0.92);
    color: var(--text);
    padding: 0 12px;
}

.subscription-discount input:focus-visible {
    outline: 2px solid rgba(0, 255, 159, 0.45);
    outline-offset: 1px;
}

.subscription-card__platforms,
.subscription-status-line {
    color: var(--muted);
    line-height: 1.6;
}

.subscription-actions {
    width: min(1200px, calc(100vw - 40px));
    margin: 24px auto 0;
    display: flex;
    justify-content: flex-end;
}

.subscription-message[data-error="true"] {
    color: #ff7f9d;
}

.placeholder-return-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 159, 0.3);
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    text-decoration: none;
}

.feature-placeholder-section {
    margin-top: 10px;
}

.placeholder-actions {
    width: 100%;
    margin-top: 16px;
}

#navbar-messages-link {
    gap: 8px;
}

#navbar-messages-unread {
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(255, 0, 255, 0.22);
    color: #fff;
    font-size: 0.78rem;
}

#navbar-messages-unread.is-hidden {
    display: none;
}

@media (max-width: 900px) {
    .navbar-logo {
        font-size: 1.2rem;
    }

    .navbar-logo-image {
        width: 30px;
        height: 30px;
    }

    .navbar {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 12px;
    }

    .navbar-hamburger {
        display: inline-flex;
        margin-left: auto;
    }

    .navbar-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        order: 3;
    }

    .navbar-menu.navbar-menu-open {
        display: flex;
        margin-top: 8px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        background: rgba(6, 6, 10, 0.92);
    }

    .navbar-left,
    .navbar-right {
        width: 100%;
        min-width: 0;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .navbar-right-main {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .navbar-right-actions,
    .navbar-auth,
    .navbar-admin-actions {
        width: 100%;
        margin-left: 0;
        align-items: stretch;
    }

    .navbar-right-actions,
    .navbar-auth {
        flex-direction: column;
    }

    .navbar-admin-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .navbar-admin-actions > a:first-child {
        grid-column: 1 / -1;
    }

    .navbar-legal {
        justify-content: flex-start;
    }

    .navbar-legal .su-legal-nav__links {
        justify-content: flex-start;
    }

    .navbar-legal .su-legal-nav__links a {
        width: auto;
        min-height: 24px;
        padding: 0 2px;
        border-radius: 0;
        justify-content: flex-start;
    }

    .navbar-left a,
    .navbar-right a,
    .navbar-right button {
        width: 100%;
        min-height: 36px;
        justify-content: flex-start;
        padding: 0 10px;
        border-radius: 10px;
    }

    .navbar-admin-actions a {
        justify-content: center;
        min-height: 38px;
    }

    .subscription-hero {
        width: min(1200px, calc(100vw - 24px));
        margin: 12px auto 20px;
    }

    .subscription-hero img {
        max-width: 100%;
        border-radius: 16px;
    }
}
