:root {
    --ob-bg: #f5f7fb;
    --ob-surface: #ffffff;
    --ob-surface-soft: #eef2ff;
    --ob-ink: #0b1020;
    --ob-ink-soft: #49536b;
    --ob-border: #dfe4ef;
    --ob-border-strong: #cbd3e4;
    --ob-primary: #5b67f1;
    --ob-primary-dark: #414bd2;
    --ob-primary-soft: #e9ebff;
    --ob-violet: #8a5cf6;
    --ob-yellow: #ffd84d;
    --ob-green: #15966b;
    --ob-green-soft: #dcf8ed;
    --ob-red: #d94b64;
    --ob-red-soft: #fff0f3;
    --ob-orange: #d68016;
    --ob-orange-soft: #fff5df;
    --ob-navy: #0f1832;
    --ob-navy-2: #172344;
    --ob-radius-xs: 9px;
    --ob-radius-sm: 14px;
    --ob-radius: 20px;
    --ob-radius-lg: 28px;
    --ob-radius-xl: 36px;
    --ob-shadow-sm: 0 8px 24px rgba(18, 26, 54, 0.08);
    --ob-shadow: 0 22px 60px rgba(18, 26, 54, 0.12);
    --ob-shadow-lg: 0 38px 90px rgba(18, 26, 54, 0.2);
    --ob-container: 1180px;
    --ob-header-height: 76px;
    --ob-ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ob-ink);
    background: var(--ob-bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.ob-nav-open {
    overflow: hidden;
}

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

a:hover {
    color: inherit;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

::selection {
    color: var(--ob-ink);
    background: var(--ob-yellow);
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    top: 8px;
    left: 8px;
    z-index: 100000;
    display: block;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto !important;
    color: var(--ob-ink);
    background: var(--ob-surface);
    border-radius: 8px;
    box-shadow: var(--ob-shadow-sm);
}

.ob-skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 99999;
    padding: 10px 16px;
    color: #fff;
    background: var(--ob-primary);
    border-radius: 8px;
    transition: top .2s ease;
}

.ob-skip-link:focus {
    top: 16px;
}

.ob-container {
    width: min(calc(100% - 40px), var(--ob-container));
    margin-inline: auto;
}

.ob-reading-width {
    max-width: 820px;
}

.ob-main {
    min-height: 60vh;
}

.ob-icon {
    width: 1.2em;
    height: 1.2em;
    flex: 0 0 auto;
}

.ob-button,
.obpg-button,
input[type="submit"],
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 20px;
    color: #fff;
    font-weight: 750;
    line-height: 1;
    background: linear-gradient(135deg, var(--ob-primary), var(--ob-violet));
    border: 1px solid transparent;
    border-radius: 13px;
    box-shadow: 0 10px 25px rgba(91, 103, 241, 0.23);
    transition: transform .2s var(--ob-ease), box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.ob-button:hover,
.obpg-button:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(91, 103, 241, 0.3);
}

.ob-button:focus-visible,
.obpg-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(91, 103, 241, 0.28);
    outline-offset: 3px;
}

.ob-button--ghost,
.obpg-button--secondary {
    color: var(--ob-ink);
    background: var(--ob-surface);
    border-color: var(--ob-border);
    box-shadow: none;
}

.ob-button--ghost:hover,
.obpg-button--secondary:hover {
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    border-color: #c9ceff;
    box-shadow: none;
}

.ob-button--light {
    color: var(--ob-navy);
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.ob-button--danger,
.obpg-button--danger {
    color: var(--ob-red);
    background: var(--ob-red-soft);
    border-color: #ffd4dc;
    box-shadow: none;
}

.ob-button--danger:hover,
.obpg-button--danger:hover {
    color: #fff;
    background: var(--ob-red);
    border-color: var(--ob-red);
    box-shadow: none;
}

.ob-button--small,
.obpg-button--small {
    min-height: 39px;
    padding: 0 14px;
    font-size: .88rem;
    border-radius: 11px;
}

.ob-button--large {
    min-height: 54px;
    padding-inline: 25px;
    border-radius: 15px;
}

.ob-button--full {
    width: 100%;
}

.ob-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--ob-ink-soft);
    background: var(--ob-surface);
    border: 1px solid var(--ob-border);
    border-radius: 12px;
    transition: .2s ease;
}

.ob-icon-button:hover {
    color: var(--ob-primary);
    background: var(--ob-primary-soft);
    border-color: #c9ceff;
}

.ob-eyebrow,
.obpg-eyebrow {
    display: inline-block;
    margin: 0 0 9px;
    color: var(--ob-primary-dark);
    font-size: .77rem;
    font-weight: 850;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ob-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--ob-primary-dark);
    font-size: .83rem;
    font-weight: 750;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(91, 103, 241, .16);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(28, 39, 79, .05);
    backdrop-filter: blur(10px);
}

/* Header */
.ob-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--ob-header-height);
    background: rgba(245, 247, 251, .78);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.admin-bar .ob-site-header {
    top: 32px;
}

.ob-site-header.is-scrolled {
    background: rgba(255, 255, 255, .9);
    border-color: rgba(203, 211, 228, .78);
    box-shadow: 0 10px 30px rgba(17, 25, 52, .06);
}

.ob-site-header__inner,
.ob-minimal-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100%;
}

.ob-brand,
.ob-brand--compact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ob-ink);
    font-size: 1.12rem;
    font-weight: 850;
    letter-spacing: -.03em;
}

.ob-brand__mark {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 37px;
    height: 37px;
    overflow: hidden;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 900;
    background: linear-gradient(145deg, var(--ob-primary), var(--ob-violet));
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(91, 103, 241, .28);
}

.ob-brand__mark::after {
    position: absolute;
    right: -9px;
    bottom: -11px;
    width: 26px;
    height: 26px;
    content: "";
    background: var(--ob-yellow);
    border-radius: 50%;
    opacity: .9;
}

.ob-brand__mark span {
    position: relative;
    z-index: 1;
}

.ob-brand--compact .ob-brand__mark {
    width: 31px;
    height: 31px;
    border-radius: 10px;
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    width: auto;
    max-height: 42px;
}

.ob-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ob-nav__list,
.ob-footer-nav__list,
.ob-nav .menu {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ob-nav__list a,
.ob-nav .menu a {
    color: var(--ob-ink-soft);
    font-size: .93rem;
    font-weight: 700;
    transition: color .2s ease;
}

.ob-nav__list a:hover,
.ob-nav .menu a:hover,
.ob-nav .current-menu-item > a {
    color: var(--ob-primary-dark);
}

.ob-nav__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ob-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--ob-ink);
    background: #fff;
    border: 1px solid var(--ob-border);
    border-radius: 12px;
}

/* Hero */
.ob-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(138, 92, 246, .13), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(91, 103, 241, .15), transparent 32%),
        linear-gradient(180deg, #f8f9ff 0%, #f5f7fb 100%);
}

.ob-hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image: linear-gradient(rgba(91, 103, 241, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(91, 103, 241, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.ob-hero__glow {
    position: absolute;
    width: 380px;
    height: 380px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .34;
}

.ob-hero__glow--one {
    top: 80px;
    left: -160px;
    background: var(--ob-violet);
}

.ob-hero__glow--two {
    right: -120px;
    bottom: 30px;
    background: var(--ob-primary);
}

.ob-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(410px, .95fr);
    align-items: center;
    gap: 70px;
    min-height: 680px;
    padding-block: 76px 95px;
}

.ob-hero__content {
    max-width: 650px;
}

.ob-hero h1 {
    max-width: 650px;
    margin: 20px 0 23px;
    color: var(--ob-ink);
    font-size: clamp(3rem, 6.2vw, 5.65rem);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .98;
}

.ob-hero h1 span {
    color: transparent;
    background: linear-gradient(125deg, var(--ob-primary-dark), var(--ob-violet) 60%, #ca7f16);
    background-clip: text;
    -webkit-background-clip: text;
}

.ob-hero__content > p {
    max-width: 590px;
    margin: 0;
    color: var(--ob-ink-soft);
    font-size: 1.13rem;
    line-height: 1.75;
}

.ob-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.ob-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    color: #58627a;
    font-size: .84rem;
    font-weight: 650;
}

.ob-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ob-hero__trust .ob-icon {
    color: var(--ob-green);
}

.ob-hero__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 540px;
}

.ob-phone-shadow {
    position: absolute;
    bottom: 12px;
    width: 330px;
    height: 90px;
    background: rgba(33, 47, 99, .25);
    border-radius: 50%;
    filter: blur(34px);
}

.ob-phone {
    position: relative;
    z-index: 2;
    width: min(360px, 90vw);
    min-height: 570px;
    padding: 18px 22px 22px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 20% 4%, rgba(255, 216, 77, .20), transparent 22%),
        radial-gradient(circle at 90% 20%, rgba(138, 92, 246, .5), transparent 36%),
        linear-gradient(155deg, #121b39, #0a1020 70%);
    border: 8px solid #fff;
    border-radius: 44px;
    box-shadow: var(--ob-shadow-lg);
    transform: rotate(2.2deg);
}

.ob-phone::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 35px;
}

.ob-phone__top {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.ob-phone__top span {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, .4);
    border-radius: 50%;
}

.ob-phone__top span:nth-child(2) {
    width: 44px;
    border-radius: 99px;
}

.ob-phone__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ob-phone__avatar {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(145deg, var(--ob-primary), var(--ob-violet));
    border: 3px solid rgba(255, 255, 255, .8);
    border-radius: 27px;
    box-shadow: 0 15px 34px rgba(91, 103, 241, .38);
}

.ob-phone__profile strong {
    font-size: 1.25rem;
}

.ob-phone__profile span {
    color: rgba(255,255,255,.58);
    font-size: .83rem;
}

.ob-phone__profile p {
    max-width: 250px;
    margin: 12px 0 18px;
    color: rgba(255, 255, 255, .76);
    font-size: .86rem;
    line-height: 1.55;
}

.ob-phone__links {
    display: grid;
    gap: 10px;
}

.ob-phone__links span {
    display: grid;
    grid-template-columns: 25px 1fr 20px;
    align-items: center;
    min-height: 57px;
    padding: 0 16px;
    font-size: .89rem;
    font-weight: 730;
    text-align: left;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 15px;
    backdrop-filter: blur(12px);
}

.ob-phone__links .ob-icon:last-child {
    opacity: .55;
}

.ob-phone__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 22px;
    color: rgba(255,255,255,.65);
    font-size: .77rem;
    font-weight: 750;
}

.ob-phone__brand .ob-brand__mark {
    width: 23px;
    height: 23px;
    font-size: .68rem;
    border-radius: 7px;
}

.ob-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 165px;
    padding: 13px 15px;
    color: var(--ob-ink);
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 16px;
    box-shadow: var(--ob-shadow-sm);
    backdrop-filter: blur(14px);
}

.ob-floating-card > .ob-icon {
    width: 34px;
    height: 34px;
    padding: 7px;
    color: var(--ob-primary);
    background: var(--ob-primary-soft);
    border-radius: 10px;
}

.ob-floating-card div {
    display: flex;
    flex-direction: column;
}

.ob-floating-card strong {
    font-size: .9rem;
    line-height: 1.25;
}

.ob-floating-card span {
    color: var(--ob-ink-soft);
    font-size: .73rem;
}

.ob-floating-card--stats {
    top: 80px;
    left: -22px;
    transform: rotate(-3deg);
}

.ob-floating-card--secure {
    right: -30px;
    bottom: 86px;
    transform: rotate(2deg);
}

.ob-logo-strip {
    position: relative;
    z-index: 4;
    margin-top: -32px;
}

.ob-logo-strip .ob-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    min-height: 72px;
    padding-inline: 25px;
    color: #677189;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--ob-border);
    border-radius: 20px;
    box-shadow: var(--ob-shadow-sm);
    backdrop-filter: blur(15px);
}

/* Sections */
.ob-section {
    padding-block: 110px;
}

.ob-section--soft {
    background: linear-gradient(180deg, #eef1fb, #f6f8fc);
    border-block: 1px solid var(--ob-border);
}

.ob-section-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.ob-section-heading--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.ob-section-heading h2,
.ob-how-copy h2,
.ob-cta-card h2 {
    margin: 0;
    font-size: clamp(2.15rem, 4vw, 3.7rem);
    font-weight: 880;
    letter-spacing: -.055em;
    line-height: 1.08;
}

.ob-section-heading > p,
.ob-how-copy > p {
    margin: 0;
    color: var(--ob-ink-soft);
    font-size: 1.02rem;
}

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

.ob-feature-card {
    position: relative;
    min-height: 270px;
    padding: 28px;
    overflow: hidden;
    background: var(--ob-surface);
    border: 1px solid var(--ob-border);
    border-radius: var(--ob-radius);
    box-shadow: 0 12px 35px rgba(21, 31, 64, .05);
    transition: transform .25s var(--ob-ease), box-shadow .25s ease, border-color .25s ease;
}

.ob-feature-card:hover {
    z-index: 2;
    border-color: #c9ceff;
    box-shadow: var(--ob-shadow);
    transform: translateY(-6px);
}

.ob-feature-card--wide {
    grid-column: span 2;
}

.ob-feature-card--dark {
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(138,92,246,.35), transparent 35%),
        linear-gradient(145deg, var(--ob-navy-2), var(--ob-navy));
    border-color: rgba(255,255,255,.08);
}

.ob-feature-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 35px;
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    border-radius: 14px;
}

.ob-feature-card--dark .ob-feature-card__icon {
    color: var(--ob-yellow);
    background: rgba(255,255,255,.1);
}

.ob-feature-card__icon .ob-icon {
    width: 23px;
    height: 23px;
}

.ob-feature-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    letter-spacing: -.025em;
}

.ob-feature-card p {
    max-width: 520px;
    margin: 0;
    color: var(--ob-ink-soft);
    font-size: .92rem;
}

.ob-feature-card--dark p {
    color: rgba(255,255,255,.69);
}

.ob-mini-links {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    display: flex;
    gap: 8px;
}

.ob-mini-links span {
    padding: 7px 11px;
    color: var(--ob-primary-dark);
    font-size: .72rem;
    font-weight: 750;
    background: var(--ob-primary-soft);
    border-radius: 99px;
}

.ob-security-flow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
}

.ob-security-flow span {
    padding: 8px 11px;
    color: rgba(255,255,255,.84);
    font-size: .72rem;
    font-weight: 750;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9px;
}

.ob-security-flow i {
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,.28);
}

.ob-how-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.ob-how-copy > p {
    margin-block: 22px 30px;
}

.ob-steps {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ob-steps li {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    min-height: 130px;
    padding: 24px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(203, 211, 228, .8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(18, 26, 54, .05);
}

.ob-steps > li > span {
    color: var(--ob-primary);
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.ob-steps h3 {
    margin: 0 0 5px;
    font-size: 1.12rem;
}

.ob-steps p {
    margin: 0;
    color: var(--ob-ink-soft);
    font-size: .9rem;
}

.ob-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    gap: 20px;
}

.ob-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    padding: 34px;
    background: var(--ob-surface);
    border: 1px solid var(--ob-border);
    border-radius: var(--ob-radius-lg);
    box-shadow: var(--ob-shadow-sm);
}

.ob-price-card--featured {
    color: #fff;
    background:
        radial-gradient(circle at 90% 0%, rgba(255,216,77,.18), transparent 30%),
        linear-gradient(150deg, var(--ob-navy-2), var(--ob-navy));
    border-color: var(--ob-navy-2);
    box-shadow: var(--ob-shadow-lg);
}

.ob-price-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 7px 10px;
    color: var(--ob-navy);
    font-size: .7rem;
    font-weight: 850;
    background: var(--ob-yellow);
    border-radius: 99px;
}

.ob-price-card__label {
    color: var(--ob-primary-dark);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ob-price-card--featured .ob-price-card__label {
    color: #aeb5ff;
}

.ob-price-card h3 {
    margin: 10px 0 15px;
    font-size: 1.55rem;
    letter-spacing: -.035em;
}

.ob-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 0;
}

.ob-price strong {
    font-size: 2.55rem;
    letter-spacing: -.06em;
}

.ob-price span {
    color: var(--ob-ink-soft);
    font-size: .84rem;
}

.ob-price-card--featured .ob-price span {
    color: rgba(255,255,255,.58);
}

.ob-price-card ul {
    display: grid;
    gap: 14px;
    padding: 25px 0;
    margin: 25px 0;
    list-style: none;
    border-block: 1px solid var(--ob-border);
}

.ob-price-card--featured ul {
    border-color: rgba(255,255,255,.11);
}

.ob-price-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ob-ink-soft);
    font-size: .91rem;
}

.ob-price-card--featured li {
    color: rgba(255,255,255,.76);
}

.ob-price-card li .ob-icon {
    color: var(--ob-green);
}

.ob-price-card > .ob-button {
    width: 100%;
    margin-top: auto;
}

.ob-section--cta {
    padding-top: 40px;
}

.ob-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    min-height: 300px;
    padding: 55px 60px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 10%, rgba(255,216,77,.24), transparent 30%),
        radial-gradient(circle at 10% 90%, rgba(138,92,246,.38), transparent 30%),
        linear-gradient(135deg, #18234a, #0a1020);
    border-radius: var(--ob-radius-xl);
    box-shadow: var(--ob-shadow-lg);
}

.ob-cta-card::after {
    position: absolute;
    right: -70px;
    bottom: -170px;
    width: 330px;
    height: 330px;
    content: "";
    border: 50px solid rgba(255,255,255,.035);
    border-radius: 50%;
}

.ob-cta-card > * {
    position: relative;
    z-index: 1;
}

.ob-cta-card .ob-eyebrow {
    color: var(--ob-yellow);
}

.ob-cta-card p {
    max-width: 590px;
    margin: 17px 0 0;
    color: rgba(255,255,255,.68);
}

/* Footer */
.ob-site-footer {
    margin-top: 80px;
    color: rgba(255,255,255,.75);
    background: var(--ob-navy);
}

.ob-site-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding-block: 58px 42px;
}

.ob-site-footer .ob-brand {
    color: #fff;
}

.ob-site-footer__brand p {
    max-width: 370px;
    margin: 15px 0 0;
    font-size: .91rem;
}

.ob-footer-nav__list a {
    color: rgba(255,255,255,.7);
    font-size: .88rem;
    font-weight: 700;
}

.ob-footer-nav__list a:hover {
    color: #fff;
}

.ob-site-footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 20px 28px;
    font-size: .78rem;
    border-top: 1px solid rgba(255,255,255,.08);
}

/* Minimal layout */
.ob-minimal-layout {
    background:
        radial-gradient(circle at 8% 8%, rgba(138,92,246,.10), transparent 25%),
        radial-gradient(circle at 92% 14%, rgba(91,103,241,.12), transparent 26%),
        var(--ob-bg);
}

.ob-minimal-header {
    position: relative;
    z-index: 20;
    height: 72px;
}

.ob-minimal-header__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ob-ink-soft);
    font-size: .84rem;
    font-weight: 700;
}

.ob-minimal-header__back:hover {
    color: var(--ob-primary-dark);
}

.ob-minimal-footer {
    padding: 20px;
    color: #7a8499;
    font-size: .75rem;
    text-align: center;
}

/* Generic pages */
.ob-content-area {
    padding-block: 80px 120px;
}

.ob-page-article,
.ob-article {
    min-height: 420px;
}

.ob-page-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.ob-page-header h1 {
    margin: 0;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 880;
    letter-spacing: -.06em;
    line-height: 1.08;
}

.ob-page-header p {
    margin: 18px auto 0;
    color: var(--ob-ink-soft);
}

.ob-entry-content {
    width: 100%;
}

.ob-page-article > .ob-entry-content {
    max-width: 1040px;
    margin-inline: auto;
}

.ob-entry-content > * {
    max-width: 760px;
    margin-inline: auto;
}

.ob-entry-content > .alignwide {
    max-width: 1080px;
}

.ob-entry-content > .alignfull {
    max-width: none;
}

.ob-entry-content p,
.ob-entry-content li {
    color: #354059;
}

.ob-entry-content a:not(.ob-button):not(.obpg-button) {
    color: var(--ob-primary-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.ob-entry-content img {
    height: auto;
    border-radius: 18px;
}

.ob-post-list {
    display: grid;
    gap: 15px;
}

.ob-post-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: var(--ob-surface);
    border: 1px solid var(--ob-border);
    border-radius: var(--ob-radius);
    transition: .2s ease;
}

.ob-post-card:hover {
    border-color: #c9ceff;
    box-shadow: var(--ob-shadow-sm);
    transform: translateY(-2px);
}

.ob-post-card__meta {
    color: var(--ob-primary-dark);
    font-size: .75rem;
    font-weight: 750;
}

.ob-post-card h2 {
    margin: 4px 0 8px;
    font-size: 1.35rem;
}

.ob-post-card p {
    margin: 0;
    color: var(--ob-ink-soft);
    font-size: .9rem;
}

.ob-post-card__arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    border-radius: 12px;
}

.ob-featured-image {
    margin: 0 0 35px;
}

.ob-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.ob-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    padding: 35px;
    text-align: center;
    background: var(--ob-surface);
    border: 1px dashed var(--ob-border-strong);
    border-radius: var(--ob-radius);
}

.ob-empty-state > .ob-icon,
.ob-empty-state > span .ob-icon {
    width: 35px;
    height: 35px;
    color: var(--ob-primary);
}

.ob-empty-state h2,
.ob-empty-state h4 {
    margin: 15px 0 4px;
}

.ob-empty-state p {
    margin: 0;
    color: var(--ob-ink-soft);
}

.ob-empty-state--compact {
    min-height: 180px;
}

.ob-error-page {
    display: grid;
    place-items: center;
    min-height: calc(100vh - var(--ob-header-height));
    padding-block: 60px;
}

.ob-error-page__inner {
    text-align: center;
}

.ob-error-code {
    display: block;
    color: transparent;
    font-size: clamp(6rem, 18vw, 13rem);
    font-weight: 950;
    letter-spacing: -.1em;
    line-height: .8;
    background: linear-gradient(135deg, var(--ob-primary), var(--ob-violet));
    background-clip: text;
    -webkit-background-clip: text;
    opacity: .23;
}

.ob-error-page h1 {
    margin: 25px 0 8px;
    font-size: 2rem;
}

.ob-error-page p {
    margin: 0 0 25px;
    color: var(--ob-ink-soft);
}

.ob-comments {
    margin-top: 50px;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--ob-border);
    border-radius: var(--ob-radius);
}

.ob-search-form {
    display: flex;
    gap: 10px;
}

.ob-search-form label {
    flex: 1;
}

/* Forms shared */
.ob-field,
.obpg-field,
.ob-auth-form p {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
}

.ob-field label,
.obpg-field label,
.ob-auth-form label {
    color: #2e3851;
    font-size: .82rem;
    font-weight: 750;
}

.ob-field input,
.ob-field textarea,
.ob-field select,
.obpg-field input,
.obpg-field textarea,
.obpg-field select,
.ob-auth-form input[type="text"],
.ob-auth-form input[type="email"],
.ob-auth-form input[type="password"],
.ob-auth-form input[type="search"],
.ob-search-form input,
.comment-form input,
.comment-form textarea {
    width: 100%;
    min-height: 47px;
    padding: 11px 13px;
    color: var(--ob-ink);
    background: #fbfcff;
    border: 1px solid var(--ob-border);
    border-radius: 11px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.ob-field textarea,
.obpg-field textarea,
.comment-form textarea {
    min-height: 110px;
    resize: vertical;
}

.ob-field input:focus,
.ob-field textarea:focus,
.ob-field select:focus,
.obpg-field input:focus,
.obpg-field textarea:focus,
.ob-auth-form input:focus,
.ob-search-form input:focus,
.comment-form input:focus,
.comment-form textarea:focus {
    background: #fff;
    border-color: var(--ob-primary);
    box-shadow: 0 0 0 4px rgba(91, 103, 241, .1);
}

.ob-field small,
.obpg-field small {
    color: #7a8499;
    font-size: .73rem;
}

/* Authentication */
.ob-auth-page {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 126px);
    padding: 35px 20px 70px;
}

.ob-auth-card {
    width: min(100%, 480px);
    padding: 42px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(203, 211, 228, .86);
    border-radius: var(--ob-radius-lg);
    box-shadow: var(--ob-shadow);
    backdrop-filter: blur(18px);
}

.ob-auth-card__icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    border-radius: 15px;
}

.ob-auth-card__icon .ob-icon {
    width: 24px;
    height: 24px;
}

.ob-auth-card h1 {
    margin: 0;
    font-size: 2rem;
    letter-spacing: -.05em;
    line-height: 1.1;
}

.ob-auth-card > p {
    margin: 13px 0 28px;
    color: var(--ob-ink-soft);
    font-size: .91rem;
}

.ob-auth-form,
.ob-auth-form form {
    display: grid;
    gap: 16px;
}

.ob-auth-form .login-remember {
    display: block;
}

.ob-auth-form .login-remember label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
}

.ob-auth-form input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--ob-primary);
}

.ob-auth-form .login-submit input,
.ob-auth-form .button-primary {
    width: 100%;
}

.ob-auth-card__links {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 22px;
    margin-top: 23px;
    color: var(--ob-ink-soft);
    font-size: .8rem;
    border-top: 1px solid var(--ob-border);
}

.ob-auth-card__links--center {
    justify-content: center;
}

.ob-auth-card__links a {
    color: var(--ob-primary-dark);
    font-weight: 750;
}

.ob-auth-note {
    color: var(--ob-ink-soft);
    font-size: .77rem;
}

/* Notices */
.ob-notice,
.obpg-notice {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 16px;
    margin-bottom: 18px;
    color: #34405b;
    background: var(--ob-primary-soft);
    border: 1px solid #cfd4ff;
    border-radius: 13px;
    font-size: .85rem;
}

.ob-notice--success,
.obpg-notice--success {
    color: #0f684d;
    background: var(--ob-green-soft);
    border-color: #afe9d6;
}

.ob-notice--error,
.obpg-notice--error {
    color: #a62f45;
    background: var(--ob-red-soft);
    border-color: #ffd0d8;
}

.ob-notice--warning {
    color: #8e590e;
    background: var(--ob-orange-soft);
    border-color: #f2d49e;
}

.ob-notice strong {
    display: block;
}

.ob-notice p {
    margin: 3px 0 0;
}

.ob-inline-info,
.ob-secure-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    color: #46516b;
    background: #f5f7ff;
    border: 1px solid #dde1ff;
    border-radius: 12px;
}

.ob-inline-info p,
.ob-secure-note p {
    margin: 0;
    font-size: .78rem;
}

.ob-inline-info .ob-icon,
.ob-secure-note .ob-icon {
    margin-top: 2px;
    color: var(--ob-primary);
}

/* Public profile */
.ob-route-profile .ob-minimal-header,
.ob-route-profile .ob-minimal-footer {
    position: relative;
    z-index: 10;
    color: rgba(255,255,255,.55);
}

.ob-route-profile .ob-minimal-header .ob-brand,
.ob-route-profile .ob-minimal-header__back {
    color: #fff;
}

.ob-profile-page {
    position: relative;
    display: grid;
    place-items: start center;
    min-height: calc(100vh - 110px);
    padding: 40px 20px 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 10%, rgba(91,103,241,.32), transparent 31%),
        radial-gradient(circle at 85% 18%, rgba(138,92,246,.34), transparent 30%),
        linear-gradient(160deg, #121d3c, #070b16 72%);
}

.ob-profile-page::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.ob-profile-page__glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .25;
}

.ob-profile-page__glow--one {
    top: -100px;
    left: -120px;
    background: var(--ob-primary);
}

.ob-profile-page__glow--two {
    right: -100px;
    bottom: -120px;
    background: var(--ob-violet);
}

.ob-public-card {
    position: relative;
    z-index: 2;
    width: min(100%, 580px);
    padding: 38px;
    color: #fff;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 32px;
    box-shadow: 0 35px 90px rgba(0,0,0,.28);
    backdrop-filter: blur(20px);
}

.ob-share-button {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,.76);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
}

.ob-share-button:hover {
    color: #fff;
    background: rgba(255,255,255,.15);
}

.ob-public-card__identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ob-public-avatar {
    width: 116px;
    height: 116px;
    margin-bottom: 17px;
    object-fit: cover;
    background: #fff;
    border: 4px solid rgba(255,255,255,.82);
    border-radius: 35px;
    box-shadow: 0 18px 45px rgba(0,0,0,.3);
}

.ob-public-avatar--placeholder {
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(145deg, var(--ob-primary), var(--ob-violet));
}

.ob-public-card__title {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ob-public-card__title h1 {
    margin: 0;
    font-size: 1.7rem;
    letter-spacing: -.045em;
    line-height: 1.15;
}

.ob-premium-mark {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: var(--ob-navy);
    background: var(--ob-yellow);
    border-radius: 50%;
}

.ob-premium-mark .ob-icon {
    width: 14px;
    height: 14px;
}

.ob-public-handle {
    margin: 5px 0 0;
    color: rgba(255,255,255,.54);
    font-size: .85rem;
}

.ob-public-bio {
    max-width: 420px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.75);
    font-size: .92rem;
    line-height: 1.6;
}

.ob-public-links {
    display: grid;
    gap: 11px;
    margin-top: 28px;
}

.ob-public-link {
    display: grid;
    grid-template-columns: 38px 1fr 24px;
    align-items: center;
    min-height: 66px;
    padding: 8px 16px 8px 10px;
    color: #fff;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 17px;
    opacity: 0;
    transform: translateY(8px);
    animation: obLinkIn .5s var(--ob-ease) forwards;
    animation-delay: calc(var(--link-index, 0) * 70ms + 120ms);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.ob-public-link:hover {
    color: #fff;
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.24);
    transform: translateY(-2px);
}

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

.ob-public-link__icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #c9ceff;
    background: rgba(91,103,241,.22);
    border-radius: 11px;
}

.ob-public-link__title {
    padding-inline: 12px;
    font-size: .92rem;
    font-weight: 750;
    text-align: center;
}

.ob-public-link__external {
    color: rgba(255,255,255,.45);
}

.ob-support-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    margin-top: 16px;
    color: #ffe6eb;
    font-size: .84rem;
    font-weight: 750;
    background: rgba(217,75,100,.12);
    border: 1px solid rgba(255,120,144,.18);
    border-radius: 14px;
}

.ob-support-button:hover {
    color: #fff;
    background: rgba(217,75,100,.22);
}

.ob-profile-brand {
    display: flex;
    justify-content: center;
    margin-top: 26px;
    opacity: .58;
}

.ob-profile-brand .ob-brand {
    color: #fff;
    font-size: .82rem;
}

.ob-profile-brand .ob-brand__mark {
    width: 24px;
    height: 24px;
    font-size: .68rem;
    border-radius: 7px;
}

.ob-profile-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    color: rgba(255,255,255,.55);
    text-align: center;
    border: 1px dashed rgba(255,255,255,.16);
    border-radius: 16px;
}

.ob-profile-empty p {
    margin: 8px 0 0;
    font-size: .83rem;
}

/* Checkout */
.ob-checkout-layout {
    min-height: calc(100vh - 126px);
    padding: 25px 0 65px;
}

.ob-checkout-layout__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
    gap: 20px;
    max-width: 1020px;
}

.ob-checkout-main,
.ob-checkout-summary {
    background: rgba(255,255,255,.95);
    border: 1px solid var(--ob-border);
    border-radius: var(--ob-radius-lg);
    box-shadow: var(--ob-shadow-sm);
}

.ob-checkout-main {
    padding: 30px;
}

.ob-checkout-main__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--ob-border);
}

.ob-checkout-main__head .ob-kicker {
    padding: 5px 8px;
    font-size: .68rem;
    background: var(--ob-primary-soft);
}

.ob-checkout-main__head h1 {
    margin: 13px 0 2px;
    font-size: 1.55rem;
    letter-spacing: -.035em;
}

.ob-checkout-main__head p {
    margin: 0;
    color: #7b8499;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .75rem;
}

.ob-status-pill,
.obpg-payment-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 10px;
    color: #805209;
    font-size: .72rem;
    font-weight: 800;
    white-space: nowrap;
    background: var(--ob-orange-soft);
    border: 1px solid #f4d391;
    border-radius: 99px;
}

.ob-status-pill--paid,
.obpg-payment-status--paid {
    color: #0e694d;
    background: var(--ob-green-soft);
    border-color: #a9e7d3;
}

.ob-status-pill--failed,
.ob-status-pill--expired,
.ob-status-pill--cancelled,
.obpg-payment-status--failed,
.obpg-payment-status--expired,
.obpg-payment-status--cancelled {
    color: #a22e44;
    background: var(--ob-red-soft);
    border-color: #ffd0d8;
}

.ob-checkout-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 31px 15px;
}

.ob-checkout-qr__frame {
    padding: 15px;
    background: #fff;
    border: 1px solid var(--ob-border);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(20, 29, 60, .1);
}

.ob-checkout-qr__frame img {
    width: min(310px, 68vw);
    height: auto;
    border-radius: 10px;
}

.ob-checkout-qr > p {
    margin: 16px 0 0;
    color: var(--ob-ink-soft);
    font-size: .82rem;
    text-align: center;
}

.ob-checkout-empty-qr,
.ob-checkout-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 335px;
    padding: 35px;
    text-align: center;
}

.ob-checkout-empty-qr > .ob-icon,
.ob-checkout-result > .ob-icon {
    width: 60px;
    height: 60px;
    padding: 14px;
    color: var(--ob-primary);
    background: var(--ob-primary-soft);
    border-radius: 18px;
}

.ob-checkout-result--success > .ob-icon {
    color: var(--ob-green);
    background: var(--ob-green-soft);
}

.ob-checkout-result--warning > .ob-icon {
    color: var(--ob-orange);
    background: var(--ob-orange-soft);
}

.ob-checkout-empty-qr h2,
.ob-checkout-result h2 {
    margin: 18px 0 5px;
}

.ob-checkout-empty-qr p,
.ob-checkout-result p {
    max-width: 380px;
    margin: 0 0 20px;
    color: var(--ob-ink-soft);
}

.ob-checkout-actions {
    padding-top: 20px;
    border-top: 1px solid var(--ob-border);
}

.ob-checkout-expiry,
.obpg-expiry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 13px 0 0;
    color: #727c93;
    font-size: .76rem;
}

.ob-checkout-summary {
    align-self: start;
    padding: 27px;
}

.ob-checkout-summary__section {
    display: grid;
    gap: 14px;
}

.ob-summary-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    font-size: .8rem;
}

.ob-summary-row span {
    color: #7a8499;
}

.ob-summary-row strong {
    overflow-wrap: anywhere;
    font-weight: 750;
    text-align: right;
}

.ob-checkout-summary__total {
    padding-block: 22px;
    margin-block: 22px;
    border-block: 1px solid var(--ob-border);
}

.ob-checkout-summary__total > span {
    display: block;
    margin-bottom: 5px;
    color: #7a8499;
    font-size: .75rem;
}

.ob-checkout-summary__total button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    color: var(--ob-ink);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.ob-checkout-summary__total button:hover {
    color: var(--ob-primary-dark);
    transform: none;
    box-shadow: none;
}

.ob-checkout-summary__total strong {
    font-size: 1.7rem;
    letter-spacing: -.05em;
}

.ob-checkout-summary__total small {
    display: block;
    margin-top: 7px;
    color: #8d641d;
    font-size: .7rem;
    line-height: 1.5;
}

.ob-secure-note {
    margin-bottom: 22px;
}

.ob-secure-note strong {
    display: block;
    margin-bottom: 3px;
    font-size: .8rem;
}

.ob-payment-steps {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ob-payment-steps li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ob-ink-soft);
    font-size: .78rem;
}

.ob-payment-steps li span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: var(--ob-primary-dark);
    font-size: .68rem;
    font-weight: 850;
    background: var(--ob-primary-soft);
    border-radius: 8px;
}

/* Dashboard */
.ob-dashboard {
    max-width: 1180px;
    margin-inline: auto;
}

.ob-dashboard-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 132px;
    padding: 25px 28px;
    margin-bottom: 20px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(255,216,77,.17), transparent 28%),
        linear-gradient(140deg, var(--ob-navy-2), var(--ob-navy));
    border-radius: 24px;
    box-shadow: var(--ob-shadow);
}

.ob-dashboard-user {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ob-dashboard-user img,
.ob-dashboard-user__avatar {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    object-fit: cover;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(145deg, var(--ob-primary), var(--ob-violet));
    border: 3px solid rgba(255,255,255,.7);
    border-radius: 20px;
}

.ob-dashboard-user .ob-eyebrow {
    color: #adb4ff;
}

.ob-dashboard-user h2 {
    margin: 0;
    font-size: 1.55rem;
    letter-spacing: -.04em;
}

.ob-dashboard-user p {
    margin: 3px 0 0;
    color: rgba(255,255,255,.6);
    font-size: .82rem;
}

.ob-dashboard-hero__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ob-dashboard-hero .ob-button--ghost {
    color: #fff;
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.13);
}

.ob-plan-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 11px;
    color: rgba(255,255,255,.72);
    font-size: .73rem;
    font-weight: 800;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 99px;
}

.ob-plan-pill.is-premium {
    color: var(--ob-navy);
    background: var(--ob-yellow);
    border-color: var(--ob-yellow);
}

.ob-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 20px;
}

.ob-dashboard-editor {
    display: grid;
    gap: 20px;
}

.ob-editor-card {
    padding: 27px;
    background: #fff;
    border: 1px solid var(--ob-border);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(20, 29, 60, .045);
}

.ob-editor-card__head,
.ob-editor-card__title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ob-editor-card__head {
    margin-bottom: 24px;
}

.ob-editor-card__head--between {
    justify-content: space-between;
}

.ob-editor-card__icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    border-radius: 13px;
}

.ob-editor-card__head .ob-eyebrow {
    margin: 0 0 3px;
    font-size: .66rem;
}

.ob-editor-card__head h3 {
    margin: 0;
    font-size: 1.16rem;
    letter-spacing: -.025em;
}

.ob-count-pill {
    display: grid;
    place-items: center;
    min-width: 32px;
    height: 32px;
    padding-inline: 8px;
    color: var(--ob-primary-dark);
    font-size: .73rem;
    font-weight: 850;
    background: var(--ob-primary-soft);
    border-radius: 10px;
}

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

.ob-form-grid--compact {
    padding-top: 18px;
    margin-top: 16px;
    border-top: 1px solid var(--ob-border);
}

.ob-field--full,
.obpg-field--full {
    grid-column: 1 / -1;
}

.ob-field--toggle {
    justify-content: center;
}

.ob-input-prefix {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #fbfcff;
    border: 1px solid var(--ob-border);
    border-radius: 11px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.ob-input-prefix:focus-within {
    background: #fff;
    border-color: var(--ob-primary);
    box-shadow: 0 0 0 4px rgba(91,103,241,.1);
}

.ob-input-prefix span {
    display: flex;
    align-items: center;
    padding-left: 12px;
    color: #8a93a7;
    font-size: .76rem;
    white-space: nowrap;
}

.ob-input-prefix input {
    min-width: 0;
    border: 0;
    box-shadow: none !important;
}

.ob-switch {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 18px;
    cursor: pointer;
}

.ob-switch > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.ob-switch > span {
    position: relative;
    width: 42px;
    height: 24px;
    flex: 0 0 auto;
    background: #cbd2e1;
    border-radius: 99px;
    transition: background .2s ease;
}

.ob-switch > span::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    content: "";
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    transition: transform .2s var(--ob-ease);
}

.ob-switch input:checked + span {
    background: var(--ob-primary);
}

.ob-switch input:checked + span::after {
    transform: translateX(18px);
}

.ob-switch div {
    display: flex;
    flex-direction: column;
}

.ob-switch strong {
    font-size: .8rem;
}

.ob-switch small {
    color: #828ba0;
    font-size: .7rem;
}

.ob-form-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 22px;
    margin-top: 22px;
    border-top: 1px solid var(--ob-border);
}

.ob-link-editor-list {
    display: grid;
    gap: 12px;
}

.ob-link-editor-item {
    padding: 18px;
    background: #fbfcff;
    border: 1px solid var(--ob-border);
    border-radius: 16px;
}

.ob-link-editor-item__top {
    display: grid;
    grid-template-columns: 25px 1fr auto;
    align-items: center;
    gap: 10px;
}

.ob-drag-handle {
    color: #a0a8ba;
    font-size: 1.1rem;
    letter-spacing: -4px;
}

.ob-link-editor-item__name {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.ob-link-editor-item__name strong {
    font-size: .88rem;
}

.ob-link-editor-item__name span {
    overflow: hidden;
    color: #858da0;
    font-size: .7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ob-link-state {
    padding: 5px 8px;
    color: #8c6570;
    font-size: .65rem;
    font-weight: 800;
    background: #f4edf0;
    border-radius: 99px;
}

.ob-link-state.is-active {
    color: #0d6e50;
    background: var(--ob-green-soft);
}

.ob-link-editor-item__actions {
    display: flex;
    justify-content: space-between;
    padding-top: 14px;
}

.ob-link-editor-item__actions > form:first-child {
    flex: 1;
}

.ob-link-editor-item__actions > form:last-child {
    margin-left: auto;
}

.ob-dashboard-preview {
    position: sticky;
    top: calc(var(--ob-header-height) + 18px);
    padding: 18px;
    background: #fff;
    border: 1px solid var(--ob-border);
    border-radius: 22px;
    box-shadow: var(--ob-shadow-sm);
}

.admin-bar .ob-dashboard-preview {
    top: calc(var(--ob-header-height) + 50px);
}

.ob-dashboard-preview__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    color: #69738a;
    font-size: .74rem;
    font-weight: 750;
}

.ob-dashboard-preview__head a {
    color: var(--ob-primary-dark);
}

.ob-preview-phone {
    padding: 7px;
    background: var(--ob-navy);
    border-radius: 25px;
    box-shadow: 0 18px 45px rgba(17, 25, 52, .25);
}

.ob-preview-phone__screen {
    display: flex;
    min-height: 510px;
    flex-direction: column;
    align-items: center;
    padding: 34px 20px 20px;
    color: #fff;
    text-align: center;
    background:
        radial-gradient(circle at 80% 5%, rgba(138,92,246,.35), transparent 28%),
        linear-gradient(150deg, #19254a, #0a1020);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 19px;
}

.ob-preview-avatar {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    margin-bottom: 12px;
    object-fit: cover;
    font-size: 1.7rem;
    font-weight: 900;
    background: linear-gradient(145deg, var(--ob-primary), var(--ob-violet));
    border: 3px solid rgba(255,255,255,.7);
    border-radius: 23px;
}

.ob-preview-phone__screen > strong {
    font-size: 1.03rem;
}

.ob-preview-phone__screen > span {
    color: rgba(255,255,255,.5);
    font-size: .69rem;
}

.ob-preview-phone__screen > p {
    min-height: 36px;
    margin: 10px 0 15px;
    color: rgba(255,255,255,.67);
    font-size: .7rem;
    line-height: 1.5;
}

.ob-preview-links {
    display: grid;
    width: 100%;
    gap: 8px;
}

.ob-preview-links > span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 12px;
    color: #fff;
    font-size: .69rem;
    font-weight: 700;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 11px;
}

.ob-preview-links .ob-icon {
    width: 13px;
    height: 13px;
    opacity: .5;
}

.ob-preview-support {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    margin-top: auto;
    color: #ffc4cf !important;
    font-size: .62rem !important;
    background: rgba(217,75,100,.11);
    border-radius: 9px;
}

.ob-copy-profile {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    padding: 0 11px;
    margin-top: 14px;
    color: var(--ob-ink-soft);
    background: #f7f8fc;
    border: 1px solid var(--ob-border);
    border-radius: 11px;
    box-shadow: none;
}

.ob-copy-profile:hover {
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    transform: none;
    box-shadow: none;
}

.ob-copy-profile span {
    overflow: hidden;
    font-size: .7rem;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Plugin fallback/plan styles */
.obpg-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
    max-width: 920px;
    margin-inline: auto;
}

.obpg-plan-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--ob-border);
    border-radius: 22px;
    box-shadow: var(--ob-shadow-sm);
}

.obpg-plan-card h3 {
    margin: 0 0 7px;
    font-size: 1.35rem;
}

.obpg-plan-card > p {
    color: var(--ob-ink-soft);
    font-size: .88rem;
}

.obpg-plan-card > strong {
    display: block;
    margin: 20px 0;
    font-size: 1.8rem;
    letter-spacing: -.04em;
}

.obpg-purchase-form {
    display: grid;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--ob-border);
}

.obpg-plan-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #f7f8fc;
    border-radius: 10px;
}

.obpg-plan-summary span {
    color: var(--ob-primary-dark);
    font-weight: 800;
}

.obpg-page {
    min-height: 70vh;
}

/* Toast */
.ob-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
    max-width: min(360px, calc(100vw - 40px));
    padding: 12px 16px;
    color: #fff;
    font-size: .82rem;
    font-weight: 750;
    background: var(--ob-navy);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    box-shadow: var(--ob-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s var(--ob-ease);
}

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

/* Core content utilities */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-right: auto; margin-left: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--ob-ink-soft); font-size: .78rem; text-align: center; }
.sticky { position: relative; }
.bypostauthor { position: relative; }
.gallery-caption { font-size: .8rem; }

.navigation.pagination {
    margin-top: 30px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
}

.page-numbers {
    display: grid;
    place-items: center;
    min-width: 39px;
    height: 39px;
    padding-inline: 10px;
    background: #fff;
    border: 1px solid var(--ob-border);
    border-radius: 10px;
}

.page-numbers.current,
.page-numbers:hover {
    color: #fff;
    background: var(--ob-primary);
    border-color: var(--ob-primary);
}

/* Responsive */
@media (max-width: 1060px) {
    .ob-hero__grid {
        grid-template-columns: 1fr 420px;
        gap: 40px;
    }

    .ob-floating-card--stats { left: -10px; }
    .ob-floating-card--secure { right: -8px; }
    .ob-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .ob-dashboard-grid { grid-template-columns: minmax(0, 1fr) 300px; }
}

@media (max-width: 900px) {
    .admin-bar .ob-site-header { top: 46px; }

    .ob-nav-toggle {
        display: inline-flex;
    }

    .ob-nav {
        position: fixed;
        top: var(--ob-header-height);
        right: 16px;
        left: 16px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        max-height: calc(100vh - var(--ob-header-height) - 24px);
        padding: 20px;
        overflow-y: auto;
        background: rgba(255,255,255,.98);
        border: 1px solid var(--ob-border);
        border-radius: 18px;
        box-shadow: var(--ob-shadow);
        backdrop-filter: blur(20px);
    }

    .admin-bar .ob-nav { top: calc(var(--ob-header-height) + 46px); }
    .ob-nav.is-open { display: flex; }
    .ob-nav__list,
    .ob-nav .menu {
        align-items: stretch;
        flex-direction: column;
        gap: 2px;
    }

    .ob-nav__list a,
    .ob-nav .menu a {
        display: block;
        padding: 11px 12px;
        border-radius: 9px;
    }

    .ob-nav__list a:hover,
    .ob-nav .menu a:hover {
        background: var(--ob-primary-soft);
    }

    .ob-nav__actions {
        padding-top: 14px;
        border-top: 1px solid var(--ob-border);
    }

    .ob-nav__actions .ob-button { flex: 1; }

    .ob-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 70px 90px;
        text-align: center;
    }

    .ob-hero__content,
    .ob-hero__content > p,
    .ob-hero h1 {
        margin-inline: auto;
    }

    .ob-hero__actions,
    .ob-hero__trust {
        justify-content: center;
    }

    .ob-hero__visual { min-height: 590px; }
    .ob-phone { transform: none; }
    .ob-section-heading { grid-template-columns: 1fr; gap: 18px; }
    .ob-how-grid { grid-template-columns: 1fr; gap: 45px; }
    .ob-checkout-layout__grid { grid-template-columns: 1fr; max-width: 700px; }
    .ob-checkout-summary { order: -1; }
    .ob-dashboard-grid { grid-template-columns: 1fr; }
    .ob-dashboard-preview { position: static; max-width: 340px; margin-inline: auto; }
}

@media (max-width: 700px) {
    :root { --ob-header-height: 68px; }
    .ob-container { width: min(calc(100% - 28px), var(--ob-container)); }
    .ob-site-header__inner { min-height: 68px; }
    .ob-brand__text { display: inline; }
    .ob-hero { min-height: auto; }
    .ob-hero__grid { padding-top: 52px; }
    .ob-hero h1 { font-size: clamp(2.7rem, 13vw, 4.3rem); }
    .ob-hero__content > p { font-size: 1rem; }
    .ob-hero__actions { flex-direction: column; }
    .ob-hero__actions .ob-button { width: 100%; }
    .ob-hero__trust { gap: 9px 14px; }
    .ob-hero__visual { min-height: 530px; }
    .ob-phone { width: 320px; min-height: 525px; }
    .ob-floating-card { display: none; }
    .ob-logo-strip { margin-top: -25px; }
    .ob-logo-strip .ob-container { grid-template-columns: repeat(3, 1fr); gap: 18px 8px; padding-block: 18px; }
    .ob-section { padding-block: 80px; }
    .ob-section-heading h2,
    .ob-how-copy h2,
    .ob-cta-card h2 { font-size: 2.25rem; }
    .ob-feature-grid { grid-template-columns: 1fr; }
    .ob-feature-card--wide { grid-column: auto; }
    .ob-feature-card { min-height: 250px; }
    .ob-pricing-grid { grid-template-columns: 1fr; }
    .ob-cta-card { grid-template-columns: 1fr; padding: 38px 28px; }
    .ob-site-footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .ob-footer-nav__list { flex-wrap: wrap; }
    .ob-site-footer__bottom { flex-direction: column; gap: 5px; }
    .ob-auth-card { padding: 31px 24px; }
    .ob-auth-card__links { flex-direction: column; align-items: center; }
    .ob-public-card { padding: 32px 20px 25px; border-radius: 25px; }
    .ob-profile-page { padding-inline: 14px; }
    .ob-checkout-main,
    .ob-checkout-summary { border-radius: 21px; }
    .ob-checkout-main { padding: 22px; }
    .ob-checkout-main__head { flex-direction: column; }
    .ob-status-pill { align-self: flex-start; }
    .ob-form-grid,
    .obpg-form-grid { grid-template-columns: 1fr; }
    .ob-field--full,
    .obpg-field--full { grid-column: auto; }
    .ob-dashboard-hero { align-items: flex-start; flex-direction: column; }
    .ob-dashboard-hero__actions { width: 100%; justify-content: space-between; }
    .ob-dashboard-user { align-items: flex-start; }
    .ob-editor-card { padding: 21px; }
    .ob-link-editor-item__top { grid-template-columns: 18px 1fr; }
    .ob-link-state { display: none; }
    .ob-summary-row { grid-template-columns: 1fr; gap: 2px; }
    .ob-summary-row strong { text-align: left; }
    .ob-page-header h1 { font-size: 2.45rem; }
}

@media (max-width: 480px) {
    .ob-brand__text { font-size: 1rem; }
    .ob-nav__actions { flex-wrap: wrap; }
    .ob-icon-button { width: 100%; }
    .ob-phone { width: 290px; padding-inline: 16px; }
    .ob-phone__links span { min-height: 53px; }
    .ob-public-avatar { width: 100px; height: 100px; border-radius: 30px; }
    .ob-public-link { grid-template-columns: 36px 1fr 20px; }
    .ob-dashboard-user img,
    .ob-dashboard-user__avatar { width: 56px; height: 56px; border-radius: 17px; }
    .ob-dashboard-user h2 { font-size: 1.25rem; }
    .ob-dashboard-hero__actions { align-items: stretch; flex-direction: column; }
    .ob-plan-pill { justify-content: center; }
}

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

/* =========================================================
   Otakubioku-THM 0.4.0 — Link Bio untuk Otaku Indonesia
   ========================================================= */

body.admin-bar { margin-top: 0 !important; }
html { margin-top: 0 !important; }
#wpadminbar { display: none !important; }

.ob-hero--otaku .ob-hero__grid { min-height: 700px; }
.ob-phone--otaku { transform: rotate(2deg); }
.ob-phone__avatar--character {
    background:
        radial-gradient(circle at 35% 32%, rgba(255,255,255,.95) 0 5%, transparent 6%),
        linear-gradient(145deg, #8a5cf6, #5b67f1 58%, #ffd84d);
}
.ob-feature-grid--otaku { align-items: stretch; }
.ob-feature-card--identity { overflow: hidden; }
.ob-identity-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}
.ob-identity-flow span {
    padding: 8px 12px;
    color: rgba(255,255,255,.9);
    font-size: .78rem;
    font-weight: 750;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
}
.ob-identity-flow span:first-child {
    color: #11182d;
    background: #fff;
}
.ob-identity-flow i {
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,.25);
}

.ob-showcase-section { padding-top: 110px; }
.ob-usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}
.ob-usecase-grid article {
    min-height: 250px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--ob-border);
    border-radius: 24px;
    box-shadow: var(--ob-shadow-sm);
    transition: transform .2s var(--ob-ease), box-shadow .2s ease, border-color .2s ease;
}
.ob-usecase-grid article:hover {
    transform: translateY(-4px);
    border-color: #c8ceff;
    box-shadow: var(--ob-shadow);
}
.ob-usecase-grid article > span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    border-radius: 16px;
}
.ob-usecase-grid article > span .ob-icon { width: 25px; height: 25px; }
.ob-usecase-grid h3 { margin: 22px 0 8px; font-size: 1.08rem; }
.ob-usecase-grid p { margin: 0; color: var(--ob-ink-soft); font-size: .88rem; }

.ob-premium-teaser {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    gap: 60px;
    align-items: center;
}
.ob-premium-teaser h2 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    letter-spacing: -.055em;
    line-height: 1.02;
}
.ob-premium-teaser > div:first-child > p { color: var(--ob-ink-soft); }
.ob-premium-teaser__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.ob-plan-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.ob-plan-compare article {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--ob-border);
    border-radius: 24px;
    box-shadow: var(--ob-shadow-sm);
}
.ob-plan-compare article.is-premium {
    color: #fff;
    background: linear-gradient(145deg, #141e3c, #24204e);
    border-color: rgba(255,255,255,.1);
}
.ob-plan-compare article > span { display: flex; align-items: center; gap: 7px; color: var(--ob-primary-dark); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.ob-plan-compare article.is-premium > span { color: #ddd4ff; }
.ob-plan-compare article > strong { display: block; margin: 12px 0 20px; font-size: 1.35rem; }
.ob-plan-compare ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.ob-plan-compare li { display: flex; align-items: center; gap: 8px; color: var(--ob-ink-soft); font-size: .82rem; }
.ob-plan-compare article.is-premium li { color: rgba(255,255,255,.72); }
.ob-plan-compare li .ob-icon { color: var(--ob-green); }

/* Professional footer */
.ob-footer-pro {
    display: grid;
    grid-template-columns: minmax(300px, 1.5fr) repeat(3, minmax(150px, .65fr));
    gap: 55px;
    padding-block: 70px 55px;
}
.ob-footer-column { display: grid; align-content: start; gap: 10px; }
.ob-footer-column h2 { margin: 0 0 9px; color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.ob-footer-column a { color: rgba(255,255,255,.64); font-size: .84rem; transition: color .2s ease; }
.ob-footer-column a:hover { color: #fff; }
.ob-footer-support { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: #d9ddff; font-size: .82rem; font-weight: 700; }
.ob-footer-support:hover { color: #fff; }

/* Authentication */
.ob-route-auth .ob-minimal-footer { background: #fff; }
.ob-auth-shell {
    display: grid;
    grid-template-columns: minmax(380px, .9fr) minmax(520px, 1.1fr);
    min-height: calc(100vh - 128px);
    background: #fff;
}
.ob-auth-shell__art {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 650px;
    padding: 64px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 20% 15%, rgba(138,92,246,.55), transparent 33%),
        radial-gradient(circle at 85% 20%, rgba(91,103,241,.55), transparent 34%),
        linear-gradient(145deg, #0f1832, #17153c 70%);
}
.ob-auth-shell__art:before {
    position: absolute;
    inset: 0;
    content: "";
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 38px 38px;
}
.ob-auth-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.ob-auth-orbit--one { width: 420px; height: 420px; top: -130px; left: -100px; }
.ob-auth-orbit--two { width: 560px; height: 560px; right: -280px; bottom: -220px; }
.ob-auth-preview {
    position: absolute;
    top: 70px;
    right: 12%;
    z-index: 2;
    width: 250px;
    padding: 30px 24px;
    text-align: center;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
    backdrop-filter: blur(18px);
    transform: rotate(4deg);
}
.ob-auth-preview__avatar { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 13px; font-size: 1.6rem; font-weight: 900; background: linear-gradient(145deg, #8a5cf6, #5b67f1); border: 3px solid rgba(255,255,255,.75); border-radius: 23px; }
.ob-auth-preview strong { display: block; font-size: 1.05rem; }
.ob-auth-preview > span { display: block; margin: 5px 0 18px; color: rgba(255,255,255,.62); font-size: .72rem; }
.ob-auth-preview i { display: block; height: 34px; margin-top: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; }
.ob-auth-shell__copy { position: relative; z-index: 2; max-width: 560px; }
.ob-auth-shell__copy .ob-kicker { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); }
.ob-auth-shell__copy h2 { margin: 20px 0 24px; font-size: clamp(2.3rem, 4vw, 4rem); letter-spacing: -.06em; line-height: 1.03; }
.ob-auth-shell__copy ul { display: grid; gap: 11px; padding: 0; margin: 0; list-style: none; }
.ob-auth-shell__copy li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.72); font-size: .88rem; }
.ob-auth-shell__copy li .ob-icon { color: #8ff0ce; }
.ob-auth-panel { display: grid; place-items: center; padding: 60px 42px; }
.ob-auth-panel__inner { width: min(100%, 620px); }
.ob-auth-panel h1 { margin: 0; font-size: clamp(2.15rem, 4vw, 3rem); letter-spacing: -.055em; line-height: 1.06; }
.ob-auth-panel__lead { margin: 12px 0 28px; color: var(--ob-ink-soft); }
.ob-auth-form--modern { gap: 17px; }
.ob-auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ob-label-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.ob-label-row a { color: var(--ob-primary-dark); font-size: .76rem; font-weight: 750; }
.ob-check-row { display: flex; align-items: flex-start; gap: 10px; color: var(--ob-ink-soft); font-size: .8rem; }
.ob-check-row input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 3px; accent-color: var(--ob-primary); }
.ob-check-row a { color: var(--ob-primary-dark); font-weight: 700; }
.ob-auth-switch { margin: 22px 0 0; color: var(--ob-ink-soft); font-size: .84rem; text-align: center; }
.ob-auth-switch a { color: var(--ob-primary-dark); font-weight: 800; }
.ob-auth-resend { display: flex; justify-content: center; gap: 8px; margin-top: 16px; color: var(--ob-ink-soft); font-size: .8rem; }
.ob-link-button { min-height: 0; padding: 0; color: var(--ob-primary-dark); background: none; border: 0; border-radius: 0; box-shadow: none; font-weight: 800; }
.ob-link-button:hover { color: var(--ob-violet); transform: none; box-shadow: none; }
.ob-field--otp { text-align: center; }
.ob-otp-input { font-size: 1.7rem !important; font-weight: 850; letter-spacing: .45em; text-align: center; }
.ob-auth-safety { display: flex; align-items: flex-start; gap: 9px; margin-top: 26px; padding-top: 20px; color: #707a90; border-top: 1px solid var(--ob-border); }
.ob-auth-safety .ob-icon { margin-top: 3px; color: var(--ob-primary); }
.ob-auth-safety p { margin: 0; font-size: .73rem; }

/* Dashboard */
.ob-dashboard-page { min-height: 70vh; padding: 55px 0 100px; }
.ob-dashboard--pro { max-width: 1180px; margin: 0 auto; }
.ob-dashboard-hero--pro { padding: 30px; background: linear-gradient(145deg, #fff, #f7f8ff); }
.ob-dashboard-hero--pro h1 { margin: 1px 0 4px; font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -.045em; }
.ob-dashboard-tabs { display: flex; gap: 8px; padding: 8px; margin: 18px 0; overflow-x: auto; background: #fff; border: 1px solid var(--ob-border); border-radius: 16px; box-shadow: var(--ob-shadow-sm); }
.ob-dashboard-tabs a { display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 0 14px; white-space: nowrap; color: var(--ob-ink-soft); font-size: .8rem; font-weight: 750; border-radius: 10px; }
.ob-dashboard-tabs a:hover { color: var(--ob-primary-dark); background: var(--ob-primary-soft); }
.ob-editor-card h2, .ob-preview-heading h2 { margin: 0; font-size: 1.25rem; }
.ob-editor-card__head--between { justify-content: space-between; }
.ob-editor-card__title { display: flex; align-items: center; gap: 12px; }
.ob-count-pill { padding: 5px 9px; color: var(--ob-primary-dark); font-size: .72rem; font-weight: 800; background: var(--ob-primary-soft); border-radius: 999px; }
.ob-check-row--boxed { padding: 14px; margin: 18px 0; background: #f7f8ff; border: 1px solid #dfe2ff; border-radius: 13px; }
.ob-check-row--boxed span { display: grid; gap: 2px; }
.ob-check-row--boxed small { color: #778198; }
.ob-check-row--field { align-self: end; min-height: 47px; align-items: center; padding: 0 12px; background: #fbfcff; border: 1px solid var(--ob-border); border-radius: 11px; }
.ob-managed-link { position: relative; display: grid; grid-template-columns: 34px 1fr auto; gap: 13px; align-items: start; padding: 18px; background: #fff; border: 1px solid var(--ob-border); border-radius: 17px; }
.ob-managed-link__number { display: grid; place-items: center; width: 32px; height: 32px; color: var(--ob-primary-dark); font-size: .76rem; font-weight: 850; background: var(--ob-primary-soft); border-radius: 10px; }
.ob-managed-link form:not(.ob-managed-link__delete) { display: grid; gap: 13px; }
.ob-managed-link__delete { padding-top: 2px; }
.ob-icon-button--danger { color: var(--ob-red); background: var(--ob-red-soft); border-color: #ffd4dc; }
.ob-dashboard-preview-sticky { position: sticky; top: 24px; }
.ob-preview-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.ob-profile-preview { min-height: 500px; }
.ob-account-summary { display: grid; gap: 12px; padding: 18px; margin-top: 14px; background: #fff; border: 1px solid var(--ob-border); border-radius: 17px; box-shadow: var(--ob-shadow-sm); }
.ob-account-summary > div { display: grid; gap: 2px; }
.ob-account-summary span { color: var(--ob-ink-soft); font-size: .72rem; }
.ob-account-summary strong { overflow-wrap: anywhere; font-size: .82rem; }
.ob-account-summary > a { display: flex; align-items: center; gap: 7px; color: var(--ob-primary-dark); font-size: .78rem; font-weight: 800; }

/* Product pages */
.ob-product-page { min-height: 70vh; }
.ob-product-hero { position: relative; padding: 90px 0 70px; overflow: hidden; text-align: center; background: radial-gradient(circle at 20% 10%, rgba(138,92,246,.16), transparent 31%), radial-gradient(circle at 80% 0%, rgba(91,103,241,.17), transparent 33%), #f7f8ff; }
.ob-product-hero--support { background: radial-gradient(circle at 20% 10%, rgba(217,75,100,.14), transparent 31%), radial-gradient(circle at 80% 0%, rgba(255,216,77,.18), transparent 33%), #fff9fa; }
.ob-product-hero__inner { max-width: 800px; }
.ob-product-hero h1 { margin: 20px 0 16px; font-size: clamp(2.7rem, 5vw, 4.7rem); letter-spacing: -.065em; line-height: .98; }
.ob-product-hero p { max-width: 680px; margin: 0 auto; color: var(--ob-ink-soft); }
.ob-product-content { padding-top: 65px; }
.ob-premium-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 38px; }
.ob-premium-benefits article { display: flex; gap: 13px; padding: 20px; background: #fff; border: 1px solid var(--ob-border); border-radius: 18px; }
.ob-premium-benefits article > .ob-icon { flex: 0 0 auto; width: 22px; height: 22px; color: var(--ob-primary); }
.ob-premium-benefits h2 { margin: 0 0 4px; font-size: .96rem; }
.ob-premium-benefits p { margin: 0; color: var(--ob-ink-soft); font-size: .78rem; }
.ob-product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 22px; align-items: start; }
.ob-product-card { padding: 30px; background: #fff; border: 1px solid var(--ob-border); border-radius: 25px; box-shadow: var(--ob-shadow); }
.ob-product-card__head > span { display: inline-flex; align-items: center; gap: 7px; color: var(--ob-primary-dark); font-size: .73rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.ob-product-card h2 { margin: 13px 0 7px; font-size: 1.45rem; }
.ob-product-card__head p { min-height: 48px; margin: 0; color: var(--ob-ink-soft); font-size: .84rem; }
.ob-product-card__price { display: flex; align-items: baseline; gap: 6px; margin: 25px 0; }
.ob-product-card__price strong { font-size: 2rem; letter-spacing: -.045em; }
.ob-product-card__price span { color: var(--ob-ink-soft); font-size: .78rem; }
.ob-product-card > ul { display: grid; gap: 10px; padding: 0; margin: 0 0 22px; list-style: none; }
.ob-product-card > ul li { display: flex; align-items: center; gap: 8px; color: var(--ob-ink-soft); font-size: .8rem; }
.ob-product-card > ul .ob-icon { color: var(--ob-green); }
.ob-product-card .obpg-purchase-form, .ob-support-option .obpg-purchase-form { display: grid; gap: 13px; padding: 18px; margin-top: 18px; background: #f7f8ff; border: 1px solid #e0e4f1; border-radius: 17px; }
.ob-product-card .obpg-field label, .ob-support-option .obpg-field label { color: #2e3851; }
.ob-product-card .obpg-plan-summary, .ob-support-option .obpg-plan-summary { display: flex; justify-content: space-between; gap: 12px; padding: 12px; color: var(--ob-ink); background: #fff; border: 1px solid var(--ob-border); border-radius: 11px; }
.ob-product-card .obpg-button, .ob-support-option .obpg-button { width: 100%; }
.ob-product-note { display: flex; gap: 12px; max-width: 720px; padding: 20px; margin: 35px auto 0; color: #47516a; background: #f6f8ff; border: 1px solid #dde1ff; border-radius: 17px; }
.ob-product-note .ob-icon { color: var(--ob-primary); }
.ob-product-note strong { display: block; }
.ob-product-note p { margin: 3px 0 0; font-size: .8rem; }
.ob-support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.ob-support-option { padding: 25px; background: #fff; border: 1px solid var(--ob-border); border-radius: 22px; box-shadow: var(--ob-shadow-sm); }
.ob-support-option__icon { display: grid; place-items: center; width: 48px; height: 48px; color: var(--ob-red); background: var(--ob-red-soft); border-radius: 15px; }
.ob-support-option h2 { margin: 18px 0 6px; font-size: 1.15rem; }
.ob-support-option > p { min-height: 45px; margin: 0; color: var(--ob-ink-soft); font-size: .8rem; }
.ob-support-option > strong { display: block; margin-top: 18px; font-size: 1.7rem; letter-spacing: -.04em; }
.ob-support-disclaimer { max-width: 760px; padding: 25px; margin: 35px auto 0; background: #fff; border: 1px solid var(--ob-border); border-radius: 20px; }
.ob-support-disclaimer h2 { margin: 0 0 12px; font-size: 1.1rem; }
.ob-support-disclaimer ul { margin: 0; padding-left: 20px; color: var(--ob-ink-soft); font-size: .82rem; }

/* Legal pages */
.ob-legal-page { min-height: 70vh; padding: 80px 0 110px; background: #f7f8fc; }
.ob-legal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 38px; align-items: start; }
.ob-legal-article { padding: 45px; background: #fff; border: 1px solid var(--ob-border); border-radius: 28px; box-shadow: var(--ob-shadow-sm); }
.ob-legal-header { padding-bottom: 28px; margin-bottom: 30px; border-bottom: 1px solid var(--ob-border); }
.ob-legal-header h1 { margin: 0; font-size: clamp(2.2rem, 4vw, 3.6rem); letter-spacing: -.055em; line-height: 1.05; }
.ob-legal-header > p { margin: 12px 0 0; color: var(--ob-ink-soft); font-size: .78rem; }
.ob-legal-content { color: #354059; }
.ob-legal-content h2 { margin: 35px 0 10px; color: var(--ob-ink); font-size: 1.3rem; }
.ob-legal-content p, .ob-legal-content li { font-size: .91rem; line-height: 1.8; }
.ob-legal-content a { color: var(--ob-primary-dark); text-decoration: underline; text-underline-offset: 3px; }
.ob-legal-contact { display: grid; gap: 4px; padding: 18px; margin: 18px 0; background: #f5f7ff; border: 1px solid #dde1ff; border-radius: 14px; }
.ob-legal-sidebar { position: sticky; top: 100px; display: grid; gap: 16px; }
.ob-legal-sidebar > div:first-child { display: grid; gap: 8px; padding: 22px; background: #fff; border: 1px solid var(--ob-border); border-radius: 20px; }
.ob-legal-sidebar > div:first-child a { padding: 8px 10px; color: var(--ob-ink-soft); font-size: .8rem; border-radius: 9px; }
.ob-legal-sidebar > div:first-child a:hover { color: var(--ob-primary-dark); background: var(--ob-primary-soft); }
.ob-legal-help { padding: 22px; color: #fff; background: linear-gradient(145deg, #101a35, #24204e); border-radius: 20px; }
.ob-legal-help > .ob-icon { color: #cfc8ff; }
.ob-legal-help h2 { margin: 13px 0 7px; font-size: 1rem; }
.ob-legal-help p { margin: 0 0 13px; color: rgba(255,255,255,.67); font-size: .76rem; }
.ob-legal-help a { display: flex; align-items: center; gap: 7px; color: #fff; font-size: .78rem; font-weight: 800; }

/* Clean profile page */
.ob-profile-document { min-height: 100vh; background: #080d19; }
.ob-profile-page--clean { place-items: center; min-height: 100vh; padding: 88px 20px 70px; }
.ob-profile-corner-brand { position: absolute; top: 24px; left: 28px; z-index: 5; }
.ob-profile-corner-brand > .ob-brand, .ob-profile-corner-brand .ob-brand { color: #fff; opacity: .82; }
.ob-public-card--clean { width: min(100%, 610px); }
.ob-profile-made-with { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 25px; color: rgba(255,255,255,.45); font-size: .68rem; }
.ob-profile-made-with .ob-brand { color: #fff; font-size: .78rem; opacity: .7; }
.ob-profile-made-with .ob-brand__mark { width: 22px; height: 22px; border-radius: 7px; font-size: .65rem; }
.ob-profile-made-with .ob-brand__text { display: inline; }
.ob-profile-legal { position: absolute; bottom: 20px; display: flex; gap: 15px; color: rgba(255,255,255,.35); font-size: .67rem; }
.ob-profile-legal a:hover { color: rgba(255,255,255,.8); }

/* Checkout keeps infrastructure discreet */
.ob-route-checkout .ob-minimal-header { background: #fff; border-bottom: 1px solid var(--ob-border); }
.ob-route-checkout .ob-checkout-layout { background: #f5f7fb; }

@media (max-width: 1080px) {
    .ob-usecase-grid { grid-template-columns: repeat(2, 1fr); }
    .ob-premium-teaser { grid-template-columns: 1fr; }
    .ob-footer-pro { grid-template-columns: 1.3fr repeat(3, .7fr); gap: 30px; }
    .ob-auth-shell { grid-template-columns: 1fr; }
    .ob-auth-shell__art { display: none; }
    .ob-auth-panel { min-height: calc(100vh - 128px); }
    .ob-legal-layout { grid-template-columns: 1fr; }
    .ob-legal-sidebar { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .ob-usecase-grid, .ob-premium-benefits { grid-template-columns: 1fr; }
    .ob-plan-compare { grid-template-columns: 1fr; }
    .ob-footer-pro { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
    .ob-site-footer__brand { grid-column: 1 / -1; }
    .ob-auth-panel { padding: 45px 20px; align-items: start; }
    .ob-auth-grid { grid-template-columns: 1fr; }
    .ob-dashboard-hero--pro { align-items: flex-start; }
    .ob-managed-link { grid-template-columns: 1fr auto; }
    .ob-managed-link__number { display: none; }
    .ob-managed-link form:not(.ob-managed-link__delete) { grid-column: 1; }
    .ob-managed-link__delete { grid-column: 2; grid-row: 1; }
    .ob-legal-article { padding: 28px 22px; }
    .ob-legal-sidebar { grid-template-columns: 1fr; }
    .ob-profile-corner-brand { top: 18px; left: 18px; }
    .ob-profile-page--clean { padding-top: 75px; }
}

@media (max-width: 520px) {
    .ob-footer-pro { grid-template-columns: 1fr; }
    .ob-footer-column { padding-top: 5px; }
    .ob-auth-panel h1 { font-size: 2rem; }
    .ob-otp-input { letter-spacing: .28em; }
    .ob-product-hero { padding: 65px 0 50px; }
    .ob-product-card, .ob-support-option { padding: 22px; }
    .ob-public-card--clean { padding: 30px 18px 24px; border-radius: 25px; }
    .ob-public-avatar { width: 96px; height: 96px; border-radius: 29px; }
    .ob-profile-legal { bottom: 12px; }
}

/* Checkout sandbox & reliable actions */
.ob-checkout-actions form {
    margin: 0;
}

.ob-checkout-actions button[aria-busy="true"] {
    cursor: wait;
    opacity: .72;
}

.ob-sandbox-panel {
    display: grid;
    gap: 13px;
    padding: 17px;
    margin-bottom: 17px;
    background: #fff8dc;
    border: 1px solid #f1d56a;
    border-radius: 15px;
}

.ob-sandbox-panel__badge {
    width: fit-content;
    padding: 5px 9px;
    color: #6f4b00;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    background: #ffe477;
    border-radius: 999px;
}

.ob-sandbox-panel strong {
    display: block;
    color: #4d3800;
}

.ob-sandbox-panel p {
    margin: 4px 0 0;
    color: #7d651d;
    font-size: .78rem;
    line-height: 1.55;
}

.ob-button--dev {
    color: #201500;
    background: linear-gradient(135deg, #ffd83d, #ffb52e);
    box-shadow: 0 10px 24px rgba(211, 148, 0, .2);
}

.ob-button--dev:hover {
    color: #201500;
    box-shadow: 0 14px 28px rgba(211, 148, 0, .28);
}

.ob-sandbox-panel__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    color: #6f5200;
    font-size: .76rem;
    font-weight: 750;
}

.ob-checkout-feedback {
    padding: 10px 12px;
    margin: 12px 0 0;
    color: #33415f;
    font-size: .78rem;
    background: #eef1ff;
    border-radius: 10px;
}

.ob-checkout-feedback[data-type="error"] {
    color: #a71937;
    background: #fff0f3;
}
.ob-checkout-alert {
    padding: 11px 13px;
    margin-bottom: 16px;
    font-size: .8rem;
    border-radius: 11px;
}
.ob-checkout-alert--error {
    color: #a71937;
    background: #fff0f3;
    border: 1px solid #ffd1db;
}

/* =========================================================
   Otakubio Studio, template profil, notifikasi, dan laporan
   ========================================================= */
.ob-brand__image{display:block;width:auto;height:34px;max-width:128px;object-fit:contain}.ob-brand--compact .ob-brand__image{height:26px;max-width:96px}
.ob-dashboard--studio{--studio-ink:#111729;--studio-muted:#697188;--studio-line:#e0e5f0;--studio-soft:#f6f8fc;max-width:1480px;margin:0 auto;padding:18px 20px 64px;color:var(--studio-ink)}
.ob-dashboard-hero--studio{position:relative;overflow:hidden;min-height:0;padding:28px;border:1px solid rgba(91,95,242,.14);background:linear-gradient(135deg,#141c38 0%,#2d2a68 55%,#5b43a8 100%);box-shadow:0 24px 70px rgba(19,27,55,.18)}
.ob-dashboard-hero--studio:before{content:"";position:absolute;inset:-60% auto auto 45%;width:480px;height:480px;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.2),transparent 67%);pointer-events:none}.ob-dashboard-hero--studio>*{position:relative;z-index:1}.ob-dashboard-hero--studio h1,.ob-dashboard-hero--studio p,.ob-dashboard-hero--studio .ob-eyebrow{color:#fff}.ob-dashboard-hero--studio p{opacity:.76}
.ob-dashboard-user{min-width:0}.ob-dashboard-user__media{flex:0 0 auto}.ob-dashboard-user__media img,.ob-dashboard-user__avatar{display:block;width:68px!important;height:68px!important;min-width:68px;max-width:68px;border-radius:20px;object-fit:cover;box-shadow:0 0 0 3px rgba(255,255,255,.78),0 12px 30px rgba(0,0,0,.22)}
.ob-dashboard-hero__actions{min-width:0}.ob-dashboard-hero--studio .ob-button--ghost{border-color:rgba(255,255,255,.28);background:rgba(255,255,255,.12);color:#fff}.ob-dashboard-hero--studio .ob-button--ghost:hover{background:rgba(255,255,255,.2)}
.ob-plan-pill span{display:flex;flex-direction:column;line-height:1.1}.ob-plan-pill small{margin-top:3px;font-size:9px;font-weight:600;opacity:.72}
.ob-dashboard-tabs{scrollbar-width:thin;overscroll-behavior-inline:contain}.ob-dashboard-tabs a{flex:0 0 auto}.ob-dashboard-tabs a b{display:grid;place-items:center;min-width:20px;height:20px;margin-left:2px;padding:0 5px;border-radius:999px;background:#5b5ff2;color:#fff;font-size:10px}
.ob-dashboard-grid{grid-template-columns:minmax(0,1fr) minmax(310px,390px);gap:24px}.ob-dashboard-editor,.ob-dashboard-preview-column{min-width:0}.ob-editor-card{overflow:hidden}.ob-section-lead{margin:-4px 0 20px;color:var(--studio-muted);line-height:1.7}.ob-notice--prominent{align-items:flex-start}.ob-notice--prominent strong,.ob-notice--prominent span{display:block}.ob-notice--prominent span{margin-top:3px}.ob-notice--warning{border-color:#f0d58c;background:#fff9e9;color:#664c00}
.ob-template-studio{background:linear-gradient(180deg,#fff,#fbfbff)}.ob-template-groups{display:grid;gap:20px}.ob-template-group{min-width:0;margin:0;padding:0;border:0}.ob-template-group legend{display:flex;align-items:center;gap:12px;width:100%;margin-bottom:12px;padding:0}.ob-template-group legend>span:first-child{display:grid;place-items:center;width:38px;height:38px;border-radius:12px;background:#eef0ff;color:#5558dd}.ob-template-group legend strong,.ob-template-group legend small{display:block}.ob-template-group legend small{margin-top:2px;color:var(--studio-muted);font-size:12px}.ob-template-options{display:grid;grid-template-columns:repeat(5,minmax(120px,1fr));gap:10px}.ob-template-option{position:relative;display:flex;min-width:0;min-height:150px;flex-direction:column;gap:9px;padding:10px;border:1px solid var(--studio-line);border-radius:16px;background:#fff;cursor:pointer;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}.ob-template-option:hover{transform:translateY(-2px);border-color:#aeb2ff;box-shadow:0 12px 30px rgba(42,48,96,.09)}.ob-template-option input{position:absolute;opacity:0;pointer-events:none}.ob-template-option:has(input:checked){border-color:#6467ef;box-shadow:0 0 0 2px rgba(91,95,242,.14),0 14px 34px rgba(48,54,110,.12)}.ob-template-swatch{display:block;height:65px;border-radius:11px;background:#eef1f7;overflow:hidden}.ob-template-copy{min-width:0}.ob-template-copy strong,.ob-template-copy small{display:block}.ob-template-copy strong{font-size:13px}.ob-template-copy small{margin-top:3px;color:var(--studio-muted);font-size:10px;line-height:1.35}.ob-template-check{position:absolute;top:16px;right:16px;display:none;place-items:center;width:22px;height:22px;border-radius:50%;background:#5b5ff2;color:#fff}.ob-template-option:has(input:checked) .ob-template-check{display:grid}.ob-template-check .ob-icon{width:13px;height:13px}
.ob-template-swatch--header_template-aurora{background:linear-gradient(135deg,#5c62ef,#9c55ef 55%,#ffd65b)}.ob-template-swatch--header_template-night{background:radial-gradient(circle at 25% 20%,#304e97,#121a38 55%,#080d1c)}.ob-template-swatch--header_template-manga{background-color:#fff;background-image:linear-gradient(#dadde6 1px,transparent 1px),linear-gradient(90deg,#dadde6 1px,transparent 1px);background-size:14px 14px}.ob-template-swatch--header_template-neon{background-color:#080c24;background-image:linear-gradient(rgba(88,229,255,.28) 1px,transparent 1px),linear-gradient(90deg,rgba(191,77,255,.25) 1px,transparent 1px);background-size:15px 15px;box-shadow:inset 0 0 24px #7255ff}.ob-template-swatch--header_template-sakura{background:radial-gradient(circle at 25% 30%,#fff 0 5%,transparent 6%),linear-gradient(135deg,#ffd4e3,#f3a8c6 50%,#8a5980)}
.ob-template-swatch--avatar_template-circle{margin:7px auto;width:52px;height:52px;border-radius:50%;background:linear-gradient(135deg,#5b5ff2,#ffcb4e);box-shadow:0 0 0 4px #fff,0 0 0 6px #5b5ff2}.ob-template-swatch--avatar_template-rounded{margin:7px auto;width:52px;height:52px;border-radius:15px;background:linear-gradient(135deg,#1d2a53,#735eea)}.ob-template-swatch--avatar_template-frame{margin:7px auto;width:52px;height:52px;border-radius:18px;background:#2d3765;border:5px double #ffd15a}.ob-template-swatch--avatar_template-glow{margin:7px auto;width:52px;height:52px;border-radius:50%;background:#222a4e;box-shadow:0 0 0 3px #8b5cf6,0 0 20px #8b5cf6}.ob-template-swatch--avatar_template-card{margin:3px auto;width:45px;height:58px;border-radius:5px;background:linear-gradient(160deg,#fff,#d9deee);border:4px solid #fff;box-shadow:0 7px 14px rgba(20,27,55,.2);transform:rotate(-4deg)}
.ob-template-swatch--nickname_template-clean:after,.ob-template-swatch--nickname_template-gradient:after,.ob-template-swatch--nickname_template-outline:after,.ob-template-swatch--nickname_template-capsule:after,.ob-template-swatch--nickname_template-mono:after{content:"Yurii";display:grid;place-items:center;height:100%;font-size:20px;font-weight:900}.ob-template-swatch--nickname_template-gradient:after{background:linear-gradient(90deg,#5d62ef,#e052c3);-webkit-background-clip:text;background-clip:text;color:transparent}.ob-template-swatch--nickname_template-outline:after{color:#fff;-webkit-text-stroke:1.3px #303d6c}.ob-template-swatch--nickname_template-capsule:after{height:32px;margin:17px 12px;border-radius:999px;background:#252e59;color:#fff}.ob-template-swatch--nickname_template-mono:after{font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-weight:700;letter-spacing:.08em;color:#14365e}
.ob-template-swatch--premium_template-crown:after,.ob-template-swatch--premium_template-verify:after,.ob-template-swatch--premium_template-crystal:after,.ob-template-swatch--premium_template-ribbon:after,.ob-template-swatch--premium_template-minimal:after{display:grid;place-items:center;width:max-content;height:30px;margin:17px auto;padding:0 12px;border-radius:999px;font-size:11px;font-weight:900}.ob-template-swatch--premium_template-crown:after{content:"PREMIUM";background:#ffd54f;color:#1b1b23}.ob-template-swatch--premium_template-verify:after{content:"VERIFIED";background:#5b65f1;color:#fff}.ob-template-swatch--premium_template-crystal:after{content:"CRYSTAL";background:linear-gradient(135deg,#d7f7ff,#a98aff);color:#20304e}.ob-template-swatch--premium_template-ribbon:after{content:"VIP";border-radius:4px;background:#7f3766;color:#fff;transform:rotate(-3deg)}.ob-template-swatch--premium_template-minimal:after{content:"P";width:30px;padding:0;border:2px solid #5b5ff2;color:#5b5ff2}
.ob-template-swatch--link_template-soft:after,.ob-template-swatch--link_template-solid:after,.ob-template-swatch--link_template-outline:after,.ob-template-swatch--link_template-pixel:after,.ob-template-swatch--link_template-glass:after{content:"Link";display:grid;place-items:center;height:38px;margin:13px 10px;font-size:12px;font-weight:800}.ob-template-swatch--link_template-soft:after{border-radius:12px;background:#fff;box-shadow:0 6px 14px rgba(25,32,62,.12)}.ob-template-swatch--link_template-solid:after{border-radius:12px;background:linear-gradient(90deg,#5b5ff2,#9b55ef);color:#fff}.ob-template-swatch--link_template-outline:after{border:2px solid #5b5ff2;border-radius:12px;color:#4549c6}.ob-template-swatch--link_template-pixel:after{border:3px solid #19213e;background:#ffd84d;box-shadow:4px 4px 0 #19213e}.ob-template-swatch--link_template-glass:after{border:1px solid rgba(255,255,255,.8);border-radius:12px;background:rgba(255,255,255,.35);box-shadow:inset 0 0 18px rgba(255,255,255,.6)}
.ob-premium-lock-card{display:flex;align-items:center;gap:14px;margin-top:18px;padding:16px;border:1px solid #e6d69b;border-radius:16px;background:#fffaf0}.ob-premium-lock-card>.ob-icon{flex:0 0 auto;color:#8c6500}.ob-premium-lock-card>div{min-width:0;flex:1}.ob-premium-lock-card strong,.ob-premium-lock-card p{display:block;margin:0}.ob-premium-lock-card p{margin-top:3px;color:#74633d;font-size:12px}
.ob-notification-list{display:grid;gap:10px}.ob-notification-item{display:grid;grid-template-columns:42px minmax(0,1fr);gap:13px;padding:15px;border:1px solid var(--studio-line);border-radius:16px;background:#fff}.ob-notification-item.is-unread{border-color:#b8baff;background:linear-gradient(135deg,#fff,#f5f4ff)}.ob-notification-item__icon{display:grid;place-items:center;width:40px;height:40px;border-radius:13px;background:#eef0ff;color:#5558dd}.ob-notification-item__meta{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}.ob-notification-item__meta time{flex:0 0 auto;color:var(--studio-muted);font-size:10px}.ob-notification-item p{margin:5px 0 0;color:#525c73;line-height:1.6}.ob-notification-item__actions{display:flex;gap:14px;align-items:center;margin-top:9px}.ob-notification-item__actions a,.ob-notification-item__actions button{display:inline-flex;align-items:center;gap:4px;padding:0;border:0;background:none;color:#4e53d4;font:inherit;font-size:12px;font-weight:800;cursor:pointer}.ob-notification-item__actions .ob-icon{width:14px;height:14px}
.ob-dashboard-preview-sticky{top:88px}.ob-profile-preview{position:relative;overflow:hidden;min-height:430px;padding:28px 22px;border:1px solid rgba(255,255,255,.14);border-radius:28px;background:#161d34;color:#fff;text-align:center;box-shadow:0 26px 70px rgba(18,25,52,.2);transition:transform .25s ease,background .25s ease}.ob-profile-preview.is-template-changing{transform:scale(.985)}.ob-profile-preview__avatar{display:grid;place-items:center;width:94px!important;height:94px!important;margin:0 auto 16px;overflow:hidden}.ob-profile-preview__avatar img,.ob-profile-preview__avatar span{display:grid;place-items:center;width:100%!important;height:100%!important;max-width:94px!important;max-height:94px!important;object-fit:cover}.ob-profile-preview__name{display:flex;align-items:center;justify-content:center;gap:7px}.ob-profile-preview__name>strong{display:inline-block;max-width:100%;font-size:24px;line-height:1.15;overflow-wrap:anywhere}.ob-profile-preview>span{display:block;margin-top:5px;opacity:.66}.ob-profile-preview>p{min-height:44px;margin:18px auto;line-height:1.55}.ob-profile-preview__links{display:grid;gap:9px}.ob-profile-preview__links i{display:grid;place-items:center;min-height:44px;padding:9px 12px;border-radius:13px;background:rgba(255,255,255,.1);font-style:normal;font-weight:800;overflow-wrap:anywhere}.ob-profile-preview>small{display:block;margin-top:22px;opacity:.62}.ob-preview-premium{display:grid;place-items:center;width:25px;height:25px}.ob-preview-premium .ob-icon{width:15px;height:15px}
.ob-account-summary strong{overflow-wrap:anywhere}.ob-account-summary>div{min-width:0}

/* Shared profile template engine */
.ob-profile-skin{--profile-bg:#11182d;--profile-bg-2:#2f245f;--profile-card:rgba(25,31,53,.9);--profile-text:#fff;--profile-muted:rgba(255,255,255,.66);--profile-accent:#7770ff;--profile-accent-2:#ffcf55}
.ob-tpl-header--aurora{--profile-bg:#071225;--profile-bg-2:#2b2059;--profile-accent:#7169ff;--profile-accent-2:#ffd052}.ob-tpl-header--night{--profile-bg:#050914;--profile-bg-2:#102d5a;--profile-accent:#5ba9ff;--profile-accent-2:#b8d9ff}.ob-tpl-header--manga{--profile-bg:#eef0f5;--profile-bg-2:#cfd5e0;--profile-card:rgba(255,255,255,.92);--profile-text:#111521;--profile-muted:#626a79;--profile-accent:#222b45;--profile-accent-2:#69718a}.ob-tpl-header--neon{--profile-bg:#04061a;--profile-bg-2:#241153;--profile-accent:#50e8ff;--profile-accent-2:#d75aff}.ob-tpl-header--sakura{--profile-bg:#3a2338;--profile-bg-2:#7f496c;--profile-accent:#ffb9d1;--profile-accent-2:#ffe0aa}
.ob-profile-page.ob-tpl-header--aurora{background:radial-gradient(circle at 18% 18%,rgba(67,101,204,.42),transparent 34%),linear-gradient(115deg,var(--profile-bg),var(--profile-bg-2))}.ob-profile-page.ob-tpl-header--night{background:radial-gradient(circle at 72% 10%,rgba(77,144,255,.28),transparent 30%),linear-gradient(145deg,var(--profile-bg),var(--profile-bg-2))}.ob-profile-page.ob-tpl-header--manga{background-color:#e6e9f0;background-image:linear-gradient(rgba(38,45,65,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(38,45,65,.08) 1px,transparent 1px);background-size:34px 34px}.ob-profile-page.ob-tpl-header--neon{background-color:#04061a;background-image:linear-gradient(rgba(72,228,255,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(209,76,255,.1) 1px,transparent 1px),radial-gradient(circle at 50% 10%,rgba(120,54,255,.3),transparent 42%);background-size:44px 44px,44px 44px,auto}.ob-profile-page.ob-tpl-header--sakura{background:radial-gradient(circle at 10% 14%,rgba(255,223,234,.2),transparent 4%),radial-gradient(circle at 84% 24%,rgba(255,223,234,.2),transparent 5%),linear-gradient(145deg,var(--profile-bg),var(--profile-bg-2))}
.ob-profile-preview.ob-tpl-header--aurora{background:radial-gradient(circle at 20% 10%,rgba(109,121,255,.4),transparent 35%),linear-gradient(145deg,#101a35,#352967)}.ob-profile-preview.ob-tpl-header--night{background:radial-gradient(circle at 75% 5%,rgba(77,157,255,.33),transparent 32%),linear-gradient(145deg,#050914,#102d5a)}.ob-profile-preview.ob-tpl-header--manga{background-color:#eef0f5;background-image:linear-gradient(rgba(38,45,65,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(38,45,65,.09) 1px,transparent 1px);background-size:20px 20px;color:#111521}.ob-profile-preview.ob-tpl-header--manga>span,.ob-profile-preview.ob-tpl-header--manga>small{color:#555d70}.ob-profile-preview.ob-tpl-header--neon{background-color:#04061a;background-image:linear-gradient(rgba(72,228,255,.13) 1px,transparent 1px),linear-gradient(90deg,rgba(209,76,255,.13) 1px,transparent 1px);background-size:25px 25px;box-shadow:inset 0 0 50px rgba(110,64,255,.28),0 26px 70px rgba(18,25,52,.2)}.ob-profile-preview.ob-tpl-header--sakura{background:radial-gradient(circle at 20% 12%,rgba(255,222,234,.18),transparent 6%),linear-gradient(145deg,#3a2338,#86506f)}
.ob-tpl-avatar--circle .ob-public-avatar-wrap,.ob-tpl-avatar--circle .ob-profile-preview__avatar{border-radius:50%;box-shadow:0 0 0 4px #fff,0 0 0 7px var(--profile-accent)}.ob-tpl-avatar--circle .ob-public-avatar,.ob-tpl-avatar--circle .ob-profile-preview__avatar>*{border-radius:50%}.ob-tpl-avatar--rounded .ob-public-avatar-wrap,.ob-tpl-avatar--rounded .ob-profile-preview__avatar{border-radius:27%;box-shadow:0 0 0 3px rgba(255,255,255,.8),0 14px 30px rgba(0,0,0,.2)}.ob-tpl-avatar--rounded .ob-public-avatar,.ob-tpl-avatar--rounded .ob-profile-preview__avatar>*{border-radius:24%}.ob-tpl-avatar--frame .ob-public-avatar-wrap,.ob-tpl-avatar--frame .ob-profile-preview__avatar{border:6px double var(--profile-accent-2);border-radius:24px;padding:3px;background:rgba(255,255,255,.8);transform:rotate(-2deg)}.ob-tpl-avatar--frame .ob-public-avatar,.ob-tpl-avatar--frame .ob-profile-preview__avatar>*{border-radius:15px}.ob-tpl-avatar--glow .ob-public-avatar-wrap,.ob-tpl-avatar--glow .ob-profile-preview__avatar{border-radius:50%;box-shadow:0 0 0 3px var(--profile-accent),0 0 28px var(--profile-accent)}.ob-tpl-avatar--glow .ob-public-avatar,.ob-tpl-avatar--glow .ob-profile-preview__avatar>*{border-radius:50%}.ob-tpl-avatar--card .ob-public-avatar-wrap,.ob-tpl-avatar--card .ob-profile-preview__avatar{height:132px!important;border:7px solid #fff;border-radius:9px;background:#fff;box-shadow:0 14px 32px rgba(0,0,0,.25);transform:rotate(-3deg)}.ob-tpl-avatar--card .ob-public-avatar,.ob-tpl-avatar--card .ob-profile-preview__avatar>*{border-radius:3px}
.ob-public-avatar-wrap{display:grid;place-items:center;width:116px;height:116px;margin:0 auto 18px;overflow:hidden}.ob-public-avatar{display:block;width:100%;height:100%;object-fit:cover}
.ob-tpl-nickname--clean .ob-public-card__title h1,.ob-tpl-nickname--clean .ob-profile-preview__name strong{font-weight:900}.ob-tpl-nickname--gradient .ob-public-card__title h1,.ob-tpl-nickname--gradient .ob-profile-preview__name strong{background:linear-gradient(90deg,var(--profile-accent),var(--profile-accent-2));-webkit-background-clip:text;background-clip:text;color:transparent}.ob-tpl-nickname--outline .ob-public-card__title h1,.ob-tpl-nickname--outline .ob-profile-preview__name strong{color:transparent;-webkit-text-stroke:1.5px var(--profile-text);text-shadow:0 5px 18px rgba(0,0,0,.2)}.ob-tpl-header--manga.ob-tpl-nickname--outline .ob-public-card__title h1,.ob-tpl-header--manga.ob-tpl-nickname--outline .ob-profile-preview__name strong{-webkit-text-stroke-color:#111521}.ob-tpl-nickname--capsule .ob-public-card__title h1,.ob-tpl-nickname--capsule .ob-profile-preview__name strong{padding:7px 17px;border:1px solid rgba(255,255,255,.22);border-radius:999px;background:rgba(8,12,28,.35);font-size:.86em}.ob-tpl-header--manga.ob-tpl-nickname--capsule .ob-public-card__title h1,.ob-tpl-header--manga.ob-tpl-nickname--capsule .ob-profile-preview__name strong{background:#222b45;color:#fff}.ob-tpl-nickname--mono .ob-public-card__title h1,.ob-tpl-nickname--mono .ob-profile-preview__name strong{font-family:ui-monospace,SFMono-Regular,Consolas,monospace;font-weight:800;letter-spacing:.06em}
.ob-premium-mark{max-width:max-content}.ob-premium-mark b{display:none}.ob-tpl-premium--crown .ob-premium-mark{background:#ffd451;color:#18181f}.ob-tpl-premium--verify .ob-premium-mark{background:#5264ef;color:#fff}.ob-tpl-premium--verify .ob-premium-mark .ob-icon path:first-child{stroke-width:2.4}.ob-tpl-premium--crystal .ob-premium-mark{background:linear-gradient(135deg,#d7f8ff,#a786ff);color:#23304c;box-shadow:0 0 20px rgba(158,129,255,.35)}.ob-tpl-premium--ribbon .ob-premium-mark{border-radius:5px;background:#853d6b;color:#fff;transform:rotate(-3deg)}.ob-tpl-premium--ribbon .ob-premium-mark b{display:inline}.ob-tpl-premium--minimal .ob-premium-mark{width:29px;height:29px;padding:0;border:2px solid var(--profile-accent);background:transparent;color:var(--profile-accent)}.ob-tpl-premium--minimal .ob-premium-mark .ob-icon{width:14px;height:14px}
.ob-tpl-link--soft .ob-public-link,.ob-tpl-link--soft .ob-profile-preview__links i{border:1px solid rgba(255,255,255,.15);border-radius:16px;background:rgba(255,255,255,.11);box-shadow:0 9px 22px rgba(0,0,0,.12)}.ob-tpl-header--manga.ob-tpl-link--soft .ob-public-link,.ob-tpl-header--manga.ob-tpl-link--soft .ob-profile-preview__links i{border-color:#d8dde8;background:#fff;color:#111521}.ob-tpl-link--solid .ob-public-link,.ob-tpl-link--solid .ob-profile-preview__links i{border:0;border-radius:15px;background:linear-gradient(90deg,var(--profile-accent),color-mix(in srgb,var(--profile-accent) 55%,var(--profile-accent-2)));color:#fff;box-shadow:0 12px 26px color-mix(in srgb,var(--profile-accent) 30%,transparent)}.ob-tpl-link--outline .ob-public-link,.ob-tpl-link--outline .ob-profile-preview__links i{border:2px solid var(--profile-accent);border-radius:15px;background:transparent;color:var(--profile-text)}.ob-tpl-header--manga.ob-tpl-link--outline .ob-public-link,.ob-tpl-header--manga.ob-tpl-link--outline .ob-profile-preview__links i{color:#111521}.ob-tpl-link--pixel .ob-public-link,.ob-tpl-link--pixel .ob-profile-preview__links i{border:3px solid var(--profile-text);border-radius:0;background:var(--profile-accent-2);color:#111521;box-shadow:5px 5px 0 var(--profile-text)}.ob-tpl-link--glass .ob-public-link,.ob-tpl-link--glass .ob-profile-preview__links i{border:1px solid rgba(255,255,255,.35);border-radius:16px;background:rgba(255,255,255,.09);box-shadow:inset 0 1px 0 rgba(255,255,255,.3);backdrop-filter:blur(14px)}
.ob-public-card{background:var(--profile-card);color:var(--profile-text)}.ob-public-handle,.ob-public-bio,.ob-profile-made-with{color:var(--profile-muted)}.ob-profile-page__pattern{position:fixed;inset:0;pointer-events:none;opacity:.2}.ob-tpl-header--neon .ob-profile-page__pattern{background:radial-gradient(circle at 50% 0,rgba(92,236,255,.28),transparent 28%)}.ob-tpl-header--sakura .ob-profile-page__pattern{background-image:radial-gradient(ellipse at 15% 15%,rgba(255,230,240,.45) 0 2px,transparent 3px),radial-gradient(ellipse at 78% 28%,rgba(255,230,240,.38) 0 3px,transparent 4px);background-size:150px 120px,210px 180px}.ob-tpl-header--manga .ob-profile-corner-brand,.ob-tpl-header--manga .ob-profile-legal{color:#111521}.ob-tpl-header--manga .ob-profile-legal a,.ob-tpl-header--manga .ob-profile-legal button{color:#394158}
.ob-profile-toast{position:relative;z-index:5;display:flex;align-items:center;gap:9px;max-width:620px;margin:0 auto 14px;padding:12px 15px;border-radius:14px;background:#fff;box-shadow:0 12px 36px rgba(10,16,38,.18);font-size:13px}.ob-profile-toast--success{color:#12682f}.ob-profile-toast--error{color:#982d2d}.ob-profile-toast .ob-icon{flex:0 0 auto}
.ob-profile-legal button{display:inline-flex;align-items:center;gap:5px;padding:0;border:0;background:none;color:inherit;font:inherit;cursor:pointer}.ob-profile-legal button .ob-icon{width:14px;height:14px}
.ob-frozen-profile{display:grid;justify-items:center;padding:24px 8px;text-align:center}.ob-frozen-profile__icon{display:grid;place-items:center;width:72px;height:72px;margin-bottom:18px;border-radius:22px;background:rgba(255,255,255,.1);color:var(--profile-accent-2)}.ob-frozen-profile__icon .ob-icon{width:30px;height:30px}.ob-frozen-profile h1{margin:7px 0 10px}.ob-frozen-profile p{max-width:380px;margin:0 0 24px;color:var(--profile-muted);line-height:1.7}.ob-frozen-profile .ob-public-link{width:100%}
.ob-modal-open{overflow:hidden}.ob-report-modal{position:fixed;z-index:9999;inset:0;display:grid;place-items:center;padding:18px}.ob-report-modal[hidden]{display:none}.ob-report-modal__backdrop{position:absolute;inset:0;border:0;background:rgba(5,8,18,.72);backdrop-filter:blur(6px)}.ob-report-dialog{position:relative;z-index:1;width:min(100%,560px);max-height:calc(100vh - 36px);overflow:auto;padding:28px;border:1px solid #e0e5ef;border-radius:24px;background:#fff;color:#12182a;box-shadow:0 30px 100px rgba(0,0,0,.34)}.ob-report-dialog__close{position:absolute;top:14px;right:14px;display:grid;place-items:center;width:38px;height:38px;border:1px solid #e1e5ef;border-radius:12px;background:#fff;color:#343b50;cursor:pointer}.ob-report-dialog__icon{display:grid;place-items:center;width:54px;height:54px;margin-bottom:14px;border-radius:17px;background:#eef0ff;color:#5558dd}.ob-report-dialog h2{margin:5px 0 9px;font-size:25px}.ob-report-dialog>p{margin:0 0 20px;color:#616a80;line-height:1.65}.ob-report-dialog .ob-field{display:grid;gap:7px;margin-bottom:15px}.ob-report-dialog .ob-field span{font-weight:800}.ob-report-dialog .ob-field input,.ob-report-dialog .ob-field select,.ob-report-dialog .ob-field textarea{width:100%;border:1px solid #d8deea;border-radius:12px;background:#f8f9fc;color:#111729}.ob-report-dialog .ob-field small{color:#6c7488}.ob-report-dialog__actions{display:flex;justify-content:flex-end;gap:10px;margin-top:20px}.ob-button--danger{background:#bd3540;color:#fff}.ob-button--danger:hover{background:#a62c36}

@media(max-width:1180px){.ob-template-options{grid-template-columns:repeat(3,minmax(130px,1fr))}.ob-dashboard-grid{grid-template-columns:minmax(0,1fr) 330px}}
@media(max-width:900px){.ob-dashboard--studio{padding-inline:12px}.ob-dashboard-hero--studio{padding:22px}.ob-dashboard-grid{grid-template-columns:1fr}.ob-dashboard-preview-column{order:-1}.ob-dashboard-preview-sticky{position:static}.ob-profile-preview{min-height:360px}.ob-template-options{grid-template-columns:repeat(2,minmax(0,1fr))}.ob-dashboard-tabs{margin-inline:-12px;padding-inline:12px;border-radius:0}.ob-managed-link{grid-template-columns:32px minmax(0,1fr);overflow:hidden}.ob-managed-link__delete{grid-column:2}.ob-form-grid{min-width:0}.ob-field,.ob-input-prefix{min-width:0}.ob-input-prefix{display:grid;grid-template-columns:auto minmax(0,1fr)}.ob-input-prefix input{min-width:0}.ob-notification-item__meta{flex-direction:column;gap:3px}.ob-premium-lock-card{align-items:flex-start;flex-wrap:wrap}.ob-premium-lock-card .ob-button{width:100%}}
@media(max-width:560px){.ob-dashboard--studio{padding:8px 8px 48px}.ob-dashboard-hero--studio{padding:19px;border-radius:22px}.ob-dashboard-user{align-items:flex-start}.ob-dashboard-user__media img,.ob-dashboard-user__avatar{width:54px!important;height:54px!important;min-width:54px;max-width:54px;border-radius:16px}.ob-dashboard-hero__actions{display:grid;width:100%;grid-template-columns:1fr 1fr}.ob-dashboard-hero__actions .ob-plan-pill{grid-column:1/-1}.ob-dashboard-hero__actions .ob-button{width:100%;justify-content:center}.ob-editor-card{padding:17px;border-radius:18px}.ob-template-options{grid-template-columns:1fr 1fr;gap:8px}.ob-template-option{min-height:138px;padding:8px}.ob-template-swatch{height:58px}.ob-profile-preview{min-height:0;padding:24px 16px;border-radius:22px}.ob-profile-preview__avatar{width:82px!important;height:82px!important}.ob-profile-preview__avatar img,.ob-profile-preview__avatar span{max-width:82px!important;max-height:82px!important}.ob-profile-preview__name>strong{font-size:21px}.ob-report-dialog{padding:23px 18px;border-radius:20px}.ob-report-dialog__actions{display:grid;grid-template-columns:1fr 1fr}.ob-report-dialog__actions .ob-button{width:100%;justify-content:center}.ob-public-card{width:min(100%,calc(100vw - 20px));padding-inline:18px}.ob-public-avatar-wrap{width:104px;height:104px}.ob-tpl-avatar--card .ob-public-avatar-wrap{height:122px!important}.ob-profile-legal{flex-wrap:wrap;justify-content:center}.ob-notification-item{grid-template-columns:36px minmax(0,1fr);padding:12px}.ob-notification-item__icon{width:34px;height:34px}.ob-template-group legend{align-items:flex-start}}

/* Anti-spam field: tetap tersedia untuk bot, tidak terlihat oleh pengguna. */
.ob-honeypot {
    position: absolute !important;
    inline-size: 1px !important;
    block-size: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}
.ob-preview-premium.is-preview-only {
    opacity: .72;
    outline: 1px dashed currentColor;
    outline-offset: 3px;
}

/* Badge Premium pada preview mengikuti kategori template yang sama dengan profil publik. */
.ob-preview-premium {
    border-radius: 999px;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.ob-tpl-premium--crown .ob-preview-premium {
    background: #ffd451;
    color: #18181f;
}
.ob-tpl-premium--verify .ob-preview-premium {
    background: #5264ef;
    color: #fff;
}
.ob-tpl-premium--crystal .ob-preview-premium {
    background: linear-gradient(135deg, #d7f8ff, #a786ff);
    color: #23304c;
    box-shadow: 0 0 20px rgba(158, 129, 255, .4);
}
.ob-tpl-premium--ribbon .ob-preview-premium {
    width: 34px;
    border-radius: 5px;
    background: #853d6b;
    color: #fff;
    transform: rotate(-4deg);
}
.ob-tpl-premium--minimal .ob-preview-premium {
    background: transparent;
    color: var(--profile-accent);
    border: 2px solid var(--profile-accent);
}

/* =========================================================
   Otakubioku-THM v0.4.0 — mobile-first dashboard and profile
   ========================================================= */

html[data-ob-theme="dark"] {
    --ob-bg: #090d18;
    --ob-bg-soft: #0f1525;
    --ob-surface: #141b2d;
    --ob-surface-soft: #1a2237;
    --ob-ink: #f4f6ff;
    --ob-ink-soft: #aab3ca;
    --ob-border: #2b354d;
    --ob-border-strong: #3b4764;
    --ob-primary-soft: #252b58;
    --ob-shadow-sm: 0 8px 24px rgba(0, 0, 0, .24);
    --ob-shadow: 0 22px 60px rgba(0, 0, 0, .34);
    color-scheme: dark;
}

html[data-ob-theme="dark"] body,
html[data-ob-theme="dark"] .ob-dashboard-page,
html[data-ob-theme="dark"] .ob-main,
html[data-ob-theme="dark"] .ob-site-header {
    background-color: var(--ob-bg);
    color: var(--ob-ink);
}

html[data-ob-theme="dark"] .ob-site-header,
html[data-ob-theme="dark"] .ob-site-header.is-scrolled {
    background: rgba(9, 13, 24, .88);
    border-color: var(--ob-border);
}

html[data-ob-theme="dark"] .ob-button--ghost,
html[data-ob-theme="dark"] .ob-icon-button,
html[data-ob-theme="dark"] input,
html[data-ob-theme="dark"] textarea,
html[data-ob-theme="dark"] select {
    color: var(--ob-ink);
    background: var(--ob-surface-soft);
    border-color: var(--ob-border);
}

html[data-ob-theme="dark"] .ob-site-footer {
    background: #070b14;
    color: #dce2f5;
}

.ob-theme-toggle [data-theme-light][hidden],
.ob-theme-toggle [data-theme-dark][hidden],
.ob-mobile-dock [data-theme-light][hidden],
.ob-mobile-dock [data-theme-dark][hidden] {
    display: none !important;
}

.ob-site-header--v4 .ob-header-mobile-actions {
    display: none;
}

.ob-mobile-dock {
    display: none;
}

.ob-minimal-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Dashboard */
.ob-dashboard-page {
    min-height: calc(100vh - var(--ob-header-height));
    padding: 34px 0 90px;
    overflow-x: clip;
    background:
        radial-gradient(circle at 5% 0, rgba(91, 103, 241, .09), transparent 28%),
        radial-gradient(circle at 96% 12%, rgba(138, 92, 246, .08), transparent 26%),
        var(--ob-bg);
}

.ob-dashboard-page > .ob-container {
    width: min(calc(100% - 28px), 1380px);
}

.ob4-dashboard {
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    color: var(--ob-ink);
}

.ob4-dashboard * {
    min-width: 0;
}

.ob4-dashboard-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    padding: 26px 28px;
    color: #fff;
    background:
        radial-gradient(circle at 74% -40%, rgba(255,255,255,.24), transparent 45%),
        linear-gradient(135deg, #111a38 0%, #313074 54%, #7351c5 100%);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(27, 33, 75, .22);
}

.ob4-dashboard-hero::after {
    position: absolute;
    right: -60px;
    bottom: -110px;
    width: 300px;
    height: 300px;
    content: "";
    background: radial-gradient(circle, rgba(255,216,77,.28), transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.ob4-dashboard-hero > * {
    position: relative;
    z-index: 1;
}

.ob4-dashboard-hero__identity {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ob4-dashboard-hero__identity img {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    object-fit: cover;
    background: #fff;
    border: 3px solid rgba(255,255,255,.82);
    border-radius: 22px;
    box-shadow: 0 13px 30px rgba(0,0,0,.22);
}

.ob4-dashboard-hero .ob-eyebrow {
    margin-bottom: 5px;
    color: #cfd4ff;
}

.ob4-dashboard-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    letter-spacing: -.045em;
    line-height: 1.1;
}

.ob4-dashboard-hero p {
    max-width: 640px;
    margin: 7px 0 0;
    color: rgba(255,255,255,.72);
    font-size: .92rem;
}

.ob4-dashboard-hero__tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.ob4-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 8px 14px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    backdrop-filter: blur(12px);
}

.ob4-status-pill.is-premium {
    color: #1f1a05;
    background: linear-gradient(135deg, #ffe06a, #ffc942);
    border-color: rgba(255,255,255,.35);
}

.ob4-status-pill span,
.ob4-status-pill small {
    display: block;
}

.ob4-status-pill span {
    font-size: .83rem;
    font-weight: 850;
    line-height: 1.2;
}

.ob4-status-pill small {
    margin-top: 2px;
    font-size: .63rem;
    font-weight: 700;
    opacity: .72;
}

.ob4-hero-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    transition: transform .2s ease, background .2s ease;
}

.ob4-hero-icon:hover {
    color: #fff;
    background: rgba(255,255,255,.22);
    transform: translateY(-2px);
}

.ob4-dashboard-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    margin: 16px 0 20px;
    background: var(--ob-surface);
    border: 1px solid var(--ob-border);
    border-radius: 18px;
    box-shadow: var(--ob-shadow-sm);
}

.ob4-dashboard-nav button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 13px;
    color: var(--ob-ink-soft);
    font-size: .82rem;
    font-weight: 800;
    background: transparent;
    border: 0;
    border-radius: 12px;
    transition: .2s ease;
}

.ob4-dashboard-nav button:hover,
.ob4-dashboard-nav button.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--ob-primary), var(--ob-violet));
    box-shadow: 0 9px 22px rgba(91, 103, 241, .22);
}

.ob4-dashboard-nav button > i {
    position: absolute;
    top: 8px;
    right: calc(50% - 20px);
    width: 8px;
    height: 8px;
    background: #f04455;
    border: 2px solid var(--ob-surface);
    border-radius: 50%;
}

.ob4-dashboard-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    align-items: start;
    gap: 22px;
}

.ob4-dashboard-panels {
    min-width: 0;
}

.ob4-panel {
    padding: 25px;
    background: var(--ob-surface);
    border: 1px solid var(--ob-border);
    border-radius: 24px;
    box-shadow: var(--ob-shadow-sm);
    animation: ob4PanelIn .24s ease both;
}

.ob4-panel[hidden] {
    display: none !important;
}

@keyframes ob4PanelIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.ob4-panel-head,
.ob4-panel-head__title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ob4-panel-head {
    margin-bottom: 22px;
}

.ob4-panel-head--split {
    justify-content: space-between;
}

.ob4-panel-head > span,
.ob4-panel-head__title > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    border-radius: 13px;
}

.ob4-panel-head small,
.ob4-preview-head small {
    display: block;
    margin-bottom: 2px;
    color: var(--ob-primary-dark);
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.ob4-panel-head h2,
.ob4-preview-head h2 {
    margin: 0;
    color: var(--ob-ink);
    font-size: 1.35rem;
    letter-spacing: -.035em;
}

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

.ob4-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ob4-field--wide {
    grid-column: 1 / -1;
}

.ob4-field > span,
.ob4-field label {
    color: var(--ob-ink);
    font-size: .82rem;
    font-weight: 800;
}

.ob4-field input,
.ob4-field textarea,
.ob4-field select,
.ob4-prefix {
    width: 100%;
    color: var(--ob-ink);
    background: var(--ob-bg-soft);
    border: 1px solid var(--ob-border);
    border-radius: 13px;
}

.ob4-field input,
.ob4-field textarea,
.ob4-field select {
    min-height: 48px;
    padding: 11px 13px;
}

.ob4-field textarea {
    resize: vertical;
}

.ob4-field small {
    color: var(--ob-ink-soft);
    font-size: .72rem;
}

.ob4-prefix {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
}

.ob4-prefix b {
    padding-left: 13px;
    color: var(--ob-ink-soft);
    font-size: .76rem;
    white-space: nowrap;
}

.ob4-prefix input {
    border: 0;
    background: transparent;
    border-radius: 0;
}

.ob4-switch {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 48px;
    padding: 10px 13px;
    color: var(--ob-ink);
    background: var(--ob-bg-soft);
    border: 1px solid var(--ob-border);
    border-radius: 13px;
}

.ob4-switch input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    accent-color: var(--ob-primary);
}

.ob4-switch span,
.ob4-switch b,
.ob4-switch small {
    display: block;
}

.ob4-switch b {
    font-size: .8rem;
}

.ob4-switch small {
    margin-top: 2px;
    color: var(--ob-ink-soft);
    font-size: .69rem;
}

.ob4-form-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 4px;
}

.ob4-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 11px;
    color: var(--ob-ink-soft);
    font-size: .72rem;
    font-weight: 850;
    background: var(--ob-bg-soft);
    border: 1px solid var(--ob-border);
    border-radius: 999px;
}

.ob4-access-badge.is-premium {
    color: #342500;
    background: #ffe06a;
    border-color: #f2cc3d;
}

.ob4-template-category-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    padding: 7px;
    margin-bottom: 20px;
    background: var(--ob-bg-soft);
    border: 1px solid var(--ob-border);
    border-radius: 16px;
}

.ob4-template-category-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 9px;
    color: var(--ob-ink-soft);
    font-size: .72rem;
    font-weight: 800;
    background: transparent;
    border: 0;
    border-radius: 11px;
}

.ob4-template-category-nav button.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--ob-primary), var(--ob-violet));
}

.ob4-template-panel {
    margin: 0;
    padding: 0;
    border: 0;
}

.ob4-template-panel[hidden] {
    display: none !important;
}

.ob4-template-panel legend {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 14px;
}

.ob4-template-panel legend strong {
    color: var(--ob-ink);
    font-size: 1rem;
}

.ob4-template-panel legend span {
    color: var(--ob-ink-soft);
    font-size: .78rem;
}

.ob4-template-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.ob4-template-card {
    position: relative;
    display: flex;
    min-height: 142px;
    flex-direction: column;
    gap: 9px;
    padding: 9px;
    color: var(--ob-ink);
    background: var(--ob-bg-soft);
    border: 1px solid var(--ob-border);
    border-radius: 15px;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ob4-template-card:hover {
    border-color: #9ba1ff;
    transform: translateY(-2px);
}

.ob4-template-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ob4-template-card:has(input:checked) {
    border-color: var(--ob-primary);
    box-shadow: 0 0 0 2px rgba(91,103,241,.14), 0 10px 24px rgba(33,40,92,.12);
}

.ob4-template-card > i {
    position: absolute;
    top: 14px;
    right: 14px;
    display: none;
    place-items: center;
    width: 23px;
    height: 23px;
    color: #fff;
    background: var(--ob-primary);
    border-radius: 50%;
}

.ob4-template-card:has(input:checked) > i {
    display: grid;
}

.ob4-template-card > i .ob-icon {
    width: 13px;
    height: 13px;
}

.ob4-template-card > span:last-of-type strong,
.ob4-template-card > span:last-of-type small {
    display: block;
}

.ob4-template-card > span:last-of-type strong {
    font-size: .78rem;
}

.ob4-template-card > span:last-of-type small {
    margin-top: 2px;
    color: var(--ob-ink-soft);
    font-size: .62rem;
    line-height: 1.35;
}

.ob4-template-swatch {
    display: block;
    height: 62px;
    overflow: hidden;
    background: #e8ebf5;
    border-radius: 10px;
}

.ob4-premium-note {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 14px;
    color: var(--ob-ink);
    background: var(--ob-primary-soft);
    border: 1px solid color-mix(in srgb, var(--ob-primary) 22%, var(--ob-border));
    border-radius: 16px;
}

.ob4-premium-note > .ob-icon {
    width: 24px;
    height: 24px;
    color: var(--ob-primary-dark);
}

.ob4-premium-note strong,
.ob4-premium-note p {
    display: block;
    margin: 0;
}

.ob4-premium-note p {
    margin-top: 3px;
    color: var(--ob-ink-soft);
    font-size: .73rem;
}

.ob4-accordion,
.ob4-link-item {
    overflow: hidden;
    background: var(--ob-bg-soft);
    border: 1px solid var(--ob-border);
    border-radius: 16px;
}

.ob4-accordion {
    margin-bottom: 14px;
}

.ob4-accordion > summary,
.ob4-link-item > summary {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 13px 15px;
    color: var(--ob-ink);
    list-style: none;
    cursor: pointer;
}

.ob4-accordion > summary::-webkit-details-marker,
.ob4-link-item > summary::-webkit-details-marker {
    display: none;
}

.ob4-accordion > summary > .ob-icon:first-child {
    width: 34px;
    height: 34px;
    padding: 8px;
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    border-radius: 10px;
}

.ob4-accordion summary span,
.ob4-accordion summary strong,
.ob4-accordion summary small {
    display: block;
}

.ob4-accordion summary small {
    color: var(--ob-ink-soft);
    font-size: .68rem;
}

.ob4-accordion summary > .ob-icon:last-child,
.ob4-link-item summary > .ob-icon:last-child {
    margin-left: auto;
    transition: transform .2s ease;
}

.ob4-accordion[open] summary > .ob-icon:last-child,
.ob4-link-item[open] summary > .ob-icon:last-child {
    transform: rotate(90deg);
}

.ob4-accordion > .ob4-form {
    padding: 16px;
    border-top: 1px solid var(--ob-border);
}

.ob4-link-list {
    display: grid;
    gap: 10px;
}

.ob4-link-item > summary {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto 20px;
}

.ob4-link-number {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--ob-primary-dark);
    font-size: .75rem;
    font-weight: 900;
    background: var(--ob-primary-soft);
    border-radius: 10px;
}

.ob4-link-summary strong,
.ob4-link-summary small {
    display: block;
}

.ob4-link-summary strong {
    overflow: hidden;
    font-size: .86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ob4-link-summary small {
    overflow: hidden;
    color: var(--ob-ink-soft);
    font-size: .68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ob4-link-state {
    padding: 5px 8px;
    color: var(--ob-ink-soft);
    font-size: .62rem;
    font-weight: 850;
    background: var(--ob-surface);
    border: 1px solid var(--ob-border);
    border-radius: 999px;
}

.ob4-link-state.is-active {
    color: #0f724f;
    background: #ddf8ed;
    border-color: #b7ead7;
}

.ob4-link-editor {
    padding: 16px;
    border-top: 1px solid var(--ob-border);
}

.ob4-link-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ob4-delete-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 0 0;
    color: var(--ob-red);
    font-size: .75rem;
    font-weight: 800;
    background: none;
    border: 0;
}

.ob4-preview-column {
    position: sticky;
    top: calc(var(--ob-header-height) + 18px);
    min-width: 0;
}

.ob4-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 0 3px;
}

.ob4-preview-column .ob-profile-preview {
    min-height: 500px;
}

.ob4-account-summary {
    display: grid;
    gap: 10px;
    padding: 14px;
    margin-top: 12px;
    color: var(--ob-ink);
    background: var(--ob-surface);
    border: 1px solid var(--ob-border);
    border-radius: 17px;
    box-shadow: var(--ob-shadow-sm);
}

.ob4-account-summary > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ob4-account-summary span {
    color: var(--ob-ink-soft);
    font-size: .7rem;
}

.ob4-account-summary strong {
    overflow: hidden;
    max-width: 65%;
    font-size: .72rem;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ob4-account-summary > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    color: #2b2200;
    font-size: .75rem;
    font-weight: 850;
    background: #ffe06a;
    border-radius: 11px;
}

/* Notifications */
.ob4-notification-drawer[hidden] {
    display: none !important;
}

.ob4-notification-drawer {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    justify-content: flex-end;
}

.ob4-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 18, .62);
    border: 0;
    backdrop-filter: blur(5px);
}

.ob4-notification-panel {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(430px, 100%);
    height: 100%;
    flex-direction: column;
    padding: 20px;
    color: var(--ob-ink);
    background: var(--ob-surface);
    box-shadow: -24px 0 70px rgba(0,0,0,.22);
    animation: ob4DrawerIn .25s ease both;
}

@keyframes ob4DrawerIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.ob4-notification-panel > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ob-border);
}

.ob4-notification-panel header small,
.ob4-notification-panel header h2 {
    display: block;
    margin: 0;
}

.ob4-notification-panel header small {
    color: var(--ob-primary-dark);
    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ob4-notification-panel header h2 {
    font-size: 1.35rem;
}

.ob4-mark-all {
    padding: 12px 0 0;
}

.ob4-mark-all button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    color: var(--ob-primary-dark);
    font-size: .72rem;
    font-weight: 800;
    background: none;
    border: 0;
}

.ob4-notification-list {
    display: grid;
    gap: 10px;
    padding: 14px 2px 30px;
    overflow-y: auto;
}

.ob4-notification-list > article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    background: var(--ob-bg-soft);
    border: 1px solid var(--ob-border);
    border-radius: 14px;
}

.ob4-notification-list > article.is-unread {
    border-color: color-mix(in srgb, var(--ob-primary) 50%, var(--ob-border));
    box-shadow: inset 3px 0 0 var(--ob-primary);
}

.ob4-notification-list > article > span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    border-radius: 11px;
}

.ob4-notification-list article > div > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.ob4-notification-list strong,
.ob4-notification-list time {
    display: block;
}

.ob4-notification-list strong {
    font-size: .8rem;
}

.ob4-notification-list time {
    color: var(--ob-ink-soft);
    font-size: .59rem;
    white-space: nowrap;
}

.ob4-notification-list p {
    margin: 5px 0 0;
    color: var(--ob-ink-soft);
    font-size: .72rem;
    line-height: 1.55;
}

.ob4-notification-list footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 9px;
}

.ob4-notification-list footer a,
.ob4-notification-list footer button {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    color: var(--ob-primary-dark);
    font-size: .67rem;
    font-weight: 800;
    background: none;
    border: 0;
}

/* Profile menus and link actions */
.ob4-public-card {
    position: relative;
}

.ob4-profile-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--profile-text);
    background: color-mix(in srgb, var(--profile-card) 85%, transparent);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 13px;
    backdrop-filter: blur(12px);
}

.ob4-public-links {
    display: grid;
    gap: 12px;
}

.ob4-public-link-row {
    position: relative;
    animation-delay: calc(var(--link-index) * 45ms);
}

.ob4-public-link-row .ob-public-link {
    width: 100%;
    padding-right: 72px;
}

.ob4-public-link-more {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: currentColor;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.ob-tpl-header--manga .ob4-public-link-more {
    color: #111521;
    background: rgba(17,21,33,.06);
    border-color: rgba(17,21,33,.14);
}

.ob4-public-link-more:hover,
.ob4-profile-menu:hover {
    background: rgba(255,255,255,.2);
}

.ob4-item-sheet[hidden],
.ob-report-modal[hidden] {
    display: none !important;
}

.ob4-item-sheet {
    position: fixed;
    inset: 0;
    z-index: 13000;
    display: grid;
    place-items: center;
    padding: 18px;
}

.ob4-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 7, 16, .7);
    border: 0;
    backdrop-filter: blur(6px);
}

.ob4-sheet-panel {
    position: relative;
    z-index: 1;
    width: min(470px, 100%);
    padding: 20px;
    color: var(--ob-ink);
    background: var(--ob-surface);
    border: 1px solid var(--ob-border);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0,0,0,.34);
    animation: ob4SheetIn .22s ease both;
}

@keyframes ob4SheetIn {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.ob4-sheet-handle {
    display: none;
    width: 44px;
    height: 4px;
    margin: 0 auto 12px;
    background: var(--ob-border-strong);
    border-radius: 999px;
}

.ob4-sheet-panel > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.ob4-sheet-panel header small,
.ob4-sheet-panel header h2 {
    display: block;
    margin: 0;
}

.ob4-sheet-panel header small {
    color: var(--ob-primary-dark);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ob4-sheet-panel header h2 {
    font-size: 1.3rem;
    letter-spacing: -.03em;
}

.ob4-destination {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 11px;
    padding: 13px;
    margin: 17px 0;
    background: var(--ob-bg-soft);
    border: 1px solid var(--ob-border);
    border-radius: 15px;
}

.ob4-destination > span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--ob-primary-dark);
    background: var(--ob-primary-soft);
    border-radius: 11px;
}

.ob4-destination small,
.ob4-destination strong,
.ob4-destination p {
    display: block;
    margin: 0;
}

.ob4-destination small {
    color: var(--ob-ink-soft);
    font-size: .65rem;
}

.ob4-destination strong {
    overflow: hidden;
    font-size: .82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ob4-destination p {
    overflow-wrap: anywhere;
    color: var(--ob-ink-soft);
    font-size: .65rem;
    line-height: 1.4;
}

.ob4-sheet-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 9px;
}

.ob4-sheet-actions .ob-button {
    width: 100%;
}

.ob4-sheet-actions .ob-button--danger {
    grid-column: 1 / -1;
}

.ob4-report-unavailable {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    color: var(--ob-ink);
    background: var(--ob-bg-soft);
    border: 1px solid var(--ob-border);
    border-radius: 14px;
}

.ob4-report-unavailable p {
    margin: 0;
    color: var(--ob-ink-soft);
    font-size: .78rem;
}

/* New template swatches */
.ob-template-swatch--header_template-galaxy{background:radial-gradient(circle at 20% 30%,#fff 0 2px,transparent 3px),radial-gradient(circle at 75% 18%,#fff 0 1px,transparent 2px),linear-gradient(135deg,#111235,#40206e 55%,#7a48c7);background-size:34px 34px,25px 25px,auto}
.ob-template-swatch--header_template-sunset{background:linear-gradient(145deg,#ffb35c,#ed6b76 52%,#6842a5)}
.ob-template-swatch--header_template-ocean{background:radial-gradient(circle at 70% 20%,rgba(255,255,255,.45),transparent 20%),linear-gradient(145deg,#0a5977,#14a6bd 55%,#9de2dd)}
.ob-template-swatch--header_template-mono{background:linear-gradient(145deg,#0a0a0a,#535353 58%,#f3f3f3)}
.ob-template-swatch--header_template-festival{background:linear-gradient(45deg,#e74e5e 0 25%,#ffd85b 25% 50%,#4556d9 50% 75%,#fff 75%)}

.ob-template-swatch--avatar_template-hex{margin:7px auto;width:55px;height:55px;clip-path:polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%);background:linear-gradient(135deg,#5b67f1,#ffcf52)}
.ob-template-swatch--avatar_template-stamp{margin:7px auto;width:53px;height:53px;background:#fff;border:7px dotted #6c67ef;box-shadow:inset 0 0 0 2px #25295f}
.ob-template-swatch--avatar_template-halo{margin:8px auto;width:51px;height:51px;border-radius:50%;background:#2f3564;box-shadow:0 -10px 0 -6px #ffd85b,0 0 0 4px #fff}
.ob-template-swatch--avatar_template-ticket{margin:8px auto;width:62px;height:48px;border-radius:7px;background:linear-gradient(135deg,#ffda5b,#f38a7d);clip-path:polygon(0 0,100% 0,100% 35%,92% 50%,100% 65%,100% 100%,0 100%,0 65%,8% 50%,0 35%)}
.ob-template-swatch--avatar_template-polaroid{margin:3px auto;width:47px;height:59px;padding:4px 4px 12px;background:#fff;border-radius:3px;box-shadow:0 7px 14px rgba(20,27,55,.25);transform:rotate(3deg)}

.ob-template-swatch--nickname_template-brush:before{content:"Aa";display:grid;place-items:center;height:100%;font-weight:900;font-style:italic;transform:skew(-8deg);text-decoration:underline 5px #ffce55}
.ob-template-swatch--nickname_template-pixel:before{content:"PIX";display:grid;place-items:center;height:100%;font-family:monospace;font-weight:900;letter-spacing:.14em;text-shadow:3px 3px 0 #ffcf52}
.ob-template-swatch--nickname_template-wide:before{content:"WIDE";display:grid;place-items:center;height:100%;font-weight:900;letter-spacing:.24em;transform:scaleX(1.2)}
.ob-template-swatch--nickname_template-tag:before{content:"NAME";display:grid;place-items:center;width:70%;height:55%;margin:14px auto 0;color:#fff;font-weight:900;background:#5b67f1;border-radius:6px}
.ob-template-swatch--nickname_template-shadow:before{content:"POP";display:grid;place-items:center;height:100%;font-weight:900;color:#fff;text-shadow:4px 4px 0 #5b67f1,-2px -2px 0 #ffcf52}

.ob-template-swatch--premium_template-star:before{content:"VIP";display:grid;place-items:center;height:100%;color:#ffd44e;font-size:30px;text-shadow:0 0 12px #ffd44e}
.ob-template-swatch--premium_template-ticket:before{content:"PASS";display:grid;place-items:center;width:72%;height:45%;margin:18px auto;color:#282040;font-size:12px;font-weight:900;background:#ffdb60;clip-path:polygon(0 0,100% 0,100% 35%,92% 50%,100% 65%,100% 100%,0 100%,0 65%,8% 50%,0 35%)}
.ob-template-swatch--premium_template-diamond:before{content:"";display:block;width:34px;height:34px;margin:14px auto;background:linear-gradient(135deg,#e1fbff,#7f78ff);clip-path:polygon(50% 0,100% 38%,78% 100%,22% 100%,0 38%)}
.ob-template-swatch--premium_template-wing:before{content:"V";display:grid;place-items:center;height:100%;color:#fff;font-size:23px;font-weight:900;background:radial-gradient(ellipse at center,#7165e8 0 25%,transparent 26%)}
.ob-template-swatch--premium_template-seal:before{content:"VIP";display:grid;place-items:center;width:44px;height:44px;margin:10px auto;color:#fff;font-size:11px;font-weight:900;background:#713f98;border:4px double #ffda65;border-radius:50%;transform:rotate(-8deg)}

.ob-template-swatch--link_template-comic{border:3px solid #111;background:#fff;box-shadow:5px 5px 0 #ffd64e}
.ob-template-swatch--link_template-pill{height:38px;margin-top:13px;border-radius:999px;background:linear-gradient(90deg,#5b67f1,#9a62ef)}
.ob-template-swatch--link_template-ticket{background:#ffdb64;clip-path:polygon(0 0,100% 0,100% 35%,96% 50%,100% 65%,100% 100%,0 100%,0 65%,4% 50%,0 35%)}
.ob-template-swatch--link_template-neon{background:#080b1c;border:2px solid #65e8ff;box-shadow:inset 0 0 15px rgba(101,232,255,.35),0 0 8px rgba(101,232,255,.35)}
.ob-template-swatch--link_template-paper{background:#fff8d9;border-radius:3px;box-shadow:0 5px 0 #d5c893;transform:rotate(-1deg)}

/* New public/preview header templates */
.ob-profile-page.ob-tpl-header--galaxy,.ob-profile-preview.ob-tpl-header--galaxy{background:radial-gradient(circle at 20% 20%,rgba(255,255,255,.8) 0 1px,transparent 2px),radial-gradient(circle at 78% 30%,rgba(255,255,255,.75) 0 1px,transparent 2px),linear-gradient(145deg,#080b25,#2d1554 54%,#5d2f91);background-size:48px 48px,67px 67px,auto}
.ob-profile-page.ob-tpl-header--sunset,.ob-profile-preview.ob-tpl-header--sunset{background:radial-gradient(circle at 80% 12%,rgba(255,224,139,.35),transparent 22%),linear-gradient(145deg,#482655,#c05272 58%,#f3a65f)}
.ob-profile-page.ob-tpl-header--ocean,.ob-profile-preview.ob-tpl-header--ocean{background:radial-gradient(circle at 76% 10%,rgba(255,255,255,.23),transparent 24%),linear-gradient(145deg,#063248,#087b96 58%,#4bc5c8)}
.ob-profile-page.ob-tpl-header--mono,.ob-profile-preview.ob-tpl-header--mono{--profile-accent:#fff;--profile-accent-2:#9d9d9d;background:linear-gradient(145deg,#050505,#2e2e2e 62%,#5d5d5d)}
.ob-profile-page.ob-tpl-header--festival,.ob-profile-preview.ob-tpl-header--festival{background:linear-gradient(135deg,#8a2438,#2b326e 52%,#d28c2e)}

/* New avatar templates */
.ob-tpl-avatar--hex .ob-public-avatar-wrap,.ob-tpl-avatar--hex .ob-profile-preview__avatar{clip-path:polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%);border-radius:0;background:var(--profile-accent);padding:5px}.ob-tpl-avatar--hex .ob-public-avatar,.ob-tpl-avatar--hex .ob-profile-preview__avatar>*{clip-path:inherit;border-radius:0}
.ob-tpl-avatar--stamp .ob-public-avatar-wrap,.ob-tpl-avatar--stamp .ob-profile-preview__avatar{padding:7px;background:#fff;border:5px dotted var(--profile-accent);border-radius:8px}.ob-tpl-avatar--stamp .ob-public-avatar,.ob-tpl-avatar--stamp .ob-profile-preview__avatar>*{border-radius:4px}
.ob-tpl-avatar--halo .ob-public-avatar-wrap,.ob-tpl-avatar--halo .ob-profile-preview__avatar{border-radius:50%;box-shadow:0 -18px 0 -11px var(--profile-accent-2),0 0 0 4px #fff}.ob-tpl-avatar--halo .ob-public-avatar,.ob-tpl-avatar--halo .ob-profile-preview__avatar>*{border-radius:50%}
.ob-tpl-avatar--ticket .ob-public-avatar-wrap,.ob-tpl-avatar--ticket .ob-profile-preview__avatar{width:132px!important;height:104px!important;padding:8px;background:var(--profile-accent-2);clip-path:polygon(0 0,100% 0,100% 35%,94% 50%,100% 65%,100% 100%,0 100%,0 65%,6% 50%,0 35%)}.ob-tpl-avatar--ticket .ob-public-avatar,.ob-tpl-avatar--ticket .ob-profile-preview__avatar>*{border-radius:8px}
.ob-tpl-avatar--polaroid .ob-public-avatar-wrap,.ob-tpl-avatar--polaroid .ob-profile-preview__avatar{height:137px!important;padding:7px 7px 22px;background:#fff;border-radius:4px;box-shadow:0 14px 30px rgba(0,0,0,.25);transform:rotate(3deg)}.ob-tpl-avatar--polaroid .ob-public-avatar,.ob-tpl-avatar--polaroid .ob-profile-preview__avatar>*{border-radius:2px}

/* New nickname templates */
.ob-tpl-nickname--brush .ob-public-card__title h1,.ob-tpl-nickname--brush .ob-profile-preview__name strong{font-style:italic;transform:skew(-5deg);text-decoration:underline 6px color-mix(in srgb,var(--profile-accent-2) 78%,transparent);text-underline-offset:3px}
.ob-tpl-nickname--pixel .ob-public-card__title h1,.ob-tpl-nickname--pixel .ob-profile-preview__name strong{font-family:ui-monospace,monospace;letter-spacing:.08em;text-shadow:3px 3px 0 color-mix(in srgb,var(--profile-accent) 60%,#000)}
.ob-tpl-nickname--wide .ob-public-card__title h1,.ob-tpl-nickname--wide .ob-profile-preview__name strong{letter-spacing:.18em;transform:scaleX(1.08)}
.ob-tpl-nickname--tag .ob-public-card__title h1,.ob-tpl-nickname--tag .ob-profile-preview__name strong{padding:7px 14px;color:#fff;background:var(--profile-accent);border-radius:7px;box-shadow:4px 4px 0 var(--profile-accent-2)}
.ob-tpl-nickname--shadow .ob-public-card__title h1,.ob-tpl-nickname--shadow .ob-profile-preview__name strong{text-shadow:4px 4px 0 color-mix(in srgb,var(--profile-accent) 70%,#000),-2px -2px 0 var(--profile-accent-2)}

/* New premium templates */
.ob-tpl-premium--star .ob-premium-mark,.ob-tpl-premium--star .ob-preview-premium{color:#251d00;background:#ffd74f;clip-path:polygon(50% 0,61% 35%,98% 35%,68% 56%,79% 92%,50% 70%,21% 92%,32% 56%,2% 35%,39% 35%)}
.ob-tpl-premium--ticket .ob-premium-mark,.ob-tpl-premium--ticket .ob-preview-premium{color:#2b2300;background:#ffdb62;border-radius:3px;clip-path:polygon(0 0,100% 0,100% 35%,92% 50%,100% 65%,100% 100%,0 100%,0 65%,8% 50%,0 35%)}
.ob-tpl-premium--diamond .ob-premium-mark,.ob-tpl-premium--diamond .ob-preview-premium{color:#21304d;background:linear-gradient(135deg,#e3fbff,#9b86ff);clip-path:polygon(50% 0,100% 38%,78% 100%,22% 100%,0 38%)}
.ob-tpl-premium--wing .ob-premium-mark,.ob-tpl-premium--wing .ob-preview-premium{color:#fff;background:linear-gradient(135deg,#5e54d9,#9f68ea);border-radius:50% 50% 45% 45%}
.ob-tpl-premium--seal .ob-premium-mark,.ob-tpl-premium--seal .ob-preview-premium{color:#fff;background:#713f98;border:3px double #ffdc6a;border-radius:50%;transform:rotate(-8deg)}

/* New link templates */
.ob-tpl-link--comic .ob-public-link,.ob-tpl-link--comic .ob-profile-preview__links i{color:#10131f;background:#fff;border:3px solid #10131f;border-radius:3px;box-shadow:6px 6px 0 var(--profile-accent-2)}
.ob-tpl-link--pill .ob-public-link,.ob-tpl-link--pill .ob-profile-preview__links i{color:#fff;background:linear-gradient(90deg,var(--profile-accent),var(--profile-accent-2));border:0;border-radius:999px;box-shadow:0 10px 24px color-mix(in srgb,var(--profile-accent) 25%,transparent)}
.ob-tpl-link--ticket .ob-public-link,.ob-tpl-link--ticket .ob-profile-preview__links i{color:#201900;background:var(--profile-accent-2);border:0;border-radius:0;clip-path:polygon(0 0,100% 0,100% 35%,98% 50%,100% 65%,100% 100%,0 100%,0 65%,2% 50%,0 35%)}
.ob-tpl-link--neon .ob-public-link,.ob-tpl-link--neon .ob-profile-preview__links i{color:#fff;background:rgba(4,7,20,.5);border:2px solid var(--profile-accent);border-radius:12px;box-shadow:inset 0 0 18px color-mix(in srgb,var(--profile-accent) 22%,transparent),0 0 15px color-mix(in srgb,var(--profile-accent) 28%,transparent)}
.ob-tpl-link--paper .ob-public-link,.ob-tpl-link--paper .ob-profile-preview__links i{color:#27231b;background:#fff8d8;border:1px solid #e2d49f;border-radius:4px;box-shadow:0 6px 0 #c8bb88;transform:rotate(-.35deg)}

@media (max-width: 1120px) {
    .ob4-template-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .ob4-dashboard-workspace { grid-template-columns: minmax(0, 1fr) 330px; }
}

@media (max-width: 899px) {
    .ob-dashboard-page { padding-top: 18px; }
    .ob4-dashboard-workspace { grid-template-columns: 1fr; }
    .ob4-preview-column { position: static; display: none; }
    .ob4-preview-column.is-mobile-active { display: block; animation: ob4PanelIn .24s ease both; }
    .ob4-preview-column.is-desktop-visible { display: none; }
    .ob4-dashboard[data-active-panel="preview"] .ob4-dashboard-panels { display: none; }
    .ob4-dashboard[data-active-panel="preview"] .ob4-preview-column { display: block; }
    .ob4-dashboard-nav button span { display: none; }
    .ob4-dashboard-nav button.is-active span { display: inline; }
    .ob4-dashboard-nav button { padding-inline: 8px; }
}

@media (max-width: 760px) {
    body.ob-has-mobile-dock { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
    .ob-site-header { height: 64px; }
    .ob-site-header .ob-container { width: min(calc(100% - 24px), var(--ob-container)); }
    .ob-nav--desktop { display: none !important; }
    .ob-site-header--v4 .ob-header-mobile-actions { display: flex; }
    .ob-site-header--v4 .ob-brand__text { display: inline; }
    .ob-site-header--v4 .ob-brand__mark { width: 35px; height: 35px; }
    .ob-mobile-dock {
        position: fixed;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 10px;
        z-index: 11000;
        display: grid;
        grid-template-columns: repeat(5, minmax(0,1fr));
        gap: 4px;
        min-height: 62px;
        padding: 6px;
        color: var(--ob-ink-soft);
        background: color-mix(in srgb, var(--ob-surface) 91%, transparent);
        border: 1px solid var(--ob-border);
        border-radius: 20px;
        box-shadow: 0 18px 55px rgba(10,16,38,.24);
        backdrop-filter: blur(18px);
    }
    .ob-mobile-dock a,
    .ob-mobile-dock button {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        flex-direction: column;
        gap: 3px;
        padding: 4px 2px;
        color: inherit;
        font-size: .58rem;
        font-weight: 800;
        background: transparent;
        border: 0;
        border-radius: 14px;
    }
    .ob-mobile-dock a.is-current {
        color: #fff;
        background: linear-gradient(135deg,var(--ob-primary),var(--ob-violet));
    }
    .ob-mobile-dock .ob-icon { width: 20px; height: 20px; }
    .ob-site-footer { padding-bottom: 90px; }
    .ob-dashboard-view .ob-site-footer { display: none; }
    .ob-dashboard-page > .ob-container { width: min(calc(100% - 16px), 1380px); }
    .ob4-dashboard-hero { grid-template-columns: 1fr; gap: 16px; padding: 20px; border-radius: 22px; }
    .ob4-dashboard-hero__identity { align-items: flex-start; }
    .ob4-dashboard-hero__identity img { width: 58px; height: 58px; flex-basis: 58px; border-radius: 17px; }
    .ob4-dashboard-hero p { font-size: .78rem; }
    .ob4-dashboard-hero__tools { justify-content: flex-start; }
    .ob4-status-pill { flex: 1 1 auto; }
    .ob4-dashboard-nav { position: sticky; top: 68px; z-index: 900; margin: 10px 0 12px; border-radius: 15px; }
    .ob4-dashboard-nav button { min-height: 44px; }
    .ob4-dashboard-nav button span { font-size: .65rem; }
    .ob4-panel { padding: 18px; border-radius: 20px; }
    .ob4-form { grid-template-columns: 1fr; gap: 13px; }
    .ob4-field--wide { grid-column: auto; }
    .ob4-panel-head--split { align-items: flex-start; }
    .ob4-template-category-nav { grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 5px; }
    .ob4-template-category-nav button { min-height: 44px; padding: 0; }
    .ob4-template-category-nav button span { display: none; }
    .ob4-template-category-nav button.is-active span { display: none; }
    .ob4-template-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .ob4-template-card { min-height: 132px; }
    .ob4-premium-note { grid-template-columns: 34px minmax(0,1fr); }
    .ob4-premium-note .ob-button { grid-column: 1 / -1; width: 100%; }
    .ob4-link-item > summary { grid-template-columns: 34px minmax(0,1fr) 18px; }
    .ob4-link-state { display: none; }
    .ob4-link-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .ob4-link-actions .ob-button { width: 100%; }
    .ob4-preview-column .ob-profile-preview { min-height: 0; }
    .ob4-account-summary strong { max-width: 58%; }
    .ob4-notification-panel { width: 100%; padding: 17px 14px calc(90px + env(safe-area-inset-bottom)); }
    .ob4-item-sheet { align-items: end; padding: 0; }
    .ob4-sheet-panel { width: 100%; padding: 18px 16px calc(20px + env(safe-area-inset-bottom)); border-radius: 24px 24px 0 0; animation-name: ob4SheetMobileIn; }
    .ob4-sheet-handle { display: block; }
    @keyframes ob4SheetMobileIn { from { transform: translateY(100%); } to { transform: translateY(0); } }
    .ob4-profile-menu { top: 14px; right: 14px; }
    .ob4-public-link-row .ob-public-link { padding-right: 64px; }
    .ob4-public-link-more { right: 8px; width: 40px; height: 40px; }
}

@media (max-width: 420px) {
    .ob4-dashboard-hero__identity { gap: 12px; }
    .ob4-dashboard-hero h1 { font-size: 1.35rem; }
    .ob4-dashboard-hero__tools { display: grid; grid-template-columns: 1fr 44px 44px; width: 100%; }
    .ob4-hero-icon { width: 44px; height: 44px; }
    .ob4-dashboard-nav { gap: 3px; padding: 5px; }
    .ob4-dashboard-nav button { gap: 4px; }
    .ob4-template-grid { grid-template-columns: 1fr 1fr; }
    .ob4-template-card > span:last-of-type small { display: none; }
    .ob4-template-card { min-height: 112px; }
    .ob4-template-swatch { height: 56px; }
    .ob4-sheet-actions { grid-template-columns: 1fr; }
    .ob4-sheet-actions .ob-button--danger { grid-column: auto; }
}

/* =========================================================
   Otakubioku-THM v0.4.1 — focused visual hotfix
   ========================================================= */

/* Direct badges in panel headers must never inherit the square icon slot. */
.ob4-panel-head > .ob4-access-badge,
.ob4-panel-head > .ob-count-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: max-content;
    height: auto;
    min-height: 34px;
    flex: 0 0 auto;
    padding: 0 11px;
    white-space: nowrap;
    word-break: normal;
    line-height: 1.1;
    border-radius: 999px;
}

.ob4-panel-head > .ob4-access-badge .ob-icon {
    width: 15px;
    height: 15px;
}

/* Keep the Premium emblem proportional beside long/capsule nicknames. */
.ob-public-card__title,
.ob-profile-preview__name {
    min-width: 0;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.ob-premium-mark,
.ob-preview-premium {
    display: inline-grid;
    place-items: center;
    width: 30px;
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    min-height: 30px;
    flex: 0 0 30px;
    padding: 0;
    overflow: visible;
    line-height: 1;
    aspect-ratio: 1 / 1;
}

.ob-premium-mark .ob-icon,
.ob-preview-premium .ob-icon {
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
}

.ob-tpl-premium--ribbon .ob-premium-mark {
    width: auto;
    min-width: 72px;
    max-width: none;
    flex-basis: auto;
    padding-inline: 10px;
    aspect-ratio: auto;
}

/* Product/Premium pages use theme surfaces instead of fixed white cards. */
.ob-premium-benefits article,
.ob-product-card,
.ob-support-option {
    color: var(--ob-ink);
    background: var(--ob-surface);
    border-color: var(--ob-border);
}

.ob-product-card .obpg-purchase-form,
.ob-support-option .obpg-purchase-form,
.ob-product-note {
    color: var(--ob-ink);
    background: var(--ob-surface-soft);
    border-color: var(--ob-border);
}

.ob-product-card .obpg-field label,
.ob-support-option .obpg-field label,
.ob-product-card h2,
.ob-support-option h2,
.ob-premium-benefits h2,
.ob-product-note strong {
    color: var(--ob-ink);
}

.ob-product-card .obpg-plan-summary,
.ob-support-option .obpg-plan-summary {
    color: var(--ob-ink);
    background: var(--ob-surface);
    border-color: var(--ob-border);
}

.ob-product-note,
.ob-product-note p {
    color: var(--ob-ink-soft);
}

html[data-ob-theme="dark"] .ob-product-hero {
    color: var(--ob-ink);
    background:
        radial-gradient(circle at 20% 10%, rgba(138,92,246,.22), transparent 31%),
        radial-gradient(circle at 80% 0%, rgba(91,103,241,.23), transparent 33%),
        #0c1120;
}

html[data-ob-theme="dark"] .ob-product-hero--support {
    background:
        radial-gradient(circle at 20% 10%, rgba(217,75,100,.18), transparent 31%),
        radial-gradient(circle at 80% 0%, rgba(255,216,77,.12), transparent 33%),
        #0c1120;
}

html[data-ob-theme="dark"] .ob-product-page,
html[data-ob-theme="dark"] .ob-product-content {
    color: var(--ob-ink);
    background: var(--ob-bg);
}

html[data-ob-theme="dark"] .ob-product-card__head > span,
html[data-ob-theme="dark"] .ob-auth-switch a,
html[data-ob-theme="dark"] .ob-link-button,
html[data-ob-theme="dark"] .ob4-panel-head small,
html[data-ob-theme="dark"] .ob4-preview-head small {
    color: #9da7ff;
}

html[data-ob-theme="dark"] .ob-product-card input,
html[data-ob-theme="dark"] .ob-product-card textarea,
html[data-ob-theme="dark"] .ob-product-card select,
html[data-ob-theme="dark"] .ob-support-option input,
html[data-ob-theme="dark"] .ob-support-option textarea,
html[data-ob-theme="dark"] .ob-support-option select {
    color: var(--ob-ink);
    background: #0f1628;
    border-color: var(--ob-border-strong);
}

html[data-ob-theme="dark"] .ob-product-card input::placeholder,
html[data-ob-theme="dark"] .ob-support-option input::placeholder {
    color: #77819b;
}

@media (max-width: 520px) {
    .ob4-panel-head--split {
        align-items: center;
        gap: 10px;
    }

    .ob4-panel-head__title {
        min-width: 0;
    }

    .ob4-panel-head__title > div {
        min-width: 0;
    }

    .ob4-panel-head > .ob4-access-badge,
    .ob4-panel-head > .ob-count-pill {
        min-height: 32px;
        padding-inline: 9px;
        font-size: .68rem;
    }
}

/* Otakubio Creator v0.5.0 */
.ob4-dashboard-nav{overflow-x:auto;scrollbar-width:thin;justify-content:flex-start}.ob4-dashboard-nav>button{flex:0 0 auto;min-width:96px}.ob4-dashboard-nav .ob4-notification-trigger{margin-left:auto}
.ob-profile-preview__handle{display:inline-flex!important;align-items:center;justify-content:center;gap:6px}.ob-preview-premium,.ob-premium-check{display:inline-grid;place-items:center;width:20px;height:20px;border-radius:50%;background:#1683ff;color:#fff;box-shadow:0 4px 14px rgba(22,131,255,.34);vertical-align:middle}.ob-preview-premium .ob-icon,.ob-premium-check .ob-icon{width:13px;height:13px;stroke-width:2.8}.ob-preview-premium.is-preview-only{opacity:.48;filter:grayscale(.25)}.ob-public-handle{display:flex;align-items:center;justify-content:center;gap:7px}

.ob-creator-stat-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:0 0 18px}.ob-creator-stat-grid article{display:grid;gap:7px;padding:18px;border:1px solid var(--ob-border,#e5e7ef);border-radius:18px;background:var(--ob-surface,#fff);box-shadow:0 9px 28px rgba(29,39,70,.06)}.ob-creator-stat-grid span{font-size:.78rem;font-weight:800;color:var(--ob-muted,#727b8d)}.ob-creator-stat-grid strong{font-size:clamp(1.1rem,2.2vw,1.55rem);overflow-wrap:anywhere}.ob-creator-stat-grid small{color:var(--ob-muted,#727b8d)}
.ob-creator-chart-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-bottom:18px}.ob-creator-chart{min-width:0;padding:18px;border:1px solid var(--ob-border,#e5e7ef);border-radius:20px;background:var(--ob-surface,#fff)}.ob-creator-chart header{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:16px}.ob-creator-chart header small{display:block;color:var(--ob-muted,#727b8d);font-weight:800;text-transform:uppercase;letter-spacing:.08em}.ob-creator-chart header h3{margin:4px 0 0}.ob-creator-chart header>.ob-icon{width:24px;height:24px;color:#6b63e8}.ob-creator-bars{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));align-items:end;gap:7px;height:176px}.ob-creator-chart-grid article:nth-child(2) .ob-creator-bars{grid-template-columns:repeat(6,minmax(0,1fr))}.ob-creator-bars>div{display:grid;grid-template-rows:1fr auto;align-items:end;gap:8px;height:100%;min-width:0;text-align:center}.ob-creator-bars i{display:block;width:min(30px,78%);height:var(--bar-height);min-height:5px;margin-inline:auto;border-radius:8px 8px 3px 3px;background:linear-gradient(180deg,#7a72ef,#4c49bd);box-shadow:0 8px 18px rgba(76,73,189,.22)}.ob-creator-bars span{font-size:.65rem;color:var(--ob-muted,#727b8d);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ob-creator-recent{padding:18px;border:1px solid var(--ob-border,#e5e7ef);border-radius:20px;background:var(--ob-surface,#fff)}.ob-creator-recent>article{display:grid;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;gap:12px;padding:12px 0;border-top:1px solid var(--ob-border,#e5e7ef)}.ob-creator-transaction-icon{display:grid;place-items:center;width:40px;height:40px;border-radius:13px;background:#f0efff;color:#5f58d8}.ob-creator-recent article>div{display:grid;gap:3px}.ob-creator-recent article>div:last-child{text-align:right}.ob-creator-recent small{color:var(--ob-muted,#727b8d)}.ob-creator-fee-note{margin-bottom:18px}

.ob-creator-public,.ob-creator-products{display:grid;gap:16px;margin-top:20px;padding:20px;border:1px solid color-mix(in srgb,var(--profile-accent) 28%,rgba(255,255,255,.18));border-radius:22px;background:color-mix(in srgb,var(--profile-card) 88%,transparent);color:var(--profile-text);text-align:left;backdrop-filter:blur(14px)}.ob-creator-public>header,.ob-creator-products>header{display:flex;align-items:center;gap:12px}.ob-creator-public>header>span,.ob-creator-products>header>span{display:grid;place-items:center;width:42px;height:42px;border-radius:14px;background:var(--profile-accent);color:#fff}.ob-creator-public header small,.ob-creator-products header small{color:var(--profile-muted);font-weight:800;text-transform:uppercase;letter-spacing:.08em}.ob-creator-public h2,.ob-creator-products h2{margin:2px 0 0;font-size:1.15rem}.ob-creator-public>p{margin:0;color:var(--profile-muted);line-height:1.6}
.ob-creator-target{display:grid;gap:8px;padding:14px;border-radius:16px;background:color-mix(in srgb,var(--profile-accent) 10%,transparent)}.ob-creator-target>div{display:flex;align-items:center;justify-content:space-between;gap:10px}.ob-creator-target>div span,.ob-creator-target small{color:var(--profile-muted);font-size:.78rem}.ob-creator-target>i{display:block;height:9px;overflow:hidden;border-radius:999px;background:color-mix(in srgb,var(--profile-muted) 18%,transparent)}.ob-creator-target>i>b{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--profile-accent),var(--profile-accent-2))}
.ob-creator-public-form,.ob-creator-product-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px}.ob-creator-public-form label,.ob-creator-product-form label{display:grid;gap:6px;min-width:0}.ob-creator-public-form label>span,.ob-creator-product-form label>span{font-size:.78rem;font-weight:800;color:var(--profile-muted)}.ob-creator-public-form input,.ob-creator-public-form textarea,.ob-creator-product-form input{width:100%;min-width:0;padding:12px 13px;border:1px solid color-mix(in srgb,var(--profile-muted) 25%,transparent);border-radius:13px;background:color-mix(in srgb,var(--profile-card) 86%,transparent);color:var(--profile-text)}.ob-creator-public-form textarea{resize:vertical}.ob-creator-public-form .ob-creator-message,.ob-creator-public-form .ob-button,.ob-creator-product-form .ob-button{grid-column:1/-1}.ob-creator-anonymous{display:flex!important;align-items:center!important;gap:8px!important}.ob-creator-anonymous input{width:auto}.ob-creator-public-form small,.ob-creator-product-form small{color:var(--profile-muted);font-size:.72rem}
.ob-creator-product-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.ob-creator-product-grid>article{display:grid;overflow:hidden;border:1px solid color-mix(in srgb,var(--profile-muted) 22%,transparent);border-radius:17px;background:color-mix(in srgb,var(--profile-card) 94%,transparent)}.ob-creator-product-grid article>img{width:100%;aspect-ratio:16/9;object-fit:cover}.ob-creator-product-grid article>div{display:grid;gap:8px;padding:14px}.ob-creator-product-grid h3,.ob-creator-product-grid p{margin:0}.ob-creator-product-grid p{font-size:.84rem;line-height:1.5;color:var(--profile-muted)}.ob-creator-product-grid details{border-top:1px solid color-mix(in srgb,var(--profile-muted) 18%,transparent)}.ob-creator-product-grid summary{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px;cursor:pointer;font-weight:900;color:var(--profile-accent)}.ob-creator-product-form{padding:14px}.ob-creator-product-form label{grid-column:1/-1}

.ob-platform-stats{position:relative;z-index:2;padding:18px 0;background:#fff;border-top:1px solid #eceef5;border-bottom:1px solid #eceef5}.ob-platform-stats .ob-container{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.ob-platform-stats article{display:flex;align-items:center;gap:12px;padding:14px;border-radius:16px;background:#f7f8fc}.ob-platform-stats article>span{display:grid;place-items:center;width:42px;height:42px;border-radius:13px;background:#e9e7ff;color:#5e57d7}.ob-platform-stats article div{display:grid}.ob-platform-stats strong{font-size:1.15rem}.ob-platform-stats small{color:#6d7585}

/* Additional Premium component styles */
.ob-profile-page.ob-tpl-header--cyber,.ob-profile-preview.ob-tpl-header--cyber{--profile-accent:#28e7ff;--profile-accent-2:#ff4dd8;background-color:#030817;background-image:linear-gradient(rgba(40,231,255,.11) 1px,transparent 1px),linear-gradient(90deg,rgba(255,77,216,.1) 1px,transparent 1px),radial-gradient(circle at 50% 0,rgba(89,49,255,.4),transparent 45%);background-size:36px 36px,36px 36px,auto}.ob-profile-page.ob-tpl-header--pastel,.ob-profile-preview.ob-tpl-header--pastel{--profile-bg:#8775cf;--profile-bg-2:#ef9fc6;--profile-accent:#7658d8;--profile-accent-2:#ffd36c;background:radial-gradient(circle at 15% 10%,rgba(255,255,255,.42),transparent 30%),linear-gradient(145deg,#8f82dc,#efa7c9 58%,#ffd9aa)}.ob-profile-page.ob-tpl-header--shrine,.ob-profile-preview.ob-tpl-header--shrine{--profile-accent:#e74b55;--profile-accent-2:#f2c66d;background:radial-gradient(circle at 50% 12%,rgba(238,64,76,.28),transparent 28%),linear-gradient(145deg,#100d18,#401524 62%,#811f2b)}.ob-profile-page.ob-tpl-header--mecha,.ob-profile-preview.ob-tpl-header--mecha{--profile-accent:#4fc9ff;--profile-accent-2:#ffcb4a;background:linear-gradient(120deg,transparent 0 45%,rgba(79,201,255,.14) 45% 47%,transparent 47% 100%),linear-gradient(145deg,#07121c,#173a4b)}.ob-profile-page.ob-tpl-header--midnight,.ob-profile-preview.ob-tpl-header--midnight{--profile-accent:#ab73ff;--profile-accent-2:#5bd4ff;background:radial-gradient(circle at 75% 10%,rgba(168,103,255,.3),transparent 28%),linear-gradient(155deg,#02030a,#171124 70%,#27143f)}
.ob-tpl-avatar--diamond .ob-public-avatar-wrap,.ob-tpl-avatar--diamond .ob-profile-preview__avatar{clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%);border-radius:0;padding:5px;background:linear-gradient(135deg,var(--profile-accent),var(--profile-accent-2))}.ob-tpl-avatar--diamond .ob-public-avatar,.ob-tpl-avatar--diamond .ob-profile-preview__avatar>*{clip-path:inherit;border-radius:0}.ob-tpl-avatar--manga .ob-public-avatar-wrap,.ob-tpl-avatar--manga .ob-profile-preview__avatar{padding:6px;border:4px solid #111;border-radius:3px;background:#fff;box-shadow:7px 7px 0 var(--profile-accent-2);transform:rotate(-2deg)}.ob-tpl-avatar--orbit .ob-public-avatar-wrap,.ob-tpl-avatar--orbit .ob-profile-preview__avatar{border-radius:50%;box-shadow:0 0 0 3px #fff,0 0 0 7px var(--profile-accent),0 0 0 12px color-mix(in srgb,var(--profile-accent-2) 45%,transparent)}.ob-tpl-avatar--orbit .ob-public-avatar,.ob-tpl-avatar--orbit .ob-profile-preview__avatar>*{border-radius:50%}.ob-tpl-avatar--badge .ob-public-avatar-wrap,.ob-tpl-avatar--badge .ob-profile-preview__avatar{border-radius:34% 34% 50% 50%;padding:5px;background:linear-gradient(145deg,var(--profile-accent),var(--profile-accent-2));box-shadow:0 12px 30px rgba(0,0,0,.2)}.ob-tpl-avatar--badge .ob-public-avatar,.ob-tpl-avatar--badge .ob-profile-preview__avatar>*{border-radius:30% 30% 48% 48%}.ob-tpl-avatar--square .ob-public-avatar-wrap,.ob-tpl-avatar--square .ob-profile-preview__avatar{border-radius:5px;border:3px solid var(--profile-accent);box-shadow:5px 5px 0 var(--profile-accent-2)}.ob-tpl-avatar--square .ob-public-avatar,.ob-tpl-avatar--square .ob-profile-preview__avatar>*{border-radius:2px}
.ob-tpl-nickname--neon .ob-public-card__title h1,.ob-tpl-nickname--neon .ob-profile-preview__name strong{color:#fff;text-shadow:0 0 8px var(--profile-accent),0 0 20px var(--profile-accent)}.ob-tpl-nickname--serif .ob-public-card__title h1,.ob-tpl-nickname--serif .ob-profile-preview__name strong{font-family:Georgia,'Times New Roman',serif;font-weight:700;letter-spacing:.02em}.ob-tpl-nickname--glitch .ob-public-card__title h1,.ob-tpl-nickname--glitch .ob-profile-preview__name strong{text-shadow:2px 0 var(--profile-accent),-2px 0 var(--profile-accent-2);letter-spacing:.06em}.ob-tpl-nickname--sticker .ob-public-card__title h1,.ob-tpl-nickname--sticker .ob-profile-preview__name strong{padding:5px 12px;border-radius:8px;background:#fff;color:#171923;box-shadow:4px 4px 0 var(--profile-accent-2);transform:rotate(-1deg)}.ob-tpl-nickname--elegant .ob-public-card__title h1,.ob-tpl-nickname--elegant .ob-profile-preview__name strong{font-weight:500;letter-spacing:.1em;text-transform:uppercase}

/* Pilihan Premium lama tetap kompatibel; semua varian tetap berupa ceklis biru di samping @username. */
.ob-tpl-premium--crown .ob-premium-check,.ob-tpl-premium--crown .ob-preview-premium{background:linear-gradient(135deg,#1683ff,#54b8ff)}.ob-tpl-premium--verify .ob-premium-check,.ob-tpl-premium--verify .ob-preview-premium{background:#1683ff}.ob-tpl-premium--crystal .ob-premium-check,.ob-tpl-premium--crystal .ob-preview-premium{background:linear-gradient(135deg,#70e4ff,#456dff)}.ob-tpl-premium--ribbon .ob-premium-check,.ob-tpl-premium--ribbon .ob-preview-premium{border-radius:5px;background:linear-gradient(135deg,#2ca7ff,#315ee8)}.ob-tpl-premium--minimal .ob-premium-check,.ob-tpl-premium--minimal .ob-preview-premium{background:#1683ff;box-shadow:none}.ob-tpl-premium--star .ob-premium-check,.ob-tpl-premium--star .ob-preview-premium{background:linear-gradient(135deg,#4bc9ff,#1677ed)}.ob-tpl-premium--ticket .ob-premium-check,.ob-tpl-premium--ticket .ob-preview-premium{border-radius:5px;background:#245fe1}.ob-tpl-premium--diamond .ob-premium-check,.ob-tpl-premium--diamond .ob-preview-premium{border-radius:5px;transform:rotate(45deg);background:linear-gradient(135deg,#5edbff,#285dea)}.ob-tpl-premium--diamond .ob-premium-check svg,.ob-tpl-premium--diamond .ob-preview-premium svg{transform:rotate(-45deg)}.ob-tpl-premium--wing .ob-premium-check,.ob-tpl-premium--wing .ob-preview-premium{background:linear-gradient(135deg,#66cfff,#3868ed);box-shadow:-4px 0 0 -2px rgba(102,207,255,.55),4px 0 0 -2px rgba(56,104,237,.55)}.ob-tpl-premium--seal .ob-premium-check,.ob-tpl-premium--seal .ob-preview-premium{background:#225bc7;box-shadow:inset 0 0 0 2px rgba(255,255,255,.35)}
.ob-tpl-premium--bluecheck .ob-premium-check,.ob-tpl-premium--bluecheck .ob-preview-premium{background:#1683ff}.ob-tpl-premium--comet .ob-premium-check,.ob-tpl-premium--comet .ob-preview-premium{background:linear-gradient(135deg,#50d7ff,#3567f2);box-shadow:-6px 4px 0 -4px rgba(80,215,255,.45)}.ob-tpl-premium--orbit .ob-premium-check,.ob-tpl-premium--orbit .ob-preview-premium{background:#2866e8;box-shadow:0 0 0 3px color-mix(in srgb,#2866e8 35%,transparent)}.ob-tpl-premium--crest .ob-premium-check,.ob-tpl-premium--crest .ob-preview-premium{border-radius:5px;background:linear-gradient(135deg,#47bfff,#244fd0)}.ob-tpl-premium--pulse .ob-premium-check,.ob-tpl-premium--pulse .ob-preview-premium{background:#1683ff;animation:ob-premium-pulse 2.4s ease-in-out infinite}@keyframes ob-premium-pulse{50%{box-shadow:0 0 0 6px rgba(22,131,255,0)}}
.ob-tpl-link--minimal .ob-public-link,.ob-tpl-link--minimal .ob-profile-preview__links i{border:1px solid color-mix(in srgb,var(--profile-text) 28%,transparent);border-radius:10px;background:transparent;box-shadow:none}.ob-tpl-link--gradient .ob-public-link,.ob-tpl-link--gradient .ob-profile-preview__links i{border:0;border-radius:17px;background:linear-gradient(105deg,var(--profile-accent),var(--profile-accent-2));color:#fff}.ob-tpl-link--darkcard .ob-public-link,.ob-tpl-link--darkcard .ob-profile-preview__links i{border:1px solid rgba(255,255,255,.12);border-radius:14px;background:#101522;color:#fff;box-shadow:0 12px 24px rgba(0,0,0,.22)}.ob-tpl-link--sticker .ob-public-link,.ob-tpl-link--sticker .ob-profile-preview__links i{border:3px solid #171923;border-radius:10px;background:var(--profile-accent-2);color:#171923;box-shadow:5px 5px 0 #171923;transform:rotate(-.25deg)}.ob-tpl-link--split .ob-public-link,.ob-tpl-link--split .ob-profile-preview__links i{border:0;border-left:7px solid var(--profile-accent);border-radius:8px;background:color-mix(in srgb,var(--profile-card) 82%,#fff);color:var(--profile-text);box-shadow:0 8px 20px rgba(0,0,0,.14)}

.ob-template-swatch--header_template-cyber{background:linear-gradient(135deg,#061120,#2d1460,#ff4dd8)}.ob-template-swatch--header_template-pastel{background:linear-gradient(135deg,#8f82dc,#efa7c9,#ffd9aa)}.ob-template-swatch--header_template-shrine{background:linear-gradient(135deg,#100d18,#811f2b,#f2c66d)}.ob-template-swatch--header_template-mecha{background:linear-gradient(135deg,#07121c,#26758e,#ffcb4a)}.ob-template-swatch--header_template-midnight{background:linear-gradient(135deg,#02030a,#27143f,#ab73ff)}.ob-template-swatch--avatar_template-diamond{clip-path:polygon(50% 0,100% 50%,50% 100%,0 50%)}.ob-template-swatch--avatar_template-manga{border:3px solid #111;box-shadow:4px 4px 0 #ffd65b}.ob-template-swatch--avatar_template-orbit{border-radius:50%;box-shadow:0 0 0 4px #746be8,0 0 0 8px #f3b4ff}.ob-template-swatch--avatar_template-badge{border-radius:35% 35% 50% 50%;background:linear-gradient(135deg,#7069e8,#ffd266)}.ob-template-swatch--avatar_template-square{border-radius:2px;box-shadow:4px 4px 0 #7069e8}.ob-template-swatch--nickname_template-neon{background:#111a2e;box-shadow:inset 0 0 14px #43dfff}.ob-template-swatch--nickname_template-serif{background:linear-gradient(135deg,#eee2ce,#977353)}.ob-template-swatch--nickname_template-glitch{background:linear-gradient(90deg,#2eeaff 0 46%,#171923 46% 54%,#ff4fba 54%)}.ob-template-swatch--nickname_template-sticker{background:#fff;border:3px solid #171923;box-shadow:4px 4px 0 #ffd65b}.ob-template-swatch--nickname_template-elegant{background:linear-gradient(135deg,#171923,#b58c57)}.ob-template-swatch--premium_template-bluecheck,.ob-template-swatch--premium_template-pulse{border-radius:50%;background:#1683ff}.ob-template-swatch--premium_template-comet{border-radius:50%;background:linear-gradient(135deg,#50d7ff,#7a5bff)}.ob-template-swatch--premium_template-orbit{border-radius:50%;background:#5d55d8;box-shadow:0 0 0 5px #d8d5ff}.ob-template-swatch--premium_template-crest{border-radius:6px;background:linear-gradient(135deg,#7d3f9e,#ffbf55)}.ob-template-swatch--link_template-minimal{background:#fff;border:1px solid #b8becb}.ob-template-swatch--link_template-gradient{background:linear-gradient(90deg,#7169ff,#ff73ba)}.ob-template-swatch--link_template-darkcard{background:#101522}.ob-template-swatch--link_template-sticker{background:#ffd65b;border:3px solid #171923;box-shadow:4px 4px 0 #171923}.ob-template-swatch--link_template-split{background:linear-gradient(90deg,#7169ff 0 18%,#f3f4f8 18%)}

@media(max-width:899px){.ob4-dashboard-nav{padding-bottom:5px}.ob4-dashboard-nav>button{min-width:70px}.ob-creator-stat-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ob-creator-chart-grid{grid-template-columns:1fr}.ob-platform-stats .ob-container{grid-template-columns:repeat(2,minmax(0,1fr))}.ob-creator-product-grid{grid-template-columns:1fr}}
@media(max-width:560px){.ob-creator-stat-grid{grid-template-columns:1fr 1fr;gap:8px}.ob-creator-stat-grid article{padding:13px}.ob-creator-chart{padding:14px}.ob-creator-bars{gap:4px;height:150px}.ob-creator-bars span{font-size:.58rem}.ob-creator-recent>article{grid-template-columns:36px minmax(0,1fr)}.ob-creator-recent article>div:last-child{grid-column:2;text-align:left}.ob-creator-public,.ob-creator-products{padding:15px}.ob-creator-public-form,.ob-creator-product-form{grid-template-columns:1fr}.ob-creator-public-form>*{grid-column:1!important}.ob-platform-stats .ob-container{grid-template-columns:1fr 1fr;gap:8px}.ob-platform-stats article{padding:10px;gap:8px}.ob-platform-stats article>span{width:36px;height:36px}.ob-platform-stats strong{font-size:.95rem}.ob-platform-stats small{font-size:.68rem}}

/* ==========================================================================
   Otakubio 0.5.1 — Creator UX, unified Premium badge, and withdrawals
   ========================================================================== */

/* Semua variasi template boleh mempertahankan bentuknya, tetapi warna ceklis
   Premium harus konsisten pada profil publik dan preview dashboard. */
[class*="ob-tpl-premium--"] .ob-premium-check,
[class*="ob-tpl-premium--"] .ob-preview-premium,
.ob-premium-check,
.ob-preview-premium {
    border-color: rgba(255,255,255,.42) !important;
    background: #1683ff !important;
    background-image: none !important;
    color: #fff !important;
    box-shadow: 0 7px 18px rgba(22,131,255,.28) !important;
}
[class*="ob-tpl-premium--"] .ob-premium-check::before,
[class*="ob-tpl-premium--"] .ob-premium-check::after,
[class*="ob-tpl-premium--"] .ob-preview-premium::before,
[class*="ob-tpl-premium--"] .ob-preview-premium::after {
    border-color: #1683ff !important;
    background-color: #1683ff !important;
}
.ob-tpl-premium--pulse .ob-premium-check,
.ob-tpl-premium--pulse .ob-preview-premium {
    animation: none !important;
}

/* Public Creator page — desktop is a wide two-column support workspace. */
.ob-public-card--creator-enabled {
    width: min(960px, calc(100vw - 48px));
}
.ob-public-card--creator-enabled .ob-public-card__identity,
.ob-public-card--creator-enabled .ob-public-links,
.ob-public-card--creator-enabled > .ob-support-button,
.ob-public-card--creator-enabled > .ob-profile-made-with {
    width: min(100%, 620px);
    margin-inline: auto;
}
.ob-creator-public--responsive {
    display: grid;
    grid-template-columns: minmax(260px,.82fr) minmax(390px,1.18fr);
    gap: 22px;
    align-items: start;
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(127,150,196,.24);
    border-radius: 24px;
    background:
        radial-gradient(circle at 0 0, rgba(22,131,255,.13), transparent 36%),
        linear-gradient(145deg, rgba(16,28,53,.97), rgba(22,32,57,.97));
    box-shadow: 0 22px 60px rgba(3,8,28,.22);
}
.ob-creator-public__intro {
    position: sticky;
    top: 22px;
    display: grid;
    gap: 16px;
    min-width: 0;
    padding: 5px 2px;
}
.ob-creator-public__heading {
    display: flex;
    gap: 12px;
    align-items: center;
}
.ob-creator-public__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(145deg,#1683ff,#4262e9);
    color: #fff;
    box-shadow: 0 12px 28px rgba(22,131,255,.28);
}
.ob-creator-public__icon svg { width: 21px; height: 21px; }
.ob-creator-public__heading small,
.ob-creator-public__heading h2 { display: block; margin: 0; }
.ob-creator-public__heading small {
    margin-bottom: 3px;
    color: #8fa6c8;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.ob-creator-public__heading h2 {
    color: #fff;
    font-size: clamp(1.2rem,2vw,1.55rem);
    line-height: 1.2;
}
.ob-creator-public__message {
    margin: 0;
    color: #bac5d9;
    font-size: .94rem;
    line-height: 1.65;
}
.ob-creator-public__trust {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 13px;
    border: 1px solid rgba(92,183,255,.18);
    border-radius: 15px;
    background: rgba(12,23,45,.52);
}
.ob-creator-public__trust > span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 31px;
    height: 31px;
    border-radius: 10px;
    background: rgba(22,131,255,.14);
    color: #5cb7ff;
}
.ob-creator-public__trust svg { width: 16px; height: 16px; }
.ob-creator-public__trust p {
    margin: 0;
    color: #9facbf;
    font-size: .76rem;
    line-height: 1.55;
}
.ob-creator-target {
    padding: 16px;
    border: 1px solid rgba(100,168,225,.16);
    border-radius: 17px;
    background: rgba(35,66,95,.68);
}
.ob-creator-target > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}
.ob-creator-target strong { color: #fff; }
.ob-creator-target span,
.ob-creator-target small { color: #c4cede; font-size: .75rem; }
.ob-creator-target i {
    display: block;
    height: 8px;
    margin: 12px 0 7px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
}
.ob-creator-target i b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,#1683ff,#55d1ff);
}

.ob-creator-support-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-width: 0;
    padding: 20px;
    border: 1px solid rgba(139,158,200,.22);
    border-radius: 20px;
    background: rgba(15,24,46,.88);
}
.ob-creator-support-form label,
.ob-creator-support-form fieldset {
    min-width: 0;
}
.ob-creator-support-form label > span,
.ob-support-amount > legend {
    display: block;
    margin-bottom: 7px;
    color: #e7edf8;
    font-size: .78rem;
    font-weight: 800;
}
.ob-creator-support-form label > span small {
    color: #8794aa;
    font-size: .68rem;
    font-weight: 650;
}
.ob-creator-support-form input:not([type="checkbox"]),
.ob-creator-support-form textarea {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(142,157,191,.3);
    border-radius: 13px;
    outline: 0;
    background: rgba(17,26,49,.94);
    color: #fff;
    font: inherit;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.ob-creator-support-form textarea {
    min-height: 110px;
    resize: vertical;
}
.ob-creator-support-form input:focus,
.ob-creator-support-form textarea:focus {
    border-color: #1683ff;
    background: rgba(18,30,57,.98);
    box-shadow: 0 0 0 3px rgba(22,131,255,.16);
}
.ob-creator-support-form input::placeholder,
.ob-creator-support-form textarea::placeholder { color: #737f94; }
.ob-creator-support-form label > small {
    display: block;
    margin-top: 6px;
    color: #8e99ac;
    font-size: .7rem;
    line-height: 1.45;
}
.ob-creator-support-form__identity {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.ob-support-amount {
    margin: 0;
    padding: 0;
    border: 0;
}
.ob-support-amount__presets {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
}
.ob-support-amount__presets button {
    min-height: 42px;
    padding: 8px 6px;
    border: 1px solid rgba(142,157,191,.26);
    border-radius: 11px;
    background: rgba(26,39,68,.82);
    color: #cdd6e7;
    font-size: .73rem;
    font-weight: 800;
    cursor: pointer;
    transition: .16s ease;
}
.ob-support-amount__presets button:hover,
.ob-support-amount__presets button.is-active {
    border-color: #1683ff;
    background: rgba(22,131,255,.16);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(22,131,255,.18);
}
.ob-support-amount__custom { margin-top: 11px; }
.ob-support-amount__custom > div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    border: 1px solid rgba(142,157,191,.3);
    border-radius: 13px;
    background: rgba(17,26,49,.94);
    overflow: hidden;
}
.ob-support-amount__custom > div:focus-within {
    border-color: #1683ff;
    box-shadow: 0 0 0 3px rgba(22,131,255,.16);
}
.ob-support-amount__custom b {
    padding: 0 0 0 14px;
    color: #7e8ba3;
}
.ob-support-amount__custom input {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}
.ob-toggle-card {
    display: grid !important;
    grid-template-columns: auto minmax(0,1fr);
    gap: 11px;
    align-items: center;
    margin: 0;
    padding: 13px;
    border: 1px solid rgba(142,157,191,.22);
    border-radius: 14px;
    background: rgba(25,36,62,.66);
    cursor: pointer;
}
.ob-toggle-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ob-toggle-card__control {
    position: relative;
    width: 42px;
    height: 24px;
    margin: 0 !important;
    border-radius: 999px;
    background: #4b556a;
    transition: .18s ease;
}
.ob-toggle-card__control::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 7px rgba(0,0,0,.25);
    transition: .18s ease;
}
.ob-toggle-card input:checked + .ob-toggle-card__control { background: #1683ff; }
.ob-toggle-card input:checked + .ob-toggle-card__control::after { transform: translateX(18px); }
.ob-toggle-card > span:last-child b,
.ob-toggle-card > span:last-child small {
    display: block;
}
.ob-toggle-card > span:last-child b {
    color: #edf2fb;
    font-size: .8rem;
}
.ob-toggle-card > span:last-child small {
    margin-top: 2px;
    color: #8e99ad;
    font-size: .68rem;
}
.ob-creator-support-submit {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg,#1683ff,#4c63ed);
    box-shadow: 0 14px 30px rgba(22,131,255,.24);
}
.ob-creator-support-submit:hover { transform: translateY(-1px); }

/* Creator dashboard is organized as a guided setup on desktop. */
.ob-creator-settings-panel .ob4-panel-head { margin-bottom: 18px; }
.ob-creator-summary-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 10px;
    margin-bottom: 16px;
}
.ob-creator-summary-grid article {
    display: flex;
    gap: 11px;
    align-items: center;
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--ob-line,rgba(127,139,168,.2));
    border-radius: 15px;
    background: var(--ob-surface-soft,rgba(255,255,255,.035));
}
.ob-creator-summary-grid article > span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(22,131,255,.12);
    color: #1683ff;
}
.ob-creator-summary-grid article small,
.ob-creator-summary-grid article strong { display: block; }
.ob-creator-summary-grid article small { color: var(--ob-muted,#758199); font-size: .68rem; }
.ob-creator-summary-grid article strong { margin-top: 3px; font-size: .92rem; }
.ob-creator-settings-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ob-creator-settings-group {
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--ob-line,rgba(127,139,168,.2));
    border-radius: 18px;
    background: var(--ob-surface-soft,rgba(255,255,255,.025));
}
.ob-creator-settings-group--status {
    grid-column: 1/-1;
}
.ob-creator-settings-group__head {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.ob-creator-settings-group__head > span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(22,131,255,.12);
    color: #1683ff;
}
.ob-creator-settings-group__head small,
.ob-creator-settings-group__head h3,
.ob-creator-settings-group__head p { display: block; margin: 0; }
.ob-creator-settings-group__head small {
    color: #1683ff;
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.ob-creator-settings-group__head h3 { margin-top: 2px; font-size: 1rem; }
.ob-creator-settings-group__head p {
    margin-top: 4px;
    color: var(--ob-muted,#758199);
    font-size: .72rem;
    line-height: 1.45;
}
.ob-creator-settings-fields {
    grid-template-columns: 1fr;
}
.ob-creator-settings-form > .ob4-form-actions {
    position: sticky;
    bottom: 12px;
    z-index: 4;
    grid-column: 1/-1;
    justify-content: flex-end;
    padding: 12px;
    border: 1px solid var(--ob-line,rgba(127,139,168,.2));
    border-radius: 16px;
    background: color-mix(in srgb,var(--ob-surface,#fff) 90%,transparent);
    backdrop-filter: blur(12px);
}

/* Withdrawal workspace. Balance and request remain distinct from history. */
.ob-withdrawal-balance-card {
    display: grid;
    grid-template-columns: minmax(240px,.85fr) minmax(0,1.15fr);
    gap: 12px;
    margin-bottom: 14px;
    padding: 17px;
    border: 1px solid var(--ob-line,rgba(127,139,168,.2));
    border-radius: 20px;
    background: linear-gradient(135deg,rgba(22,131,255,.12),rgba(111,85,238,.08));
}
.ob-withdrawal-balance-main {
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 8px;
}
.ob-withdrawal-balance-main span,
.ob-withdrawal-balance-main small { color: var(--ob-muted,#758199); }
.ob-withdrawal-balance-main strong {
    font-size: clamp(1.55rem,3vw,2.25rem);
    line-height: 1.1;
}
.ob-withdrawal-balance-meta {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 8px;
}
.ob-withdrawal-balance-meta article {
    display: grid;
    align-content: center;
    gap: 5px;
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--ob-line,rgba(127,139,168,.18));
    border-radius: 14px;
    background: var(--ob-surface,rgba(255,255,255,.65));
}
.ob-withdrawal-balance-meta span { color: var(--ob-muted,#758199); font-size: .66rem; }
.ob-withdrawal-balance-meta strong { font-size: .82rem; overflow-wrap: anywhere; }
.ob-withdrawal-layout {
    display: grid;
    grid-template-columns: minmax(360px,1.02fr) minmax(320px,.98fr);
    gap: 14px;
    align-items: start;
}
.ob-withdrawal-request-card,
.ob-withdrawal-history-card {
    min-width: 0;
    padding: 17px;
    border: 1px solid var(--ob-line,rgba(127,139,168,.2));
    border-radius: 18px;
    background: var(--ob-surface-soft,rgba(255,255,255,.025));
}
.ob-withdrawal-request-card > header,
.ob-withdrawal-history-card > header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.ob-withdrawal-request-card > header small,
.ob-withdrawal-request-card > header h3,
.ob-withdrawal-request-card > header p,
.ob-withdrawal-history-card > header small,
.ob-withdrawal-history-card > header h3 { display: block; margin: 0; }
.ob-withdrawal-request-card > header p { margin-top: 4px; color: var(--ob-muted,#758199); font-size: .72rem; }
.ob-withdrawal-form fieldset {
    display: grid;
    gap: 14px;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}
.ob-withdrawal-form.is-disabled { opacity: .64; }
.ob-withdrawal-methods > span {
    display: block;
    margin-bottom: 8px;
    font-size: .74rem;
    font-weight: 800;
}
.ob-withdrawal-methods > div {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px;
}
.ob-withdrawal-methods label { position: relative; }
.ob-withdrawal-methods input { position: absolute; opacity: 0; pointer-events: none; }
.ob-withdrawal-methods label > span {
    display: grid;
    gap: 2px;
    min-height: 54px;
    padding: 11px;
    border: 1px solid var(--ob-line,rgba(127,139,168,.2));
    border-radius: 13px;
    cursor: pointer;
}
.ob-withdrawal-methods input:checked + span {
    border-color: #1683ff;
    background: rgba(22,131,255,.1);
    box-shadow: inset 0 0 0 1px rgba(22,131,255,.14);
}
.ob-withdrawal-methods small { color: var(--ob-muted,#758199); font-size: .65rem; }
.ob-withdrawal-amount > div {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 7px;
}
.ob-withdrawal-amount button {
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(22,131,255,.28);
    border-radius: 11px;
    background: rgba(22,131,255,.1);
    color: #1683ff;
    font-weight: 800;
    cursor: pointer;
}
.ob-withdrawal-identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}
.ob-withdrawal-confirm {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 11px;
    border-radius: 12px;
    background: rgba(22,131,255,.08);
    color: var(--ob-muted,#758199);
    font-size: .7rem;
    line-height: 1.45;
}
.ob-withdrawal-confirm span { color: #1683ff; }
.ob-withdrawal-confirm p { margin: 0; }
.ob-withdrawal-submit { width: 100%; justify-content: center; }
.ob-withdrawal-history {
    display: grid;
    gap: 9px;
    max-height: 610px;
    overflow: auto;
    padding-right: 3px;
}
.ob-withdrawal-history > article {
    padding: 12px;
    border: 1px solid var(--ob-line,rgba(127,139,168,.18));
    border-radius: 14px;
    background: var(--ob-surface,rgba(255,255,255,.5));
}
.ob-withdrawal-history__head {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 9px;
    align-items: center;
}
.ob-withdrawal-history__head > span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(22,131,255,.1);
    color: #1683ff;
}
.ob-withdrawal-history__head strong,
.ob-withdrawal-history__head small { display: block; }
.ob-withdrawal-history__head small { color: var(--ob-muted,#758199); font-size: .64rem; }
.ob-withdrawal-history__head b { font-size: .78rem; }
.ob-withdrawal-history__meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 9px;
    color: var(--ob-muted,#758199);
    font-size: .68rem;
}
.ob-withdrawal-history__meta em {
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(22,131,255,.1);
    color: #1683ff;
    font-style: normal;
    font-weight: 800;
}
.ob-withdrawal-history article.is-paid .ob-withdrawal-history__meta em { background: rgba(30,177,110,.12); color: #15915b; }
.ob-withdrawal-history article.is-rejected .ob-withdrawal-history__meta em,
.ob-withdrawal-history article.is-cancelled .ob-withdrawal-history__meta em { background: rgba(220,71,88,.1); color: #cf4050; }
.ob-withdrawal-history article form button,
.ob-withdrawal-history article > a {
    display: inline-flex;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1683ff;
    font: inherit;
    font-size: .68rem;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
}

/* Real mobile layout: simpler single column, larger touch targets, no sticky intro. */
@media (max-width: 760px) {
    .ob-public-card--creator-enabled {
        width: min(100%,calc(100vw - 20px));
    }
    .ob-creator-public--responsive {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
        padding: 14px;
        border-radius: 20px;
    }
    .ob-creator-public__intro { position: static; padding: 0; }
    .ob-creator-public__heading { align-items: flex-start; }
    .ob-creator-public__icon { width: 41px; height: 41px; border-radius: 13px; }
    .ob-creator-public__trust { display: none; }
    .ob-creator-target { padding: 13px; }
    .ob-creator-support-form { gap: 14px; padding: 14px; border-radius: 17px; }
    .ob-creator-support-form__identity { grid-template-columns: 1fr; gap: 13px; }
    .ob-support-amount__presets { grid-template-columns: 1fr 1fr; }
    .ob-support-amount__presets button { min-height: 46px; font-size: .76rem; }
    .ob-creator-support-form input:not([type="checkbox"]) { min-height: 52px; font-size: 16px; }
    .ob-creator-support-form textarea { font-size: 16px; }
    .ob-toggle-card { min-height: 58px; }
    .ob-creator-support-submit { min-height: 54px; }

    .ob-creator-summary-grid { grid-template-columns: 1fr 1fr; }
    .ob-creator-summary-grid article:last-child { grid-column: 1/-1; }
    .ob-creator-settings-form { grid-template-columns: 1fr; }
    .ob-creator-settings-group,
    .ob-creator-settings-group--status { grid-column: 1; padding: 14px; }
    .ob-creator-settings-form > .ob4-form-actions {
        bottom: calc(72px + env(safe-area-inset-bottom));
        justify-content: stretch;
        padding: 9px;
    }
    .ob-creator-settings-form > .ob4-form-actions .ob-button { width: 100%; justify-content: center; }

    .ob-withdrawal-balance-card { grid-template-columns: 1fr; padding: 14px; }
    .ob-withdrawal-balance-main { text-align: center; }
    .ob-withdrawal-balance-meta { grid-template-columns: 1fr 1fr; }
    .ob-withdrawal-balance-meta article:last-child { grid-column: 1/-1; }
    .ob-withdrawal-layout { grid-template-columns: 1fr; }
    .ob-withdrawal-request-card,
    .ob-withdrawal-history-card { padding: 14px; }
    .ob-withdrawal-methods > div { grid-template-columns: 1fr 1fr; }
    .ob-withdrawal-identity-grid { grid-template-columns: 1fr; }
    .ob-withdrawal-amount > div { grid-template-columns: 1fr; }
    .ob-withdrawal-amount button { min-height: 42px; }
    .ob-withdrawal-history { max-height: none; }
}

@media (max-width: 420px) {
    .ob-creator-summary-grid,
    .ob-withdrawal-balance-meta,
    .ob-withdrawal-methods > div { grid-template-columns: 1fr; }
    .ob-creator-summary-grid article:last-child,
    .ob-withdrawal-balance-meta article:last-child { grid-column: 1; }
    .ob-withdrawal-history__head { grid-template-columns: auto minmax(0,1fr); }
    .ob-withdrawal-history__head > b { grid-column: 2; }
    .ob-withdrawal-history__meta { align-items: flex-start; flex-direction: column; }
}


/* ======================================================================
   Otakubio 0.5.2 — Creator studio, modular profile tabs, vote & checkout
   ====================================================================== */

/* One blue identity, with the stronger aura requested for every check style. */
.ob-premium-check,
.ob-preview-premium,
[class*="ob-tpl-premium--"] .ob-premium-check,
[class*="ob-tpl-premium--"] .ob-preview-premium {
    --ob-check-blue: #1683ff;
    position: relative;
    isolation: isolate;
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border: 1px solid rgba(255,255,255,.86);
    border-radius: 50%;
    background: var(--ob-check-blue) !important;
    color: #fff !important;
    box-shadow:
        0 0 0 3px rgba(22,131,255,.17),
        0 0 17px rgba(22,131,255,.62),
        0 7px 16px rgba(4,43,104,.34) !important;
    transform: none;
    animation: none;
    vertical-align: middle;
}
.ob-premium-check::before,
.ob-preview-premium::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -7px;
    border: 1px solid rgba(76,178,255,.36);
    border-radius: inherit;
    opacity: .8;
    animation: ob-check-aura 2.8s ease-in-out infinite;
}
.ob-premium-check::after,
.ob-preview-premium::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: -2px 2px 8px #9ee4ff, 0 0 12px #fff;
    animation: ob-check-spark 2.4s ease-in-out infinite;
}
.ob-premium-check .ob-icon,
.ob-preview-premium .ob-icon {
    width: 13px;
    height: 13px;
    stroke-width: 3;
    filter: drop-shadow(0 1px 2px rgba(0,45,110,.32));
}
.ob-tpl-premium--minimal .ob-premium-check::after,
.ob-tpl-premium--minimal .ob-preview-premium::after { display: none; }
.ob-tpl-premium--ribbon .ob-premium-check,
.ob-tpl-premium--ribbon .ob-preview-premium,
.ob-tpl-premium--ticket .ob-premium-check,
.ob-tpl-premium--ticket .ob-preview-premium,
.ob-tpl-premium--crest .ob-premium-check,
.ob-tpl-premium--crest .ob-preview-premium { border-radius: 7px; }
.ob-tpl-premium--diamond .ob-premium-check,
.ob-tpl-premium--diamond .ob-preview-premium { border-radius: 6px; transform: rotate(45deg); }
.ob-tpl-premium--diamond .ob-premium-check svg,
.ob-tpl-premium--diamond .ob-preview-premium svg { transform: rotate(-45deg); }
.ob-tpl-premium--orbit .ob-premium-check::before,
.ob-tpl-premium--orbit .ob-preview-premium::before { inset: -6px -9px; border-radius: 50%; transform: rotate(-18deg); }
.ob-tpl-premium--comet .ob-premium-check,
.ob-tpl-premium--comet .ob-preview-premium { box-shadow: -9px 5px 0 -5px rgba(22,131,255,.34), 0 0 0 3px rgba(22,131,255,.17), 0 0 17px rgba(22,131,255,.62), 0 7px 16px rgba(4,43,104,.34) !important; }
.ob-tpl-premium--wing .ob-premium-check,
.ob-tpl-premium--wing .ob-preview-premium { box-shadow: -7px 0 0 -4px rgba(103,197,255,.65), 7px 0 0 -4px rgba(103,197,255,.65), 0 0 0 3px rgba(22,131,255,.17), 0 0 17px rgba(22,131,255,.62), 0 7px 16px rgba(4,43,104,.34) !important; }
@keyframes ob-check-aura { 50% { opacity: .35; transform: scale(1.09); } }
@keyframes ob-check-spark { 0%,55%,100% { opacity: .18; transform: scale(.6); } 68% { opacity: 1; transform: scale(1.2); } }
@media (prefers-reduced-motion: reduce) {
    .ob-premium-check::before,.ob-premium-check::after,.ob-preview-premium::before,.ob-preview-premium::after { animation: none; }
}

/* Original horror atmosphere, inspired by occult anime mood without copying characters/assets. */
.ob-profile-page.ob-tpl-header--haunted,
.ob-profile-preview.ob-tpl-header--haunted {
    --profile-bg: #080711;
    --profile-bg-2: #1a0f25;
    --profile-card: #11101d;
    --profile-text: #f0edf7;
    --profile-muted: #aaa1b8;
    --profile-accent: #9a67ff;
    --profile-accent-2: #52d7dc;
    background-color: #07060e;
    background-image:
        radial-gradient(circle at 18% 15%, rgba(116,73,180,.32), transparent 26%),
        radial-gradient(circle at 82% 2%, rgba(55,174,184,.18), transparent 24%),
        repeating-linear-gradient(0deg, transparent 0 36px, rgba(159,106,255,.055) 36px 37px),
        repeating-linear-gradient(90deg, transparent 0 36px, rgba(159,106,255,.055) 36px 37px),
        linear-gradient(145deg,#05050a,#160d20 64%,#071719);
}
.ob-tpl-header--haunted .ob-profile-page__pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .42;
    background:
        radial-gradient(circle at 50% 18%, transparent 0 54px, rgba(164,109,255,.24) 55px 56px, transparent 57px),
        radial-gradient(circle at 50% 18%, transparent 0 82px, rgba(83,211,216,.13) 83px 84px, transparent 85px);
}

/* Public profile: true tabs rather than mixing all modules into the bio. */
.ob-public-card--creator-enabled { width: min(1040px,calc(100vw - 32px)); }
.ob-public-tabs { display: grid; gap: 20px; min-width: 0; }
.ob-public-tabs__nav {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 8px;
    padding: 7px;
    border: 1px solid color-mix(in srgb,var(--profile-muted) 22%,transparent);
    border-radius: 18px;
    background: color-mix(in srgb,var(--profile-card) 91%,transparent);
    box-shadow: 0 15px 38px rgba(0,0,0,.12);
    backdrop-filter: blur(18px);
}
.ob-public-tabs__nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    min-height: 46px;
    padding: 10px 13px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: var(--profile-muted);
    font: inherit;
    font-size: .78rem;
    font-weight: 850;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.ob-public-tabs__nav button:hover { color: var(--profile-text); background: color-mix(in srgb,var(--profile-accent) 8%,transparent); }
.ob-public-tabs__nav button.is-active {
    color: #fff;
    background: linear-gradient(135deg,var(--profile-accent),var(--profile-accent-2));
    box-shadow: 0 10px 24px color-mix(in srgb,var(--profile-accent) 34%,transparent);
}
.ob-public-tabs__nav svg { width: 17px; height: 17px; }
.ob-public-tabs__nav i { display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: rgba(255,255,255,.16); font-style: normal; font-size: .64rem; }
.ob-public-tab-panel { min-width: 0; animation: ob-tab-enter .24s ease; }
.ob-public-tab-panel[hidden] { display: none !important; }
@keyframes ob-tab-enter { from { opacity: 0; transform: translateY(7px); } }

/* Creator support studio: layered, balanced and easier to scan. */
.ob-creator-public--studio {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(250px,.82fr) minmax(360px,1.18fr);
    gap: 18px;
    margin-top: 24px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb,var(--profile-accent) 30%,transparent);
    border-radius: 27px;
    background:
        radial-gradient(circle at 8% 6%,color-mix(in srgb,var(--profile-accent) 24%,transparent),transparent 32%),
        linear-gradient(145deg,color-mix(in srgb,var(--profile-card) 97%,#081426),color-mix(in srgb,var(--profile-card) 91%,#060b18));
    box-shadow: 0 26px 70px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.07);
    color: var(--profile-text);
    text-align: left;
}
.ob-creator-public--studio::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 270px;
    height: 270px;
    right: -100px;
    bottom: -140px;
    border-radius: 50%;
    background: color-mix(in srgb,var(--profile-accent-2) 24%,transparent);
    filter: blur(42px);
}
.ob-creator-public__intro {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 21px;
    background: linear-gradient(150deg,rgba(255,255,255,.075),rgba(255,255,255,.018));
}
.ob-creator-public__eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid color-mix(in srgb,var(--profile-accent) 34%,transparent);
    border-radius: 999px;
    background: color-mix(in srgb,var(--profile-accent) 12%,transparent);
    color: color-mix(in srgb,var(--profile-accent) 72%,#fff);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
}
.ob-creator-public__eyebrow svg { width: 16px; height: 16px; }
.ob-creator-public__intro h2 { margin: 0; color: var(--profile-text); font-size: clamp(1.35rem,2.6vw,1.9rem); line-height: 1.12; letter-spacing: -.025em; }
.ob-creator-public__message { margin: 0; color: var(--profile-muted); font-size: .9rem; line-height: 1.7; }
.ob-creator-public__trust { margin-top: auto; }

.ob-creator-support-form {
    display: grid;
    gap: 17px;
    min-width: 0;
    padding: 21px;
    border: 1px solid color-mix(in srgb,var(--profile-muted) 22%,transparent);
    border-radius: 21px;
    background: color-mix(in srgb,var(--profile-card) 96%,#07101f);
    box-shadow: inset 0 1px rgba(255,255,255,.055), 0 18px 38px rgba(0,0,0,.13);
}
.ob-support-form__head { display: flex; align-items: center; gap: 11px; padding-bottom: 14px; border-bottom: 1px solid color-mix(in srgb,var(--profile-muted) 15%,transparent); }
.ob-support-form__head > span { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 13px; background: linear-gradient(145deg,var(--profile-accent),var(--profile-accent-2)); color: #fff; box-shadow: 0 10px 24px color-mix(in srgb,var(--profile-accent) 28%,transparent); }
.ob-support-form__head small,.ob-support-form__head strong { display: block; }
.ob-support-form__head small { color: var(--profile-muted); font-size: .64rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.ob-support-form__head strong { margin-top: 2px; color: var(--profile-text); font-size: .92rem; }
.ob-creator-support-form__identity { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.ob-creator-support-form label { min-width: 0; }
.ob-creator-support-form label > span,.ob-support-amount > legend { display: block; margin: 0 0 7px; color: var(--profile-text); font-size: .74rem; font-weight: 850; }
.ob-creator-support-form input:not([type="checkbox"]),.ob-creator-support-form textarea {
    width: 100%; min-width: 0; min-height: 50px; padding: 12px 14px;
    border: 1px solid color-mix(in srgb,var(--profile-muted) 26%,transparent);
    border-radius: 13px; outline: 0;
    background: color-mix(in srgb,var(--profile-card) 91%,#07101f);
    color: var(--profile-text); font: inherit;
    transition: border-color .18s ease,box-shadow .18s ease,background .18s ease;
}
.ob-creator-support-form input:focus,.ob-creator-support-form textarea:focus { border-color: var(--profile-accent); box-shadow: 0 0 0 3px color-mix(in srgb,var(--profile-accent) 18%,transparent); }
.ob-creator-support-form input::placeholder,.ob-creator-support-form textarea::placeholder { color: color-mix(in srgb,var(--profile-muted) 75%,transparent); }
.ob-creator-support-form textarea { min-height: 104px; resize: vertical; }
.ob-creator-support-form label > small { display: block; margin-top: 5px; color: var(--profile-muted); font-size: .65rem; line-height: 1.45; }
.ob-support-amount { margin: 0; padding: 0; border: 0; }
.ob-support-amount__presets { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; }
.ob-support-amount__presets button {
    position: relative; min-height: 48px; padding: 8px 5px; overflow: hidden;
    border: 1px solid color-mix(in srgb,var(--profile-muted) 22%,transparent); border-radius: 13px;
    background: color-mix(in srgb,var(--profile-card) 86%,#102039); color: var(--profile-muted);
    font: inherit; font-size: .72rem; font-weight: 900; cursor: pointer;
    transition: transform .16s ease,border-color .16s ease,color .16s ease,background .16s ease;
}
.ob-support-amount__presets button::after { content: ""; position: absolute; inset: auto 20% 0; height: 2px; border-radius: 9px; background: var(--profile-accent); transform: scaleX(0); transition: transform .16s ease; }
.ob-support-amount__presets button:hover { transform: translateY(-1px); color: var(--profile-text); }
.ob-support-amount__presets button.is-active { border-color: var(--profile-accent); background: color-mix(in srgb,var(--profile-accent) 15%,var(--profile-card)); color: var(--profile-text); box-shadow: 0 8px 20px color-mix(in srgb,var(--profile-accent) 15%,transparent); }
.ob-support-amount__presets button.is-active::after { transform: scaleX(1); }
.ob-support-amount__custom { display: block; margin-top: 12px; }
.ob-support-stepper {
    display: grid; grid-template-columns: 46px auto minmax(0,1fr) 46px; align-items: center;
    min-height: 54px; overflow: hidden;
    border: 1px solid color-mix(in srgb,var(--profile-muted) 26%,transparent); border-radius: 14px;
    background: color-mix(in srgb,var(--profile-card) 91%,#07101f);
}
.ob-support-stepper:focus-within { border-color: var(--profile-accent); box-shadow: 0 0 0 3px color-mix(in srgb,var(--profile-accent) 18%,transparent); }
.ob-support-stepper button { display: grid; place-items: center; align-self: stretch; min-height: 52px; border: 0; background: color-mix(in srgb,var(--profile-accent) 12%,transparent); color: color-mix(in srgb,var(--profile-accent) 75%,#fff); font-size: 1.25rem; font-weight: 500; cursor: pointer; transition: background .16s ease; }
.ob-support-stepper button:hover { background: color-mix(in srgb,var(--profile-accent) 22%,transparent); }
.ob-support-stepper b { padding-left: 12px; color: var(--profile-muted); font-size: .8rem; }
.ob-support-stepper input { min-height: 52px !important; padding-inline: 9px !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; font-size: 1rem !important; font-weight: 850 !important; }
.ob-support-stepper input[type="number"] { appearance: textfield; -moz-appearance: textfield; }
.ob-support-stepper input[type="number"]::-webkit-outer-spin-button,.ob-support-stepper input[type="number"]::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.ob-toggle-card { border-color: color-mix(in srgb,var(--profile-muted) 22%,transparent); background: color-mix(in srgb,var(--profile-accent) 6%,var(--profile-card)); }
.ob-toggle-card__control { background: color-mix(in srgb,var(--profile-muted) 55%,transparent); }
.ob-toggle-card input:checked + .ob-toggle-card__control { background: var(--profile-accent); box-shadow: 0 0 0 3px color-mix(in srgb,var(--profile-accent) 16%,transparent); }
.ob-creator-support-submit { display: flex; justify-content: center; gap: 9px; min-height: 54px; border-radius: 14px; background: linear-gradient(135deg,var(--profile-accent),var(--profile-accent-2)); box-shadow: 0 14px 31px color-mix(in srgb,var(--profile-accent) 27%,transparent); }

/* Support component templates. */
.ob-tpl-support--compact .ob-creator-public--studio { grid-template-columns: .7fr 1.3fr; padding: 13px; }
.ob-tpl-support--compact .ob-creator-public__intro { padding: 16px; }
.ob-tpl-support--glass .ob-creator-public--studio,.ob-tpl-support--glass .ob-creator-support-form { background: rgba(255,255,255,.075); backdrop-filter: blur(24px); }
.ob-tpl-support--manga .ob-creator-public--studio { border: 3px solid var(--profile-text); border-radius: 7px; box-shadow: 8px 8px 0 color-mix(in srgb,var(--profile-text) 30%,transparent); }
.ob-tpl-support--manga .ob-creator-public__intro,.ob-tpl-support--manga .ob-creator-support-form { border: 2px solid var(--profile-text); border-radius: 4px; box-shadow: 4px 4px 0 color-mix(in srgb,var(--profile-text) 18%,transparent); }
.ob-tpl-support--neon .ob-creator-public--studio { border-color: var(--profile-accent); box-shadow: 0 0 0 1px color-mix(in srgb,var(--profile-accent) 40%,transparent),0 0 42px color-mix(in srgb,var(--profile-accent) 22%,transparent); }
.ob-tpl-support--shrine .ob-creator-public--studio { background: linear-gradient(145deg,color-mix(in srgb,#42151b 70%,var(--profile-card)),color-mix(in srgb,#190f13 80%,var(--profile-card))); border-color: rgba(242,198,109,.42); }
.ob-tpl-support--horror .ob-creator-public--studio { background: radial-gradient(circle at 15% 10%,rgba(143,91,207,.25),transparent 30%),linear-gradient(145deg,#090812,#191020); border-color: rgba(164,104,255,.46); box-shadow: 0 26px 70px rgba(0,0,0,.42),0 0 38px rgba(128,73,210,.16); }
.ob-tpl-support--horror .ob-creator-public--studio::after { content: ""; position: absolute; right: 28px; top: 20px; width: 66px; height: 66px; border: 2px solid rgba(183,139,255,.2); border-left-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(40deg); box-shadow: 0 0 24px rgba(143,91,207,.14); pointer-events: none; }

/* Product tab and customizable shop components. */
.ob-creator-products--tab { margin: 0; padding: 20px; border-radius: 25px; }
.ob-creator-products--tab > header { align-items: flex-start; padding: 4px 2px 14px; border-bottom: 1px solid color-mix(in srgb,var(--profile-muted) 15%,transparent); }
.ob-creator-products--tab > header p { margin: 5px 0 0; color: var(--profile-muted); font-size: .78rem; line-height: 1.55; }
.ob-creator-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.ob-creator-product-grid > article { border-radius: 19px; transition: transform .18s ease,box-shadow .18s ease,border-color .18s ease; }
.ob-creator-product-grid > article:hover { transform: translateY(-3px); border-color: color-mix(in srgb,var(--profile-accent) 42%,transparent); box-shadow: 0 18px 34px rgba(0,0,0,.15); }
.ob-product-card__cover { position: relative; min-height: 150px; overflow: hidden; background: color-mix(in srgb,var(--profile-accent) 9%,var(--profile-card)); }
.ob-product-card__cover img { width: 100%; height: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ob-product-card__cover > span { display: grid; place-items: center; min-height: 150px; color: var(--profile-accent); }
.ob-product-card__cover > span svg { width: 42px; height: 42px; }
.ob-product-card__cover i { position: absolute; right: 10px; bottom: 10px; padding: 7px 10px; border-radius: 999px; background: rgba(3,8,18,.82); color: #fff; font-style: normal; font-size: .72rem; font-weight: 900; backdrop-filter: blur(10px); }
.ob-product-card__body { display: grid; gap: 10px; padding: 15px; }
.ob-product-card__body h3,.ob-product-card__body p { margin: 0; }
.ob-product-card__body p { color: var(--profile-muted); font-size: .8rem; line-height: 1.55; }
.ob-product-card__body details { margin: 2px -15px -15px; border-top: 1px solid color-mix(in srgb,var(--profile-muted) 15%,transparent); }
.ob-product-card__body summary { display: flex; justify-content: center; gap: 8px; padding: 14px; color: var(--profile-accent); font-size: .77rem; font-weight: 900; cursor: pointer; }
.ob-creator-product-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 15px; background: color-mix(in srgb,var(--profile-card) 94%,#07101f); }
.ob-creator-product-form label { display: grid; gap: 6px; }
.ob-creator-product-form label > span { color: var(--profile-muted); font-size: .7rem; font-weight: 850; }
.ob-creator-product-form input { width: 100%; min-width: 0; min-height: 46px; padding: 11px 12px; border: 1px solid color-mix(in srgb,var(--profile-muted) 24%,transparent); border-radius: 12px; background: color-mix(in srgb,var(--profile-card) 90%,#07101f); color: var(--profile-text); }
.ob-creator-product-form .ob-button { grid-column: 1/-1; justify-content: center; }
.ob-tpl-product--catalog .ob-creator-product-grid { grid-template-columns: 1fr; }
.ob-tpl-product--catalog .ob-creator-product-grid > article { grid-template-columns: 160px minmax(0,1fr); }
.ob-tpl-product--catalog .ob-product-card__cover,.ob-tpl-product--catalog .ob-product-card__cover img,.ob-tpl-product--catalog .ob-product-card__cover > span { min-height: 100%; height: 100%; aspect-ratio: auto; }
.ob-tpl-product--poster .ob-creator-product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.ob-tpl-product--poster .ob-product-card__cover img { aspect-ratio: 3/4; }
.ob-tpl-product--manga .ob-creator-product-grid > article { border: 3px solid var(--profile-text); border-radius: 4px; box-shadow: 5px 5px 0 color-mix(in srgb,var(--profile-text) 22%,transparent); }
.ob-tpl-product--neon .ob-creator-product-grid > article { border-color: var(--profile-accent); box-shadow: 0 0 24px color-mix(in srgb,var(--profile-accent) 14%,transparent); }
.ob-tpl-product--shrine .ob-creator-products--tab { border-color: rgba(238,177,83,.42); background: linear-gradient(150deg,rgba(87,21,27,.85),rgba(20,13,18,.9)); }
.ob-tpl-product--horror .ob-creator-products--tab { background: linear-gradient(145deg,#090812,#18101e); border-color: rgba(158,105,233,.4); }
.ob-tpl-product--horror .ob-creator-product-grid > article { background: #100d18; border-color: rgba(158,105,233,.3); box-shadow: inset 0 0 22px rgba(115,67,179,.08); }

/* Public vote ranking. Zero-vote candidates naturally sort below higher totals server-side. */
.ob-vote-public { display: grid; gap: 16px; padding: 20px; border: 1px solid color-mix(in srgb,var(--profile-muted) 20%,transparent); border-radius: 25px; background: color-mix(in srgb,var(--profile-card) 93%,transparent); text-align: left; }
.ob-vote-public > header { display: flex; align-items: flex-start; gap: 12px; }
.ob-vote-public > header > span { display: grid; place-items: center; flex: 0 0 44px; height: 44px; border-radius: 14px; background: linear-gradient(145deg,var(--profile-accent),var(--profile-accent-2)); color: #fff; }
.ob-vote-public > header small,.ob-vote-public > header h2,.ob-vote-public > header p { display: block; margin: 0; }
.ob-vote-public > header small { color: var(--profile-accent); font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.ob-vote-public > header h2 { margin-top: 2px; font-size: 1.3rem; }
.ob-vote-public > header p { margin-top: 5px; color: var(--profile-muted); font-size: .78rem; line-height: 1.5; }
.ob-vote-board { padding: 16px; border: 1px solid color-mix(in srgb,var(--profile-muted) 18%,transparent); border-radius: 19px; background: color-mix(in srgb,var(--profile-card) 96%,#07101f); }
.ob-vote-board__head { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 13px; }
.ob-vote-board__head small,.ob-vote-board__head h3,.ob-vote-board__head p { display: block; margin: 0; }
.ob-vote-board__head small { color: var(--profile-accent); font-size: .67rem; font-weight: 900; }
.ob-vote-board__head h3 { margin-top: 2px; font-size: 1.05rem; }
.ob-vote-board__head p { margin-top: 5px; color: var(--profile-muted); font-size: .75rem; line-height: 1.5; }
.ob-vote-board__head > span { color: var(--profile-accent); }
.ob-vote-candidates { display: grid; gap: 9px; }
.ob-vote-candidate { position: relative; display: grid; grid-template-columns: auto 58px minmax(0,1fr) auto; gap: 11px; align-items: center; min-width: 0; padding: 10px; border: 1px solid color-mix(in srgb,var(--profile-muted) 17%,transparent); border-radius: 15px; background: color-mix(in srgb,var(--profile-card) 94%,transparent); }
.ob-vote-candidate.is-leading { border-color: color-mix(in srgb,var(--profile-accent) 52%,transparent); background: linear-gradient(120deg,color-mix(in srgb,var(--profile-accent) 14%,var(--profile-card)),var(--profile-card)); box-shadow: 0 10px 27px color-mix(in srgb,var(--profile-accent) 12%,transparent); }
.ob-vote-rank { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 10px; background: color-mix(in srgb,var(--profile-muted) 12%,transparent); color: var(--profile-muted); font-size: .68rem; font-weight: 900; }
.ob-vote-candidate.is-leading .ob-vote-rank { background: var(--profile-accent); color: #fff; }
.ob-vote-candidate__image { display: grid; place-items: center; width: 58px; height: 58px; overflow: hidden; border-radius: 15px; background: color-mix(in srgb,var(--profile-accent) 12%,var(--profile-card)); color: var(--profile-accent); font-weight: 900; }
.ob-vote-candidate__image img { width: 100%; height: 100%; object-fit: cover; }
.ob-vote-candidate__content { min-width: 0; }
.ob-vote-candidate__content h4,.ob-vote-candidate__content p { margin: 0; }
.ob-vote-candidate__content h4 { font-size: .9rem; }
.ob-vote-candidate__content p { margin-top: 3px; color: var(--profile-muted); font-size: .68rem; line-height: 1.4; }
.ob-vote-candidate__content > div { display: flex; gap: 4px; align-items: baseline; margin-top: 5px; }
.ob-vote-candidate__content > div strong { color: var(--profile-accent); font-size: .88rem; }
.ob-vote-candidate__content > div span { color: var(--profile-muted); font-size: .65rem; }
.ob-vote-candidate form button { display: inline-flex; align-items: center; gap: 6px; min-height: 39px; padding: 0 13px; border: 0; border-radius: 12px; background: linear-gradient(135deg,var(--profile-accent),var(--profile-accent-2)); color: #fff; font: inherit; font-size: .72rem; font-weight: 900; cursor: pointer; box-shadow: 0 8px 20px color-mix(in srgb,var(--profile-accent) 22%,transparent); }
.ob-tpl-vote--arena .ob-vote-candidates { grid-template-columns: repeat(2,minmax(0,1fr)); }
.ob-tpl-vote--arena .ob-vote-candidate { grid-template-columns: auto 64px minmax(0,1fr); }
.ob-tpl-vote--arena .ob-vote-candidate form { grid-column: 1/-1; }
.ob-tpl-vote--arena .ob-vote-candidate form button { width: 100%; justify-content: center; }
.ob-tpl-vote--cards .ob-vote-candidates { grid-template-columns: repeat(3,minmax(0,1fr)); }
.ob-tpl-vote--cards .ob-vote-candidate { grid-template-columns: 1fr; text-align: center; }
.ob-tpl-vote--cards .ob-vote-rank { position: absolute; z-index: 2; top: 8px; left: 8px; }
.ob-tpl-vote--cards .ob-vote-candidate__image { width: 100%; height: auto; aspect-ratio: 4/3; }
.ob-tpl-vote--cards .ob-vote-candidate form button { width: 100%; justify-content: center; }
.ob-tpl-vote--neon .ob-vote-board { border-color: var(--profile-accent); box-shadow: 0 0 30px color-mix(in srgb,var(--profile-accent) 13%,transparent); }
.ob-tpl-vote--shrine .ob-vote-public { border-color: rgba(239,185,89,.4); background: linear-gradient(145deg,rgba(76,18,24,.88),rgba(20,13,18,.94)); }
.ob-tpl-vote--horror .ob-vote-public { background: radial-gradient(circle at 85% 5%,rgba(133,83,203,.22),transparent 28%),linear-gradient(145deg,#080710,#17101d); border-color: rgba(158,105,233,.4); }

/* Frozen profile recovery is a first-class state. */
.ob-frozen-profile { display: grid; justify-items: center; gap: 13px; padding: clamp(28px,7vw,68px) 20px; text-align: center; }
.ob-frozen-profile__icon { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 22px; background: color-mix(in srgb,var(--profile-accent) 14%,var(--profile-card)); color: var(--profile-accent); box-shadow: 0 16px 36px color-mix(in srgb,var(--profile-accent) 18%,transparent); }
.ob-frozen-profile__icon svg { width: 31px; height: 31px; }
.ob-frozen-profile h1,.ob-frozen-profile p { margin: 0; }
.ob-frozen-profile p { max-width: 620px; color: var(--profile-muted); line-height: 1.65; }
.ob-frozen-profile__owner-note { display: flex; align-items: center; gap: 9px; max-width: 620px; padding: 12px 14px; border: 1px solid color-mix(in srgb,var(--profile-accent) 23%,transparent); border-radius: 14px; background: color-mix(in srgb,var(--profile-accent) 8%,transparent); color: var(--profile-muted); font-size: .76rem; }
.ob-frozen-profile__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }

/* Dashboard vote editor. */
.ob-vote-dashboard-intro { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; padding: 15px; border: 1px solid rgba(22,131,255,.18); border-radius: 17px; background: linear-gradient(135deg,rgba(22,131,255,.09),rgba(116,78,220,.06)); }
.ob-vote-dashboard-intro > span { display: grid; place-items: center; flex: 0 0 40px; height: 40px; border-radius: 13px; background: #1683ff; color: #fff; }
.ob-vote-dashboard-intro strong,.ob-vote-dashboard-intro p { display: block; margin: 0; }
.ob-vote-dashboard-intro p { margin-top: 4px; color: var(--ob-muted,#758199); font-size: .74rem; line-height: 1.5; }
.ob-vote-board-editor-list { display: grid; gap: 14px; margin-top: 14px; }
.ob-vote-board-editor { padding: 15px; border: 1px solid var(--ob-line,rgba(127,139,168,.2)); border-radius: 19px; background: var(--ob-surface-soft,rgba(255,255,255,.025)); }
.ob-vote-board-editor > header { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 11px; align-items: center; margin-bottom: 12px; }
.ob-vote-board-editor__number { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: rgba(22,131,255,.12); color: #1683ff; font-weight: 900; }
.ob-vote-board-editor header small,.ob-vote-board-editor header h3 { display: block; margin: 0; }
.ob-vote-board-editor header small { color: var(--ob-muted,#758199); font-size: .67rem; }
.ob-vote-board-editor header h3 { margin-top: 2px; font-size: .98rem; }
.ob-vote-board-editor header em,.ob-vote-candidate-editor summary em { padding: 5px 8px; border-radius: 999px; background: rgba(126,139,165,.1); color: var(--ob-muted,#758199); font-style: normal; font-size: .63rem; font-weight: 850; }
.ob-vote-board-editor header em.is-active,.ob-vote-candidate-editor summary em.is-active { background: rgba(30,177,110,.12); color: #15915b; }
.ob-vote-candidate-editor-list { display: grid; gap: 8px; margin-top: 10px; }
.ob-vote-candidate-editor { border: 1px solid var(--ob-line,rgba(127,139,168,.18)); border-radius: 15px; background: var(--ob-surface,rgba(255,255,255,.5)); overflow: hidden; }
.ob-vote-candidate-editor > summary { display: grid; grid-template-columns: auto 42px minmax(0,1fr) auto auto; gap: 9px; align-items: center; padding: 10px; cursor: pointer; list-style: none; }
.ob-vote-candidate-editor > summary::-webkit-details-marker { display: none; }
.ob-vote-candidate-editor > summary img,.ob-vote-candidate-editor > summary > b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; object-fit: cover; background: rgba(22,131,255,.1); color: #1683ff; }
.ob-vote-candidate-editor__rank { font-size: .66rem; font-weight: 900; color: var(--ob-muted,#758199); }
.ob-vote-candidate-editor summary strong,.ob-vote-candidate-editor summary small { display: block; }
.ob-vote-candidate-editor summary small { color: var(--ob-muted,#758199); font-size: .65rem; }

/* Checkout timer, QR download and reassuring payment state. */
.ob-checkout-qr__frame { position: relative; }
.ob-checkout-qr__scanline { position: absolute; z-index: 2; left: 9%; right: 9%; top: 9%; height: 2px; border-radius: 99px; background: linear-gradient(90deg,transparent,#1683ff,transparent); box-shadow: 0 0 14px rgba(22,131,255,.72); animation: ob-qr-scan 3.2s ease-in-out infinite; pointer-events: none; }
@keyframes ob-qr-scan { 50% { transform: translateY(274px); opacity: .45; } }
.ob-checkout-download { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; margin-top: 10px; padding: 0 14px; border: 1px solid rgba(22,131,255,.24); border-radius: 12px; background: rgba(22,131,255,.08); color: #1683ff; font-size: .76rem; font-weight: 850; text-decoration: none; }
.ob-checkout-download:hover { background: rgba(22,131,255,.14); }
.ob-checkout-countdown { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 13px; align-items: center; margin-top: 16px; padding: 15px; border: 1px solid rgba(22,131,255,.2); border-radius: 17px; background: linear-gradient(135deg,rgba(22,131,255,.09),rgba(75,79,197,.06)); }
.ob-checkout-countdown__icon { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 14px; background: #1683ff; color: #fff; box-shadow: 0 12px 27px rgba(22,131,255,.25); }
.ob-checkout-countdown small,.ob-checkout-countdown strong,.ob-checkout-countdown p { display: block; margin: 0; }
.ob-checkout-countdown small { color: var(--ob-muted,#758199); font-size: .68rem; font-weight: 800; }
.ob-checkout-countdown strong { margin-top: 2px; color: var(--ob-text,#111827); font-size: 1.35rem; letter-spacing: .04em; font-variant-numeric: tabular-nums; }
.ob-checkout-countdown p { margin-top: 2px; color: var(--ob-muted,#758199); font-size: .67rem; line-height: 1.4; }
.ob-checkout-countdown time { color: var(--ob-muted,#758199); font-size: .68rem; }
.ob-checkout-countdown.is-urgent { border-color: rgba(230,153,40,.36); background: rgba(230,153,40,.08); }
.ob-checkout-countdown.is-urgent .ob-checkout-countdown__icon { background: #d99024; }
.ob-checkout-countdown.is-expired { border-color: rgba(220,71,88,.32); background: rgba(220,71,88,.07); }
.ob-checkout-countdown.is-expired .ob-checkout-countdown__icon { background: #cf4050; }
.ob-checkout-reassurance { display: flex; gap: 12px; align-items: flex-start; margin-top: 13px; padding: 15px; border: 1px solid rgba(39,173,112,.2); border-radius: 17px; background: rgba(39,173,112,.07); }
.ob-checkout-reassurance > span { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 12px; background: rgba(39,173,112,.14); color: #16905a; }
.ob-checkout-reassurance strong,.ob-checkout-reassurance p,.ob-checkout-reassurance small { display: block; margin: 0; }
.ob-checkout-reassurance strong { color: var(--ob-text,#111827); font-size: .84rem; }
.ob-checkout-reassurance p { margin-top: 4px; color: var(--ob-muted,#758199); font-size: .74rem; line-height: 1.5; }
.ob-checkout-reassurance small { margin-top: 5px; color: var(--ob-muted,#758199); font-size: .68rem; line-height: 1.5; }
.ob-checkout-check-button { display: grid !important; justify-items: center; gap: 2px; min-height: 58px; }
.ob-checkout-check-button > span { display: inline-flex; align-items: center; gap: 8px; }
.ob-checkout-check-button > small { color: rgba(255,255,255,.78); font-size: .65rem; font-weight: 650; }
.ob-checkout-feedback[data-type="info"] { padding: 12px; border-radius: 12px; background: rgba(22,131,255,.08); color: #386ca8; line-height: 1.55; }
.ob-checkout-feedback[data-type="error"] { padding: 12px; border-radius: 12px; background: rgba(220,71,88,.08); color: #bc3949; }
html[data-ob-theme="dark"] .ob-checkout-countdown strong,html[data-ob-theme="dark"] .ob-checkout-reassurance strong { color: #f2f5fb; }
html[data-ob-theme="dark"] .ob-checkout-feedback[data-type="info"] { color: #8fc7ff; }

/* Template preview swatches for the three new component categories. */
[class*="ob-template-swatch--support_template-"] { background: linear-gradient(135deg,#0d1a32,#1683ff); }
.ob-template-swatch--support_template-manga { background: linear-gradient(135deg,#fff 0 45%,#111 45% 55%,#fff 55%); }
.ob-template-swatch--support_template-horror { background: radial-gradient(circle,#9a67ff 0 8%,transparent 9%),linear-gradient(135deg,#080710,#2b1537); }
[class*="ob-template-swatch--product_template-"] { background: linear-gradient(145deg,#eaf3ff,#1683ff); }
.ob-template-swatch--product_template-horror { background: linear-gradient(145deg,#080710,#5b357b); }
[class*="ob-template-swatch--vote_template-"] { background: linear-gradient(145deg,#1683ff,#7a5ce6); }
.ob-template-swatch--vote_template-horror { background: radial-gradient(circle at 50% 20%,#8d60d6,transparent 32%),#090712; }
.ob-template-swatch--header_template-haunted { background: radial-gradient(circle at 65% 25%,#875bbb,transparent 30%),linear-gradient(145deg,#05050a,#25132e); }

@media (max-width: 820px) {
    .ob-public-card--creator-enabled { width: min(100%,calc(100vw - 18px)); }
    .ob-public-tabs { gap: 13px; }
    .ob-public-tabs__nav { position: sticky; top: 8px; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 5px; padding: 5px; border-radius: 15px; }
    .ob-public-tabs__nav button { min-height: 43px; padding: 8px 7px; font-size: .68rem; }
    .ob-public-tabs__nav button span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .ob-public-tabs__nav i { min-width: 19px; height: 19px; padding: 0 5px; }
    .ob-creator-public--studio { grid-template-columns: 1fr; gap: 12px; margin-top: 16px; padding: 12px; border-radius: 21px; }
    .ob-creator-public__intro { padding: 16px; border-radius: 17px; }
    .ob-creator-public__trust { margin-top: 0; }
    .ob-creator-support-form { padding: 15px; border-radius: 17px; }
    .ob-creator-support-form__identity { grid-template-columns: 1fr; }
    .ob-support-amount__presets { grid-template-columns: 1fr 1fr; }
    .ob-creator-support-form input:not([type="checkbox"]),.ob-creator-support-form textarea { font-size: 16px; }
    .ob-tpl-support--compact .ob-creator-public--studio { grid-template-columns: 1fr; padding: 10px; }
    .ob-creator-product-grid,.ob-tpl-product--poster .ob-creator-product-grid { grid-template-columns: 1fr; }
    .ob-tpl-product--catalog .ob-creator-product-grid > article { grid-template-columns: 112px minmax(0,1fr); }
    .ob-creator-product-form { grid-template-columns: 1fr; }
    .ob-creator-product-form .ob-button { grid-column: 1; }
    .ob-vote-public { padding: 13px; border-radius: 20px; }
    .ob-vote-board { padding: 12px; }
    .ob-vote-candidate { grid-template-columns: auto 52px minmax(0,1fr); }
    .ob-vote-candidate__image { width: 52px; height: 52px; }
    .ob-vote-candidate form { grid-column: 1/-1; }
    .ob-vote-candidate form button { width: 100%; justify-content: center; }
    .ob-tpl-vote--arena .ob-vote-candidates,.ob-tpl-vote--cards .ob-vote-candidates { grid-template-columns: 1fr; }
    .ob-tpl-vote--cards .ob-vote-candidate { grid-template-columns: auto 52px minmax(0,1fr); text-align: left; }
    .ob-tpl-vote--cards .ob-vote-rank { position: static; }
    .ob-tpl-vote--cards .ob-vote-candidate__image { width: 52px; height: 52px; aspect-ratio: 1; }
    .ob-vote-candidate-editor > summary { grid-template-columns: auto 40px minmax(0,1fr) auto; }
    .ob-vote-candidate-editor > summary > em { grid-column: 3; justify-self: start; }
    .ob-vote-candidate-editor > summary > svg { grid-column: 4; grid-row: 1/3; }
    .ob-checkout-countdown { grid-template-columns: auto minmax(0,1fr); }
    .ob-checkout-countdown time { grid-column: 2; }
}

@media (max-width: 460px) {
    .ob-public-tabs__nav button { gap: 5px; font-size: .62rem; }
    .ob-public-tabs__nav svg { width: 15px; height: 15px; }
    .ob-public-tabs__nav i { display: none; }
    .ob-support-stepper { grid-template-columns: 43px auto minmax(0,1fr) 43px; }
    .ob-tpl-product--catalog .ob-creator-product-grid > article { grid-template-columns: 1fr; }
    .ob-product-card__cover,.ob-tpl-product--catalog .ob-product-card__cover { min-height: 135px; }
    .ob-vote-candidate { grid-template-columns: auto 48px minmax(0,1fr); gap: 8px; }
    .ob-vote-candidate__image { width: 48px; height: 48px; border-radius: 12px; }
    .ob-vote-candidate__content p { display: none; }
    .ob-checkout-reassurance { padding: 12px; }
    .ob-checkout-countdown { padding: 12px; }
    .ob-checkout-countdown strong { font-size: 1.16rem; }
}


/* 0.5.2 final responsive correction: visible profile tabs always share the row. */
.ob-public-tabs__nav {
    grid-template-columns: repeat(auto-fit,minmax(150px,1fr));
}
@media (max-width:820px) {
    .ob-public-tabs__nav {
        grid-template-columns: repeat(auto-fit,minmax(92px,1fr));
    }
}

/* ======================================================================
   Otakubio 0.5.4 — Editorial Creator UI
   Distinct premium badges, flat component families, compact tabs,
   square vote art, elegant amount control and richer dashboard preview.
   ====================================================================== */

/* Premium badges: the check remains the trust symbol, but every family now
   has a genuinely different silhouette, material and accent. */
.ob-premium-check,
.ob-preview-premium {
    position: relative;
    isolation: isolate;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 50%;
    background: #1677e8;
    color: #fff;
    box-shadow: none;
    transform: none;
}
.ob-premium-check .ob-icon,
.ob-preview-premium .ob-icon { position: relative; z-index: 3; width: 13px; height: 13px; stroke-width: 3; }
.ob-premium-check::before,.ob-premium-check::after,
.ob-preview-premium::before,.ob-preview-premium::after { content:""; position:absolute; pointer-events:none; }
.ob-preview-premium.is-preview-only { opacity: .48; filter: saturate(.65); }

.ob-tpl-premium--crown .ob-premium-check,
.ob-tpl-premium--crown .ob-preview-premium { background:#12376d; box-shadow:0 0 0 2px #e3b84d,0 5px 12px rgba(11,31,65,.34); }
.ob-tpl-premium--crown .ob-premium-check::before,
.ob-tpl-premium--crown .ob-preview-premium::before { z-index:2; width:14px; height:7px; top:-6px; background:#f0c85a; clip-path:polygon(0 100%,5% 25%,28% 65%,50% 0,72% 65%,95% 25%,100% 100%); }

.ob-tpl-premium--verify .ob-premium-check,
.ob-tpl-premium--verify .ob-preview-premium { width:27px; height:20px; border-radius:6px; background:#f7fbff; color:#176ed1; box-shadow:inset 0 0 0 2px #176ed1,0 4px 10px rgba(17,75,139,.18); }

.ob-tpl-premium--crystal .ob-premium-check,
.ob-tpl-premium--crystal .ob-preview-premium { width:24px; height:24px; border-radius:5px 11px 5px 11px; background:#8fe8f5; color:#153b86; box-shadow:inset -5px -5px 0 rgba(97,90,218,.32),0 0 0 2px rgba(225,254,255,.9),0 6px 14px rgba(93,207,230,.28); transform:rotate(45deg); }
.ob-tpl-premium--crystal .ob-premium-check svg,
.ob-tpl-premium--crystal .ob-preview-premium svg { transform:rotate(-45deg); }

.ob-tpl-premium--ribbon .ob-premium-check,
.ob-tpl-premium--ribbon .ob-preview-premium { width:29px; height:20px; border-radius:4px; background:#5547a8; color:#fff; clip-path:polygon(0 0,100% 0,88% 50%,100% 100%,0 100%,12% 50%); box-shadow:none; }
.ob-tpl-premium--ribbon .ob-premium-check::after,
.ob-tpl-premium--ribbon .ob-preview-premium::after { z-index:-1; inset:3px -3px -3px 3px; background:#211c4d; clip-path:inherit; }

.ob-tpl-premium--minimal .ob-premium-check,
.ob-tpl-premium--minimal .ob-preview-premium { width:22px; height:22px; border:1.5px solid currentColor; background:transparent; color:#2380de; box-shadow:none; }

.ob-tpl-premium--star .ob-premium-check,
.ob-tpl-premium--star .ob-preview-premium { width:26px; height:26px; border-radius:0; background:#e8b938; color:#123b73; clip-path:polygon(50% 0,61% 35%,98% 35%,68% 56%,79% 92%,50% 70%,21% 92%,32% 56%,2% 35%,39% 35%); box-shadow:none; }
.ob-tpl-premium--star .ob-premium-check .ob-icon,
.ob-tpl-premium--star .ob-preview-premium .ob-icon { width:11px; height:11px; }

.ob-tpl-premium--ticket .ob-premium-check,
.ob-tpl-premium--ticket .ob-preview-premium { width:31px; height:21px; border-radius:2px; background:#f5edd7; color:#155da9; box-shadow:inset 0 0 0 2px #155da9; clip-path:polygon(0 0,100% 0,100% 34%,88% 50%,100% 66%,100% 100%,0 100%,0 66%,12% 50%,0 34%); }

.ob-tpl-premium--diamond .ob-premium-check,
.ob-tpl-premium--diamond .ob-preview-premium { width:25px; height:25px; border-radius:4px; background:#6656c8; color:#fff; clip-path:polygon(50% 0,100% 38%,78% 100%,22% 100%,0 38%); box-shadow:inset 0 0 0 2px rgba(157,239,245,.72),0 5px 13px rgba(70,58,160,.3); }

.ob-tpl-premium--wing .ob-premium-check,
.ob-tpl-premium--wing .ob-preview-premium { background:#236fcd; box-shadow:0 4px 11px rgba(26,83,151,.25); }
.ob-tpl-premium--wing .ob-premium-check::before,
.ob-tpl-premium--wing .ob-preview-premium::before { z-index:-1; width:35px; height:16px; background:#d9e1ea; clip-path:polygon(0 20%,36% 42%,45% 100%,50% 47%,55% 100%,64% 42%,100% 20%,73% 70%,50% 55%,27% 70%); }

.ob-tpl-premium--seal .ob-premium-check,
.ob-tpl-premium--seal .ob-preview-premium { width:26px; height:26px; border-radius:0; background:#152f5a; color:#fff; clip-path:polygon(50% 0,61% 8%,75% 5%,82% 18%,95% 25%,92% 40%,100% 50%,92% 61%,95% 75%,81% 82%,75% 95%,61% 92%,50% 100%,39% 92%,25% 95%,18% 82%,5% 75%,8% 61%,0 50%,8% 39%,5% 25%,18% 18%,25% 5%,39% 8%); box-shadow:inset 0 0 0 3px #d1a94c; }

.ob-tpl-premium--bluecheck .ob-premium-check,
.ob-tpl-premium--bluecheck .ob-preview-premium { background:#1683ff; box-shadow:0 0 0 3px rgba(61,210,255,.18),0 0 18px rgba(39,199,255,.75),0 5px 13px rgba(20,101,206,.35); }
.ob-tpl-premium--bluecheck .ob-premium-check::after,
.ob-tpl-premium--bluecheck .ob-preview-premium::after { z-index:-1; inset:-6px; border:1px solid rgba(87,226,255,.38); border-radius:50%; }

.ob-tpl-premium--comet .ob-premium-check,
.ob-tpl-premium--comet .ob-preview-premium { background:#29bccc; color:#083f62; box-shadow:0 5px 13px rgba(17,136,155,.28); }
.ob-tpl-premium--comet .ob-premium-check::before,
.ob-tpl-premium--comet .ob-preview-premium::before { z-index:-1; width:23px; height:9px; right:13px; background:#8cedf5; clip-path:polygon(0 50%,100% 0,72% 50%,100% 100%); }

.ob-tpl-premium--orbit .ob-premium-check,
.ob-tpl-premium--orbit .ob-preview-premium { background:#172d69; color:#d9eaff; box-shadow:0 4px 12px rgba(8,20,61,.32); }
.ob-tpl-premium--orbit .ob-premium-check::after,
.ob-tpl-premium--orbit .ob-preview-premium::after { inset:-5px -8px; border:1.5px solid #64a9e9; border-radius:50%; transform:rotate(-25deg); }

.ob-tpl-premium--crest .ob-premium-check,
.ob-tpl-premium--crest .ob-preview-premium { width:25px; height:27px; border-radius:4px; background:#214f91; color:#fff; clip-path:polygon(50% 0,92% 16%,86% 69%,50% 100%,14% 69%,8% 16%); box-shadow:inset 0 0 0 2px #d8b458,0 5px 12px rgba(16,47,92,.3); }

.ob-tpl-premium--pulse .ob-premium-check,
.ob-tpl-premium--pulse .ob-preview-premium { background:#0572dc; box-shadow:0 0 0 0 rgba(5,114,220,.35); animation:ob053-pulse 2s ease-out infinite; }
.ob-tpl-premium--pulse .ob-premium-check::after,
.ob-tpl-premium--pulse .ob-preview-premium::after { width:5px; height:5px; right:-3px; top:1px; border-radius:50%; background:#57e4d4; box-shadow:0 0 8px #57e4d4; }
@keyframes ob053-pulse { 65%,100% { box-shadow:0 0 0 8px rgba(5,114,220,0); } }

/* Template cards must preview the real badge personality, not generic blue pills. */
[class*="ob-template-swatch--premium_template-"] { position:relative; display:grid; place-items:center; background:#eef1f7 !important; }
[class*="ob-template-swatch--premium_template-"]::before { content:"✓" !important; display:grid !important; place-items:center !important; position:relative !important; inset:auto !important; width:27px !important; height:27px !important; margin:0 !important; padding:0 !important; border:0 !important; border-radius:50%; background:#1683ff; color:#fff; font:900 15px/1 sans-serif !important; box-shadow:none; transform:none; clip-path:none; }
[class*="ob-template-swatch--premium_template-"]::after { content:"" !important; position:absolute !important; inset:auto !important; margin:0 !important; padding:0 !important; font-size:0 !important; }
.ob-template-swatch--premium_template-crown::before { background:#12376d; box-shadow:0 0 0 3px #e3b84d; }
.ob-template-swatch--premium_template-crown::after { top:12px !important; width:19px !important; height:9px !important; background:#f0c85a; clip-path:polygon(0 100%,5% 25%,28% 65%,50% 0,72% 65%,95% 25%,100% 100%); }
.ob-template-swatch--premium_template-verify::before { width:45px !important; height:25px !important; border-radius:7px; background:#fff; color:#176ed1; box-shadow:inset 0 0 0 2px #176ed1; }
.ob-template-swatch--premium_template-crystal::before { border-radius:5px 12px; background:#91ebf5; color:#213986; box-shadow:inset -7px -7px 0 rgba(101,82,198,.28); transform:rotate(45deg); }
.ob-template-swatch--premium_template-ribbon::before { width:43px !important; height:25px !important; border-radius:3px; background:#5547a8; clip-path:polygon(0 0,100% 0,88% 50%,100% 100%,0 100%,12% 50%); }
.ob-template-swatch--premium_template-minimal::before { background:transparent; color:#2380de; box-shadow:inset 0 0 0 2px #2380de; }
.ob-template-swatch--premium_template-star::before { width:35px !important; height:35px !important; border-radius:0; background:#e8b938; color:#123b73; clip-path:polygon(50% 0,61% 35%,98% 35%,68% 56%,79% 92%,50% 70%,21% 92%,32% 56%,2% 35%,39% 35%); }
.ob-template-swatch--premium_template-ticket::before { width:48px !important; height:27px !important; border-radius:0; background:#f5edd7; color:#155da9; box-shadow:inset 0 0 0 2px #155da9; clip-path:polygon(0 0,100% 0,100% 34%,88% 50%,100% 66%,100% 100%,0 100%,0 66%,12% 50%,0 34%); }
.ob-template-swatch--premium_template-diamond::before { border-radius:0; background:#6656c8; box-shadow:inset 0 0 0 2px #9deff5; clip-path:polygon(50% 0,100% 38%,78% 100%,22% 100%,0 38%); }
.ob-template-swatch--premium_template-wing::before { background:#236fcd; box-shadow:-14px 2px 0 -7px #cbd5df,14px 2px 0 -7px #cbd5df; }
.ob-template-swatch--premium_template-seal::before { width:34px !important; height:34px !important; border-radius:0; background:#152f5a; box-shadow:inset 0 0 0 4px #d1a94c; clip-path:polygon(50% 0,61% 8%,75% 5%,82% 18%,95% 25%,92% 40%,100% 50%,92% 61%,95% 75%,81% 82%,75% 95%,61% 92%,50% 100%,39% 92%,25% 95%,18% 82%,5% 75%,8% 61%,0 50%,8% 39%,5% 25%,18% 18%,25% 5%,39% 8%); }
.ob-template-swatch--premium_template-bluecheck::before { box-shadow:0 0 0 4px rgba(61,210,255,.2),0 0 18px rgba(39,199,255,.75); }
.ob-template-swatch--premium_template-comet::before { background:#29bccc; color:#073d61; box-shadow:-15px 4px 0 -7px #8cedf5; }
.ob-template-swatch--premium_template-orbit::before { background:#172d69; color:#d9eaff; }
.ob-template-swatch--premium_template-orbit::after { width:46px !important; height:25px !important; border:2px solid #64a9e9; border-radius:50%; transform:rotate(-25deg); }
.ob-template-swatch--premium_template-crest::before { height:32px !important; border-radius:0; background:#214f91; box-shadow:inset 0 0 0 3px #d8b458; clip-path:polygon(50% 0,92% 16%,86% 69%,50% 100%,14% 69%,8% 16%); }
.ob-template-swatch--premium_template-pulse::before { background:#0572dc; box-shadow:0 0 0 7px rgba(5,114,220,.12); }

/* Tabs: quiet rail, no sticky capsule covering the profile. */
.ob-public-tabs { gap:18px; }
.ob-public-tabs__nav {
    position:static !important;
    z-index:auto;
    display:flex !important;
    justify-content:flex-start;
    gap:4px;
    max-width:100%;
    padding:0 4px;
    overflow-x:auto;
    border:0;
    border-bottom:1px solid color-mix(in srgb,var(--profile-muted) 24%,transparent);
    border-radius:0;
    background:transparent;
    box-shadow:none;
    backdrop-filter:none;
    scrollbar-width:none;
}
.ob-public-tabs__nav::-webkit-scrollbar { display:none; }
.ob-public-tabs__nav button {
    position:relative;
    flex:0 0 auto;
    min-height:42px;
    padding:8px 13px 10px;
    border-radius:8px 8px 0 0;
    color:var(--profile-muted);
    background:transparent !important;
    box-shadow:none !important;
    transform:none !important;
    font-size:.74rem;
}
.ob-public-tabs__nav button::after { content:""; position:absolute; left:12px; right:12px; bottom:-1px; height:2px; background:transparent; }
.ob-public-tabs__nav button:hover { color:var(--profile-text); }
.ob-public-tabs__nav button.is-active { color:var(--profile-text); }
.ob-public-tabs__nav button.is-active::after { background:var(--profile-accent); }
.ob-public-tabs__nav i { min-width:20px; height:20px; background:color-mix(in srgb,var(--profile-muted) 15%,transparent); color:var(--profile-muted); }
.ob-public-tabs__nav button.is-active i { background:color-mix(in srgb,var(--profile-accent) 15%,transparent); color:var(--profile-accent); }

/* Creator support: flatter surfaces and component-specific visual families. */
.ob-creator-public--studio {
    gap:16px;
    border:1px solid color-mix(in srgb,var(--profile-muted) 25%,transparent);
    background:var(--profile-card);
    box-shadow:0 18px 42px rgba(0,0,0,.14);
}
.ob-creator-public--studio::before { display:none; }
.ob-creator-public__intro,
.ob-creator-support-form { background:color-mix(in srgb,var(--profile-card) 96%,#10182a); box-shadow:none; }
.ob-support-form__head > span {
    border:1px solid color-mix(in srgb,var(--profile-accent) 36%,transparent);
    background:color-mix(in srgb,var(--profile-accent) 13%,var(--profile-card));
    color:var(--profile-accent);
    box-shadow:none;
}
.ob-support-form__head > span::after { content:""; width:5px; height:5px; margin-left:-4px; border-radius:50%; background:currentColor; }
.ob-creator-public__eyebrow { background:transparent; }
.ob-support-amount__presets button { background:transparent; box-shadow:none !important; }
.ob-support-amount__presets button.is-active { border-color:var(--profile-accent); background:color-mix(in srgb,var(--profile-accent) 11%,transparent); }

/* The custom amount remains one elegant horizontal control on every viewport. */
.ob-support-stepper {
    display:flex !important;
    align-items:stretch;
    min-width:0;
    min-height:54px;
    border-radius:13px;
    background:transparent;
}
.ob-support-stepper button { flex:0 0 48px; min-width:48px; border-radius:0; background:color-mix(in srgb,var(--profile-accent) 9%,transparent); }
.ob-support-stepper button:first-child { border-right:1px solid color-mix(in srgb,var(--profile-muted) 20%,transparent); }
.ob-support-stepper button:last-child { border-left:1px solid color-mix(in srgb,var(--profile-muted) 20%,transparent); }
.ob-support-stepper b { flex:0 0 auto; display:grid; place-items:center; padding:0 7px 0 13px; }
.ob-support-stepper input { flex:1 1 auto; width:1% !important; min-width:0 !important; text-align:left; }

/* Support templates are actual visual families, not recolored gradients. */
.ob-tpl-support--aurora .ob-creator-public--studio { border-top:3px solid #50c8e8; }
.ob-tpl-support--compact .ob-creator-public--studio { padding:10px; border-radius:15px; box-shadow:none; }
.ob-tpl-support--compact .ob-creator-public__intro,.ob-tpl-support--compact .ob-creator-support-form { padding:14px; border-radius:11px; }
.ob-tpl-support--glass .ob-creator-public--studio { border-color:rgba(255,255,255,.22); background:color-mix(in srgb,var(--profile-card) 78%,transparent); backdrop-filter:blur(16px); }
.ob-tpl-support--manga .ob-creator-public--studio { border:3px solid #121212; border-radius:4px; background:#fbfaf4; color:#151515; box-shadow:7px 7px 0 #151515; }
.ob-tpl-support--manga .ob-creator-public__intro,.ob-tpl-support--manga .ob-creator-support-form { border:2px solid #151515; border-radius:2px; background:#fff; color:#151515; }
.ob-tpl-support--manga .ob-creator-public__intro h2,.ob-tpl-support--manga .ob-support-form__head strong,.ob-tpl-support--manga .ob-creator-support-form label>span,.ob-tpl-support--manga .ob-support-amount>legend { color:#151515; }
.ob-tpl-support--manga .ob-creator-public__message,.ob-tpl-support--manga .ob-creator-support-form label>small { color:#4e4e4e; }
.ob-tpl-support--neon .ob-creator-public--studio { border:1px solid #42d9d2; border-left:5px solid #e64db1; background:#090b16; box-shadow:8px 8px 0 rgba(66,217,210,.15); }
.ob-tpl-support--shrine .ob-creator-public--studio { border:1px solid #b23a35; border-radius:10px; background:#f6edda; color:#3b2522; box-shadow:0 12px 28px rgba(87,35,29,.16); }
.ob-tpl-support--shrine .ob-creator-public__intro,.ob-tpl-support--shrine .ob-creator-support-form { border-color:#d8b98a; background:#fffaf0; }
.ob-tpl-support--shrine .ob-creator-public__intro h2,.ob-tpl-support--shrine .ob-support-form__head strong,.ob-tpl-support--shrine .ob-creator-support-form label>span,.ob-tpl-support--shrine .ob-support-amount>legend { color:#3b2522; }
.ob-tpl-support--horror .ob-creator-public--studio { border:1px solid #72548d; border-radius:8px; background:#0d0a12; box-shadow:0 18px 45px rgba(13,4,24,.5),inset 0 0 0 5px #171020; }
.ob-tpl-support--horror .ob-creator-public__intro { border-left:3px solid #a784c5; }

/* Product templates: clear materials and layouts without blanket gradients. */
.ob-tpl-product--gallery .ob-product-card { border-top:3px solid var(--profile-accent); }
.ob-tpl-product--catalog .ob-product-card { border-radius:8px; box-shadow:none; }
.ob-tpl-product--poster .ob-product-card { border:0; border-bottom:4px solid var(--profile-accent); border-radius:3px; }
.ob-tpl-product--manga .ob-product-card { border:3px solid #111; border-radius:2px; background:#fff; color:#111; box-shadow:5px 5px 0 #111; }
.ob-tpl-product--neon .ob-product-card { border:1px solid #35d8d2; border-left:4px solid #e84eaf; background:#080b15; box-shadow:none; }
.ob-tpl-product--shrine .ob-product-card { border:1px solid #b2473e; border-radius:8px; background:#fff8e9; color:#3a2723; }
.ob-tpl-product--horror .ob-product-card { border:1px solid #6d537e; border-radius:6px; background:#0c0910; box-shadow:inset 0 0 0 4px #17101e; }

/* Vote candidates use true square artwork. */
.ob-vote-candidate__image,
.ob-tpl-vote--cards .ob-vote-candidate__image {
    width:74px;
    height:74px;
    aspect-ratio:1/1;
    border-radius:12px;
    overflow:hidden;
}
.ob-vote-candidate__image img { width:100%; height:100%; object-fit:cover; aspect-ratio:1/1; }
.ob-vote-candidate { align-items:center; }
.ob-vote-candidate__actions { display:flex; flex-wrap:wrap; gap:6px; justify-content:flex-end; }
.ob-vote-support-pick { border:1px solid color-mix(in srgb,var(--profile-accent) 35%,transparent); background:transparent; color:var(--profile-accent); }
.ob-vote-support-pick.is-active { background:color-mix(in srgb,var(--profile-accent) 13%,transparent); box-shadow:inset 3px 0 0 var(--profile-accent); }
.ob-vote-donation-form { border-top:1px solid color-mix(in srgb,var(--profile-muted) 22%,transparent); border-radius:0; background:transparent; box-shadow:none; }
.ob-vote-quantity { display:flex; min-height:48px; overflow:hidden; border:1px solid color-mix(in srgb,var(--profile-muted) 25%,transparent); border-radius:12px; }
.ob-vote-quantity button { flex:0 0 44px; border:0; background:color-mix(in srgb,var(--profile-accent) 9%,transparent); color:var(--profile-accent); font-size:1.1rem; }
.ob-vote-quantity input { flex:1; width:1%; min-width:0; border:0 !important; text-align:center; appearance:textfield; }
.ob-vote-quantity input::-webkit-inner-spin-button,.ob-vote-quantity input::-webkit-outer-spin-button { appearance:none; margin:0; }
.ob-tpl-vote--leaderboard .ob-vote-board { border-left:4px solid var(--profile-accent); }
.ob-tpl-vote--arena .ob-vote-board { border:2px solid currentColor; border-radius:4px; box-shadow:5px 5px 0 color-mix(in srgb,var(--profile-text) 25%,transparent); }
.ob-tpl-vote--cards .ob-vote-candidate { border:0; border-bottom:3px solid color-mix(in srgb,var(--profile-accent) 65%,transparent); border-radius:6px; }
.ob-tpl-vote--neon .ob-vote-board { border:1px solid #35d8d2; border-right:4px solid #e84eaf; background:#080b15; box-shadow:none; }
.ob-tpl-vote--shrine .ob-vote-public { border:1px solid #b2473e; border-radius:9px; background:#f7edd9; color:#3a2723; }
.ob-tpl-vote--horror .ob-vote-public { border:1px solid #765591; border-radius:7px; background:#0b0810; box-shadow:inset 0 0 0 4px #15101c; }

/* Template chooser swatches: flat/material previews instead of same gradients. */
[class*="ob-template-swatch--support_template-"] { background:#182238 !important; box-shadow:inset 0 0 0 2px #4fc8df; }
.ob-template-swatch--support_template-compact { background:#f4f5f7 !important; box-shadow:inset 0 0 0 1px #8d96a8; }
.ob-template-swatch--support_template-glass { background:rgba(168,195,222,.32) !important; box-shadow:inset 0 0 0 1px rgba(255,255,255,.8); }
.ob-template-swatch--support_template-manga { background:#fff !important; box-shadow:inset 0 0 0 3px #111,5px 5px 0 #111; }
.ob-template-swatch--support_template-neon { background:#080b15 !important; box-shadow:inset 4px 0 #e84eaf,inset -4px 0 #35d8d2; }
.ob-template-swatch--support_template-shrine { background:#f7edd9 !important; box-shadow:inset 0 0 0 2px #b2473e; }
.ob-template-swatch--support_template-horror { background:#0b0810 !important; box-shadow:inset 0 0 0 4px #24152e,inset 0 0 0 5px #765591; }
[class*="ob-template-swatch--product_template-"] { background:#f4f6f9 !important; box-shadow:inset 0 -4px var(--ob-primary,#1683ff); }
.ob-template-swatch--product_template-catalog { box-shadow:inset 4px 0 #79869b; }
.ob-template-swatch--product_template-poster { background:#202a40 !important; box-shadow:inset 0 -6px #edc14e; }
.ob-template-swatch--product_template-manga { background:#fff !important; box-shadow:inset 0 0 0 3px #111,5px 5px 0 #111; }
.ob-template-swatch--product_template-neon { background:#080b15 !important; box-shadow:inset 4px 0 #35d8d2,inset -4px 0 #e84eaf; }
.ob-template-swatch--product_template-shrine { background:#fff5df !important; box-shadow:inset 0 0 0 2px #b2473e; }
.ob-template-swatch--product_template-horror { background:#0b0810 !important; box-shadow:inset 0 0 0 4px #26172f; }
[class*="ob-template-swatch--vote_template-"] { background:#f5f6f8 !important; box-shadow:inset 4px 0 #1683ff; }
.ob-template-swatch--vote_template-arena { box-shadow:inset 0 0 0 3px #222,5px 5px 0 #222; }
.ob-template-swatch--vote_template-cards { box-shadow:inset 0 -5px #7b5ac7; }
.ob-template-swatch--vote_template-neon { background:#080b15 !important; box-shadow:inset 4px 0 #35d8d2,inset -4px 0 #e84eaf; }
.ob-template-swatch--vote_template-shrine { background:#f7edd9 !important; box-shadow:inset 0 0 0 2px #b2473e; }
.ob-template-swatch--vote_template-horror { background:#0b0810 !important; box-shadow:inset 0 0 0 4px #24152e; }

/* Rich dashboard preview: support, product and vote updates are visible. */
.ob-profile-preview { min-height:600px; }
.ob-profile-preview__studio { display:grid; gap:9px; margin-top:14px; text-align:left; }
.ob-profile-preview__studio-tabs { display:flex; gap:10px; padding-bottom:7px; overflow:hidden; border-bottom:1px solid rgba(255,255,255,.14); }
.ob-profile-preview__studio-tabs span { color:rgba(255,255,255,.52); font-size:.58rem; font-weight:800; }
.ob-profile-preview__studio-tabs span.is-active { color:#fff; }
.ob-preview-module { display:grid; gap:7px; padding:11px; border:1px solid rgba(255,255,255,.13); border-radius:12px; background:rgba(0,0,0,.15); }
.ob-preview-module--support { grid-template-columns:auto minmax(0,1fr); align-items:start; }
.ob-preview-module--support>span { display:grid; place-items:center; width:30px; height:30px; border-radius:8px; background:rgba(255,255,255,.12); }
.ob-preview-module small,.ob-preview-module strong,.ob-preview-module p { display:block; margin:0; }
.ob-preview-module small { color:rgba(255,255,255,.55); font-size:.55rem; text-transform:uppercase; letter-spacing:.06em; }
.ob-preview-module strong { color:#fff; font-size:.72rem; }
.ob-preview-module p { color:rgba(255,255,255,.62); font-size:.59rem; line-height:1.4; }
.ob-preview-target { grid-column:1/-1; display:flex; justify-content:space-between; gap:8px; padding-top:7px; border-top:1px solid rgba(255,255,255,.1); font-size:.59rem; }
.ob-preview-target[hidden] { display:none; }
.ob-preview-module header,.ob-preview-module--products>div,.ob-preview-module--vote>div { display:flex; align-items:center; gap:7px; }
.ob-preview-module header strong { flex:1; }
.ob-preview-module header i { display:grid; place-items:center; min-width:20px; height:20px; border-radius:99px; background:rgba(255,255,255,.12); color:#fff; font-style:normal; font-size:.55rem; }
.ob-preview-module--products>div span,.ob-preview-module--vote>div span { flex:1; min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; color:rgba(255,255,255,.78); font-size:.61rem; }
.ob-preview-module--products>div b,.ob-preview-module--vote>div b,.ob-preview-module--vote>div i { color:#fff; font-size:.6rem; font-style:normal; }

/* Home: flat editorial layout. The product is the focus, not decorative gradients. */
.ob-main .ob-hero--otaku { border-bottom:1px solid var(--ob-line,rgba(127,139,168,.2)); background:var(--ob-bg,#f6f7fb); }
.ob-main .ob-hero__glow,.ob-main .ob-phone-shadow { display:none; }
.ob-main .ob-hero__content h1 span { color:var(--ob-primary,#5b5ff2); background:none; -webkit-text-fill-color:currentColor; }
.ob-main .ob-kicker { border:1px solid var(--ob-line,rgba(127,139,168,.25)); background:var(--ob-surface,#fff); box-shadow:none; }
.ob-main .ob-phone--otaku { border:1px solid #313b55; background:#151c2f; box-shadow:12px 12px 0 rgba(33,42,67,.16); }
.ob-main .ob-floating-card { border:1px solid var(--ob-line,rgba(127,139,168,.22)); background:var(--ob-surface,#fff); box-shadow:6px 6px 0 rgba(28,39,65,.08); }
.ob-main .ob-platform-stats { border-block:1px solid var(--ob-line,rgba(127,139,168,.18)); background:var(--ob-surface,#fff); }
.ob-main .ob-platform-stats article { border-right:1px solid var(--ob-line,rgba(127,139,168,.18)); background:transparent; box-shadow:none; }
.ob-main .ob-feature-card { border:1px solid var(--ob-line,rgba(127,139,168,.22)); border-radius:12px; background:var(--ob-surface,#fff); box-shadow:none; }
.ob-main .ob-feature-card:nth-child(3n+1) { border-top:4px solid #2b78c5; }
.ob-main .ob-feature-card:nth-child(3n+2) { border-top:4px solid #b44c74; }
.ob-main .ob-feature-card:nth-child(3n) { border-top:4px solid #d09935; }
.ob-main .ob-feature-card--dark { border-color:#202a3d; background:#151c2c; color:#fff; }
.ob-main .ob-feature-card__icon { border:1px solid currentColor; background:transparent; box-shadow:none; }
.ob-main .ob-section--soft { background:color-mix(in srgb,var(--ob-bg,#f6f7fb) 68%,var(--ob-surface,#fff)); }
.ob-main .ob-plan-compare article { border:1px solid var(--ob-line,rgba(127,139,168,.22)); background:var(--ob-surface,#fff); box-shadow:none; }
.ob-main .ob-plan-compare article.is-premium { border-top:4px solid #d5ad4d; background:#171d2c; }
.ob-main .ob-final-cta { background:#171d2c; }

@media (min-width:821px) {
    .ob-public-tabs__nav { margin-inline:4px; }
    .ob-tpl-product--gallery .ob-creator-product-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .ob-tpl-vote--cards .ob-vote-candidates { grid-template-columns:repeat(3,minmax(0,1fr)); }
}

@media (max-width:820px) {
    .ob-public-card--creator-enabled { width:min(100%,calc(100vw - 12px)); }
    .ob-public-tabs { gap:12px; }
    .ob-public-tabs__nav { margin:0 -2px; padding-inline:2px; }
    .ob-public-tabs__nav button { min-height:39px; padding:7px 10px 9px; font-size:.68rem; }
    .ob-public-tabs__nav i { display:grid; }
    .ob-creator-public--studio { grid-template-columns:1fr; padding:11px; border-radius:17px; }
    .ob-creator-public__intro,.ob-creator-support-form { padding:15px; border-radius:13px; }
    .ob-support-form__head { align-items:flex-start; }
    .ob-support-amount__presets { grid-template-columns:1fr 1fr; }
    .ob-support-stepper button { flex-basis:44px; min-width:44px; }
    .ob-vote-candidate { grid-template-columns:auto 64px minmax(0,1fr); }
    .ob-vote-candidate__image,.ob-tpl-vote--cards .ob-vote-candidate__image { width:64px; height:64px; }
    .ob-vote-candidate__actions { grid-column:1/-1; justify-content:stretch; }
    .ob-vote-candidate__actions form,.ob-vote-candidate__actions button { flex:1; }
    .ob-vote-candidate__actions button { justify-content:center; width:100%; }
    .ob-vote-donation-form__grid { grid-template-columns:1fr; }
    .ob-vote-donation-form__footer { align-items:stretch; }
    .ob-vote-donation-form__footer .ob-button { width:100%; }
    .ob-profile-preview { min-height:560px; }
    .ob-main .ob-platform-stats article { border-right:0; border-bottom:1px solid var(--ob-line,rgba(127,139,168,.18)); }
}

@media (max-width:460px) {
    .ob-public-tabs__nav button { gap:5px; }
    .ob-public-tabs__nav button span { max-width:94px; }
    .ob-support-stepper { min-height:52px; }
    .ob-support-stepper button { flex-basis:42px; min-width:42px; }
    .ob-support-stepper b { padding-left:10px; }
    .ob-vote-candidate { grid-template-columns:auto 56px minmax(0,1fr); }
    .ob-vote-candidate__image,.ob-tpl-vote--cards .ob-vote-candidate__image { width:56px; height:56px; border-radius:9px; }
    .ob-vote-candidate__content p { display:none; }
}


/* ==========================================================================\n   Otakubio 0.5.4 — vote UI cleanup and aligned creator identity fields\n   ========================================================================== */

.ob-creator-support-form__identity {
    align-items: start;
}
.ob-creator-support-form__identity > label {
    display: grid;
    grid-template-rows: auto 54px auto;
    align-content: start;
    gap: 0;
    min-width: 0;
}
.ob-creator-support-form__identity > label > span {
    min-height: 24px;
    display: flex;
    align-items: flex-end;
}
.ob-creator-support-form__identity > label > input {
    width: 100%;
    height: 54px;
    min-height: 54px !important;
    box-sizing: border-box;
}
.ob-creator-support-form__identity > label > small {
    min-height: 20px;
}

.ob-vote-public {
    gap: 18px;
    padding: clamp(16px, 2.4vw, 26px);
    border-radius: 22px;
}
.ob-vote-public__header > span {
    background: color-mix(in srgb, var(--profile-accent) 14%, var(--profile-card));
    color: var(--profile-accent);
    box-shadow: none;
}
.ob-vote-board {
    display: grid;
    gap: 16px;
    padding: clamp(14px, 2vw, 20px);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--profile-muted) 25%, transparent);
    border-radius: 18px;
    background: color-mix(in srgb, var(--profile-card) 96%, transparent);
    box-shadow: none;
}
.ob-vote-board__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid color-mix(in srgb, var(--profile-muted) 18%, transparent);
}
.ob-vote-board__head h3 {
    margin: 7px 0 0;
    color: var(--profile-text);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.2;
}
.ob-vote-board__head p {
    margin: 7px 0 0;
    color: var(--profile-muted);
    font-size: .77rem;
    line-height: 1.55;
}
.ob-vote-board__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.ob-vote-board__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 4px 9px;
    border: 1px solid color-mix(in srgb, var(--profile-muted) 20%, transparent);
    border-radius: 999px;
    color: var(--profile-muted);
    background: transparent;
    font-size: .66rem;
    font-weight: 750;
    line-height: 1;
}
.ob-vote-board__meta span:first-child {
    border-color: color-mix(in srgb, var(--profile-accent) 32%, transparent);
    color: var(--profile-accent);
}
.ob-vote-board__chart {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid color-mix(in srgb, var(--profile-muted) 22%, transparent);
    border-radius: 11px;
    color: var(--profile-accent);
}
.ob-vote-candidates {
    display: grid;
    gap: 10px;
}
.ob-vote-candidate {
    display: grid;
    grid-template-columns: 34px 68px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--profile-muted) 19%, transparent);
    border-radius: 15px;
    background: transparent;
    box-shadow: none;
}
.ob-vote-candidate.is-leading {
    border-color: color-mix(in srgb, var(--profile-accent) 48%, transparent);
    background: color-mix(in srgb, var(--profile-accent) 6%, transparent);
}
.ob-vote-rank {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    color: var(--profile-muted);
    background: color-mix(in srgb, var(--profile-muted) 12%, transparent);
    font-size: .68rem;
    font-weight: 900;
}
.ob-vote-candidate.is-leading .ob-vote-rank {
    color: #fff;
    background: var(--profile-accent);
}
.ob-vote-candidate__image {
    width: 68px;
    height: 68px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--profile-muted) 22%, transparent);
    border-radius: 12px;
    background: color-mix(in srgb, var(--profile-muted) 9%, transparent);
}
.ob-vote-candidate__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ob-vote-candidate__content {
    min-width: 0;
}
.ob-vote-candidate__content h4 {
    margin: 0;
    color: var(--profile-text);
    font-size: .9rem;
    line-height: 1.25;
}
.ob-vote-candidate__content p {
    margin: 3px 0 0;
    overflow: hidden;
    color: var(--profile-muted);
    font-size: .67rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ob-vote-candidate__content > div {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 8px;
}
.ob-vote-candidate__content > div strong {
    color: var(--profile-accent);
    font-size: .86rem;
}
.ob-vote-candidate__content > div span {
    color: var(--profile-muted);
    font-size: .65rem;
}
.ob-vote-candidate__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.ob-vote-candidate__actions form {
    margin: 0;
}
.ob-vote-candidate__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 11px;
    font-size: .7rem;
    font-weight: 850;
    cursor: pointer;
    white-space: nowrap;
}
.ob-vote-primary-action {
    border: 1px solid var(--profile-accent);
    background: var(--profile-accent);
    color: #fff;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--profile-accent) 18%, transparent);
}
.ob-vote-primary-action:hover {
    transform: translateY(-1px);
}
.ob-vote-support-pick {
    border: 1px solid color-mix(in srgb, var(--profile-muted) 30%, transparent);
    background: transparent;
    color: var(--profile-muted);
    box-shadow: none;
}
.ob-vote-support-pick:hover,
.ob-vote-support-pick.is-active {
    border-color: color-mix(in srgb, var(--profile-accent) 55%, transparent);
    background: color-mix(in srgb, var(--profile-accent) 7%, transparent);
    color: var(--profile-accent);
    box-shadow: none;
}
.ob-vote-support-panel[hidden] {
    display: none !important;
}
.ob-vote-support-panel {
    display: grid;
    gap: 15px;
    padding: clamp(14px, 2vw, 18px);
    border: 1px solid color-mix(in srgb, var(--profile-accent) 34%, transparent);
    border-radius: 16px;
    background: color-mix(in srgb, var(--profile-accent) 5%, var(--profile-card));
    animation: obVotePanelIn .18s ease both;
}
@keyframes obVotePanelIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.ob-vote-support-panel > header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
}
.ob-vote-support-panel > header small,
.ob-vote-support-panel > header h4,
.ob-vote-support-panel > header p {
    display: block;
    margin: 0;
}
.ob-vote-support-panel > header small {
    color: var(--profile-accent);
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.ob-vote-support-panel > header h4 {
    margin-top: 3px;
    color: var(--profile-text);
    font-size: 1rem;
}
.ob-vote-support-panel > header p {
    margin-top: 5px;
    color: var(--profile-muted);
    font-size: .72rem;
    line-height: 1.45;
}
.ob-vote-support-panel > header > button {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid color-mix(in srgb, var(--profile-muted) 24%, transparent);
    border-radius: 10px;
    background: transparent;
    color: var(--profile-muted);
    cursor: pointer;
}
.ob-vote-donation-form {
    display: grid;
    gap: 14px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.ob-vote-donation-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 12px;
}
.ob-vote-field {
    display: grid;
    gap: 7px;
    min-width: 0;
}
.ob-vote-field > span {
    color: var(--profile-text);
    font-size: .7rem;
    font-weight: 850;
}
.ob-vote-field input,
.ob-vote-field select {
    width: 100%;
    min-width: 0;
    height: 48px;
    padding: 0 13px;
    border: 1px solid color-mix(in srgb, var(--profile-muted) 27%, transparent);
    border-radius: 11px;
    outline: none;
    background: color-mix(in srgb, var(--profile-card) 98%, transparent);
    color: var(--profile-text);
    font: inherit;
    font-size: .79rem;
}
.ob-vote-field input:focus,
.ob-vote-field select:focus {
    border-color: var(--profile-accent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--profile-accent) 13%, transparent);
}
.ob-vote-quantity {
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr) 45px;
    min-height: 48px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--profile-muted) 27%, transparent);
    border-radius: 11px;
    background: color-mix(in srgb, var(--profile-card) 98%, transparent);
}
.ob-vote-quantity button {
    border: 0;
    background: color-mix(in srgb, var(--profile-accent) 8%, transparent);
    color: var(--profile-accent);
    cursor: pointer;
    font-size: 1.05rem;
}
.ob-vote-quantity input {
    width: 100%;
    min-width: 0;
    height: 46px;
    padding: 0;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    color: var(--profile-text);
    text-align: center;
    box-shadow: none !important;
    appearance: textfield;
}
.ob-vote-anonymous {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--profile-muted);
    font-size: .72rem;
}
.ob-vote-donation-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 13px;
    border-top: 1px solid color-mix(in srgb, var(--profile-muted) 18%, transparent);
}
.ob-vote-donation-form__footer small,
.ob-vote-donation-form__footer strong {
    display: block;
}
.ob-vote-donation-form__footer small {
    color: var(--profile-muted);
    font-size: .64rem;
}
.ob-vote-donation-form__footer strong {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 3px;
    color: var(--profile-text);
    font-size: .86rem;
}
.ob-vote-donation-form__footer strong i {
    color: var(--profile-muted);
    font-style: normal;
}
.ob-vote-donation-form__footer .ob-button {
    min-height: 44px;
    padding-inline: 17px;
    border-radius: 11px;
    background: var(--profile-accent);
    box-shadow: none;
}
.ob-profile-toast[data-profile-flash] {
    transition: opacity .3s ease, transform .3s ease;
}
.ob-profile-toast[data-profile-flash].is-leaving {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

@media (max-width: 820px) {
    .ob-creator-support-form__identity {
        grid-template-columns: 1fr;
    }
    .ob-creator-support-form__identity > label {
        grid-template-rows: auto 52px auto;
    }
    .ob-vote-public {
        padding: 13px;
        border-radius: 17px;
    }
    .ob-vote-board {
        padding: 12px;
        border-radius: 15px;
    }
    .ob-vote-board__head {
        grid-template-columns: minmax(0, 1fr) 34px;
        gap: 10px;
    }
    .ob-vote-board__chart {
        width: 34px;
        height: 34px;
    }
    .ob-vote-candidate {
        grid-template-columns: 31px 58px minmax(0, 1fr);
        gap: 9px;
        padding: 10px;
    }
    .ob-vote-candidate__image {
        width: 58px;
        height: 58px;
        border-radius: 10px;
    }
    .ob-vote-candidate__actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        width: 100%;
        padding-top: 4px;
    }
    .ob-vote-candidate__actions form,
    .ob-vote-candidate__actions button {
        width: 100%;
    }
    .ob-vote-candidate__actions button {
        min-height: 44px;
        padding-inline: 9px;
        white-space: normal;
    }
    .ob-vote-donation-form__grid {
        grid-template-columns: 1fr;
    }
    .ob-vote-donation-form__footer {
        align-items: stretch;
        flex-direction: column;
    }
    .ob-vote-donation-form__footer .ob-button {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .ob-vote-candidate__actions {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================
   Otakubio 0.5.5 — separate feature pages and calmer surfaces
   ========================================================== */
.ob5-profile-page {
    --ob5-surface: #171d31;
    --ob5-surface-2: #1d2439;
    --ob5-line: rgba(148, 163, 184, .22);
    --ob5-accent: #47c9ed;
}
.ob5-public-card {
    width: min(680px, calc(100% - 32px));
    padding: 28px;
    border: 1px solid var(--ob5-line);
    border-radius: 26px;
    background: var(--ob5-surface);
    box-shadow: 0 22px 60px rgba(2, 6, 23, .28);
}
.ob-profile-section--donasi .ob5-public-card,
.ob-profile-section--produk-digital .ob5-public-card,
.ob-profile-section--vote .ob5-public-card {
    width: min(1040px, calc(100% - 32px));
}
.ob5-profile-identity { padding-top: 14px; }
.ob5-bio-links { display: grid; gap: 12px; }
.ob5-bio-links .ob-public-link,
.ob5-bio-links .ob4-public-link-row {
    margin: 0;
}
.ob5-bio-links .ob-public-link {
    min-height: 62px;
    background: rgba(255,255,255,.025);
    border: 1px solid var(--ob5-line);
    box-shadow: none;
}
.ob5-bio-links .ob-public-link:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--profile-accent) 55%, var(--ob5-line));
    background: rgba(255,255,255,.045);
}
.ob5-bio-links .ob-public-link__icon {
    background: rgba(255,255,255,.06);
    color: var(--profile-accent);
}
.ob-public-feature-link { position: relative; }
.ob-public-feature-link::before {
    content: "";
    position: absolute;
    inset: 9px auto 9px 0;
    width: 3px;
    border-radius: 99px;
    background: var(--profile-accent);
}
.ob-public-feature-link em {
    min-width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: var(--profile-muted);
    font-size: .72rem;
    font-style: normal;
}
.ob5-feature-header {
    display: grid;
    grid-template-columns: 40px 48px minmax(0,1fr);
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    padding: 0 44px 18px 0;
    border-bottom: 1px solid var(--ob5-line);
}
.ob5-feature-header > a {
    width: 40px; height: 40px; display: grid; place-items: center;
    border: 1px solid var(--ob5-line); border-radius: 12px;
    color: var(--profile-text); transform: rotate(180deg);
}
.ob5-feature-header > img { width: 48px; height: 48px; object-fit: cover; border-radius: 14px; }
.ob5-feature-header small { color: var(--profile-muted); }
.ob5-feature-header h1 { margin: 2px 0 0; font-size: clamp(1.15rem, 3vw, 1.55rem); }
.ob5-unavailable { max-width: 520px; margin: 40px auto; text-align: center; }
.ob5-unavailable > span { width: 56px; height: 56px; margin: 0 auto 16px; display: grid; place-items: center; border: 1px solid var(--ob5-line); border-radius: 16px; color: var(--profile-accent); }
.ob5-unavailable h1 { margin: 0 0 8px; }
.ob5-unavailable p { color: var(--profile-muted); }

/* Donation gets its own page, without a box inside another box. */
.ob5-donation-page {
    display: grid;
    grid-template-columns: minmax(240px,.8fr) minmax(420px,1.25fr);
    gap: 34px;
    align-items: start;
}
.ob5-donation-page .ob-creator-public__intro,
.ob5-donation-page .ob-creator-support-form {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}
.ob5-donation-page .ob-creator-target {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid var(--ob5-line);
    background: rgba(255,255,255,.025);
    border-radius: 16px;
}
.ob5-donation-page .ob-creator-support-form {
    padding-left: 34px;
    border-left: 1px solid var(--ob5-line);
}
.ob-support-form__head > span {
    background: transparent !important;
    border: 1px solid var(--ob5-line);
    box-shadow: none !important;
}
.ob-creator-support-form__identity > label { grid-template-rows: auto 54px 20px; }
.ob-creator-support-form__identity input { height: 54px; }
.ob-support-amount__presets button,
.ob-support-stepper,
.ob-vote-quantity {
    background: rgba(255,255,255,.025) !important;
    border: 1px solid var(--ob5-line) !important;
    box-shadow: none !important;
}
.ob-support-amount__presets button.is-active {
    border-color: var(--profile-accent) !important;
    color: var(--profile-accent);
    background: color-mix(in srgb, var(--profile-accent) 9%, transparent) !important;
}
.ob-support-stepper {
    display: grid !important;
    grid-template-columns: 52px auto minmax(100px,1fr) 52px !important;
    min-height: 56px;
    overflow: hidden;
}
.ob-support-stepper button { background: transparent !important; color: var(--profile-accent); border: 0 !important; }
.ob-support-stepper input { width: 100% !important; min-width: 0; border: 0 !important; background: transparent !important; }
.ob-creator-support-submit,
.ob-vote-primary-action,
.ob-vote-donation-form__footer .ob-button,
.ob-creator-product-form .ob-button {
    background: var(--profile-accent) !important;
    color: #07111e !important;
    box-shadow: none !important;
}

/* Product page: one outer surface, cards are content rows. */
.ob5-products-page,
.ob5-vote-page { padding: 0; border: 0; background: transparent; box-shadow: none; }
.ob5-products-page > header,
.ob5-vote-page > header { margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--ob5-line); }
.ob5-products-page .ob-creator-product-grid { gap: 18px; }
.ob5-products-page .ob-creator-product-grid > article {
    border: 1px solid var(--ob5-line);
    background: rgba(255,255,255,.02);
    box-shadow: none;
}
.ob5-products-page .ob-product-card__body details {
    border-top: 1px solid var(--ob5-line);
    background: transparent;
}

/* Vote page: familiar leaderboard, payment remains optional and collapsed. */
.ob5-vote-page .ob-vote-board {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.ob5-vote-page .ob-vote-board + .ob-vote-board { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--ob5-line); }
.ob5-vote-page .ob-vote-board__head { padding: 0 0 14px; border-bottom: 1px solid var(--ob5-line); }
.ob5-vote-page .ob-vote-candidates { gap: 0; }
.ob5-vote-page .ob-vote-candidate {
    padding: 16px 4px;
    border: 0;
    border-bottom: 1px solid var(--ob5-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.ob5-vote-page .ob-vote-candidate.is-leading { background: transparent; }
.ob5-vote-page .ob-vote-candidate__image { border-radius: 12px; }
.ob5-vote-page .ob-vote-primary-action {
    min-width: 104px;
    background: var(--profile-accent) !important;
}
.ob5-vote-page .ob-vote-support-pick {
    background: transparent !important;
    border: 1px solid var(--ob5-line) !important;
    color: var(--profile-muted) !important;
    box-shadow: none !important;
}
.ob5-vote-page .ob-vote-support-panel {
    margin: 18px 0 0;
    padding: 20px;
    border: 1px solid var(--ob5-line);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
    box-shadow: none;
}

/* Dashboard feature controls, link icons and light-weight click metrics. */
.ob5-feature-links { padding: 18px; border: 1px solid var(--ob5-line); border-radius: 16px; }
.ob5-feature-links legend { padding: 0 8px; font-weight: 800; }
.ob5-feature-links > p { margin: 0 0 14px; color: var(--ob-muted); font-size: .82rem; }
.ob5-feature-links > div { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.ob5-feature-links .ob4-switch { padding: 12px; border: 1px solid rgba(148,163,184,.25); border-radius: 12px; }
.ob5-feature-links .ob4-switch span { display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 2px 8px; }
.ob5-feature-links .ob4-switch small { grid-column: 2; }
.ob5-feature-links .ob4-switch.is-disabled { opacity: .62; }
.ob4-link-summary strong { display: flex; align-items: center; gap: 8px; }
.ob4-link-summary strong .ob-icon { width: 16px; height: 16px; color: var(--ob-primary); }
.ob5-premium-feature-lock { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding: 16px; border: 1px solid rgba(245,158,11,.28); border-radius: 15px; background: rgba(245,158,11,.06); }
.ob5-premium-feature-lock > .ob-icon { width: 28px; color: #f59e0b; }
.ob5-premium-feature-lock div { flex: 1; }
.ob5-premium-feature-lock p { margin: 4px 0 0; color: var(--ob-muted); }
.ob-vote-dashboard-panel.is-premium-locked .ob-vote-dashboard-intro,
.ob-vote-dashboard-panel.is-premium-locked .ob-vote-add-board,
.ob-vote-dashboard-panel.is-premium-locked .ob-vote-board-editor-list { opacity: .45; pointer-events: none; user-select: none; }
.ob-profile-preview__feature-links { display: grid; gap: 7px; margin-top: 8px; }
.ob-profile-preview__feature-links i { display: flex; align-items: center; gap: 7px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; font-style: normal; font-size: .72rem; }
.ob-profile-preview__feature-links .ob-icon { width: 14px; }
.ob5-feature-previews { display: grid; gap: 12px; margin-top: 14px; }
.ob5-template-preview { padding: 15px; border: 1px solid rgba(148,163,184,.24); border-radius: 15px; background: #fff; color: #172033; }
.ob5-template-preview header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ob5-template-preview header .ob-icon { width: 20px; color: #4f46e5; }
.ob5-template-preview header small, .ob5-template-preview header strong { display: block; }
.ob5-template-preview header small { color: #64748b; font-size: .65rem; }
.ob5-template-preview.is-locked { opacity: .65; }
.ob5-preview-product { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 12px; }
.ob5-preview-product > span { aspect-ratio: 1; border-radius: 10px; background: #e2e8f0; }
.ob5-preview-product b,.ob5-preview-product small { display:block; }
.ob5-preview-vote { display: grid; grid-template-columns: 28px 1fr auto; gap: 8px; align-items: center; }
.ob5-preview-vote i { font-style: normal; color: #64748b; }

/* Checkout clock uses server time and remains recoverable after a closed tab. */
.ob-checkout-link-copy { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 0; border-top: 1px solid var(--ob-border); }
.ob-checkout-link-copy span,.ob-checkout-link-copy small { display: block; }
.ob-checkout-link-copy small { margin-top: 3px; color: var(--ob-muted); }
.ob-checkout-link-copy button { display: inline-flex; align-items: center; gap: 7px; min-height: 42px; padding: 0 13px; border: 1px solid var(--ob-border); border-radius: 11px; background: transparent; color: var(--ob-text); font-weight: 800; cursor: pointer; }
.ob-checkout-result.is-expired { border-color: rgba(239,68,68,.28); background: rgba(239,68,68,.045); }
.ob-checkout-countdown strong { font-variant-numeric: tabular-nums; }

/* Home: calmer editorial surfaces, gradients only as small accents. */
.ob-main .ob-hero,
.ob-main .ob-section--soft,
.ob-main .ob-final-cta { background-image: none !important; }
.ob-main .ob-hero__glow { display: none; }
.ob-main .ob-feature-card,
.ob-main .ob-usecase-grid > *,
.ob-main .ob-floating-card,
.ob-main .ob-premium-teaser,
.ob-main .ob-final-cta__inner {
    background-image: none !important;
    box-shadow: 0 12px 34px rgba(15,23,42,.08);
}
.ob-main .ob-feature-card { border-top: 3px solid var(--ob-primary); }
.ob-main .ob-feature-card:nth-child(3n+2) { border-top-color: #eab308; }
.ob-main .ob-feature-card:nth-child(3n) { border-top-color: #14b8a6; }
.ob-main .ob-button:not(.ob-button--ghost) { background-image: none !important; }

@media (max-width: 820px) {
    .ob5-public-card,
    .ob-profile-section--donasi .ob5-public-card,
    .ob-profile-section--produk-digital .ob5-public-card,
    .ob-profile-section--vote .ob5-public-card { width: min(100% - 20px, 680px); padding: 20px 16px; border-radius: 22px; }
    .ob5-feature-header { grid-template-columns: 38px 42px 1fr; padding-right: 42px; }
    .ob5-feature-header > img { width:42px; height:42px; }
    .ob5-donation-page { grid-template-columns: 1fr; gap: 24px; }
    .ob5-donation-page .ob-creator-support-form { padding: 22px 0 0; border-left: 0; border-top: 1px solid var(--ob5-line); }
    .ob-creator-support-form__identity { grid-template-columns: 1fr; }
    .ob-support-stepper { grid-template-columns: 48px auto minmax(80px,1fr) 48px !important; }
    .ob5-products-page .ob-creator-product-grid { grid-template-columns: 1fr; }
    .ob5-vote-page .ob-vote-candidate { grid-template-columns: 34px 64px minmax(0,1fr); }
    .ob5-vote-page .ob-vote-candidate__actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
    .ob5-feature-links > div { grid-template-columns: 1fr; }
    .ob5-premium-feature-lock { align-items: flex-start; flex-wrap: wrap; }
    .ob-checkout-link-copy { align-items: flex-start; flex-direction: column; }
    .ob-checkout-link-copy button { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .ob5-profile-page { padding-inline: 0; }
    .ob5-public-card { width: calc(100% - 12px); padding-inline: 14px; }
    .ob5-profile-identity .ob-public-avatar { width: 94px; height: 94px; }
    .ob5-bio-links .ob-public-link { min-height: 58px; }
    .ob5-feature-header { grid-template-columns: 36px 1fr; }
    .ob5-feature-header > img { display:none; }
    .ob-support-amount__presets { grid-template-columns: 1fr 1fr; }
    .ob5-vote-page .ob-vote-candidate { grid-template-columns: 30px 56px minmax(0,1fr); padding-inline: 0; }
    .ob5-vote-page .ob-vote-candidate__image { width:56px; height:56px; }
    .ob5-vote-page .ob-vote-candidate__actions { grid-template-columns: 1fr; }
}
