* {
    box-sizing: border-box;
}

:root {
    --bg-page: #edf0f3;
    --bg-sidebar: #eef1f4;
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --bg-card-soft: #ffffff;
    --border: #d4dbe2;
    --border-soft: #e3e8ed;
    --text-main: #2f3640;
    --text-muted: #4c5865;
    --text-soft: #8391a2;
    --accent: #00aff0;
}

body {
    min-height: 100vh;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--text-main);
    padding: 0;
    padding-bottom: 72px;
}

html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

[hidden] {
    display: none !important;
}

.layout {
    min-height: 100vh;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 370px minmax(0, 600px) 370px;
    justify-content: center;
    gap: 0;
}

.layout.no-sidebars {
    grid-template-columns: minmax(0, 600px);
}

.sidebar,
.main-content {
    background-color: var(--bg-main);
    border-radius: 0;
    padding: 0;
}

.sidebar {
    padding: 22px 16px;
}

.left-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-right: 0;
}

.left-account-avatar {
    display: none !important;
}

.right-sidebar {
    border-left: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
    align-items: stretch;
}

.right-suggestions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.right-suggestions-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 2px 2px 0;
}

.right-suggestions-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #7f8d9e;
    letter-spacing: 0.04em;
}

.right-suggestions-tools {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.right-suggestions-tool {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background-color: transparent;
    color: #8391a2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.right-suggestions-tool:hover {
    background-color: #e2e8ef;
}

.right-suggestions-tool i {
    font-size: 1rem;
}

.right-suggestion-card {
    position: relative;
    display: block;
    min-height: 126px;
    border-radius: 9px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: #c8d1dc;
}

.right-suggestion-cover {
    width: 100%;
    height: 126px;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
}

.right-suggestion-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 11, 18, 0.62) 0%, rgba(7, 11, 18, 0.18) 46%, rgba(7, 11, 18, 0) 100%);
    pointer-events: none;
}

.right-suggestion-profile {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.right-suggestion-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 40px;
    border-radius: 0 0 9px 9px;
    background-color: rgba(20, 27, 35, 0.68);
    padding: 6px 12px 7px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

.right-suggestion-name-row {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.right-suggestion-verify {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.right-suggestion-user {
    font-size: 0.9rem;
    color: #e8edf6;
}

.profile-subscription-card {
    border: 1px solid #d2d8df;
    border-radius: 6px;
    background-color: #f2f4f7;
    padding: 14px 14px 12px;
}

.profile-subscription-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #7d8b9b;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.profile-subscription-offer {
    color: #2e3742;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 8px;
}

.profile-subscription-deadline {
    color: #8b98a8;
    font-size: 0.96rem;
    margin-bottom: 10px;
}

.profile-subscription-message {
    border-radius: 8px;
    background-color: #e6e9ee;
    padding: 8px 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
}

.profile-subscription-message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
    margin-top: 1px;
}

.profile-subscription-message-copy {
    color: #3a4350;
    font-size: 0.92rem;
    line-height: 1.38;
}

.profile-subscription-cta {
    width: 100%;
    border: 0;
    border-radius: 999px;
    height: 36px;
    padding: 0 16px;
    background-color: #12a6e4;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.profile-subscription-cta span {
    font-size: 0.87rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.profile-subscription-cta strong {
    font-size: 0.92rem;
    font-weight: 700;
}

.profile-subscription-price-note {
    color: #8a97a7;
    font-size: 0.86rem;
    margin-top: 10px;
}

.signature-hero-card {
    border: 1px solid #d5dde6;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
    box-shadow: 0 12px 24px rgba(12, 28, 44, 0.06);
    padding: 16px;
    margin-top: 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
}

.signature-hero-card-neutral {
    background: linear-gradient(180deg, #f2f4f7 0%, #e9edf3 100%);
}

.signature-hero-card.is-subscription-new {
    border-color: #cdbdff;
    box-shadow: 0 16px 30px rgba(111, 61, 204, 0.18);
    animation: subscription-signature-enter 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes subscription-signature-enter {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.signature-page-content {
    padding: 0 16px 28px;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.signature-page-content .signature-hero-card,
.signature-page-content .notifications-list {
    margin: 0;
}

.signature-model-list {
    display: grid;
    gap: 12px;
}

.signature-model-list .signature-hero-card {
    margin-top: 0;
}

.signature-model-list .notification-item-action {
    width: fit-content;
    margin-top: 4px;
}

.signature-hero-avatar {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(12, 28, 44, 0.18);
    border: 3px solid #ffffff;
}

.signature-hero-body {
    display: grid;
    gap: 6px;
}

.signature-hero-title {
    margin: 0;
    color: #1f2f3f;
    font-size: 1.4rem;
    font-weight: 800;
}

.signature-hero-username {
    margin: 0;
    color: #5c6b80;
    font-size: 1rem;
    font-weight: 700;
}

.signature-hero-note {
    margin: 4px 0 0;
    color: #4c5b70;
    font-size: 0.96rem;
    line-height: 1.35;
}

.signature-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b8df6 0%, #2b7bf3 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    width: fit-content;
}

.signature-hero-badge i {
    font-size: 1rem;
}

.left-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-sidebar-section {
    display: grid;
    gap: 6px;
}

.admin-sidebar-section + .admin-sidebar-section {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #d5dde6;
}

.left-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: #8a98a8;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    width: 100%;
}

.left-nav-link i {
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
    position: relative;
}

.left-nav-link:hover {
    background-color: #e7ebef;
}

.left-nav-link.is-active {
    background-color: #e7ebef;
    color: #1f2b36;
}

.left-nav-link.is-active i {
    color: #1f2b36;
}

.left-nav-link.is-active.left-nav-link-disabled {
    color: #6e7f91;
}

.left-nav-link.is-active.left-nav-link-disabled i {
    color: #6e7f91;
}

.left-nav-link-disabled {
    color: #b8c2cc;
    pointer-events: none;
    cursor: default;
}

.left-nav-link-disabled:hover {
    background-color: transparent;
}

.left-new-post-btn {
    margin-top: 8px;
    border: 0;
    border-radius: 999px;
    background-color: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    cursor: pointer;
}

.left-new-post-btn i {
    font-size: 1.35rem;
}

.left-new-story-btn {
    margin-top: 8px;
    border: 1px solid #b8c6d5;
    border-radius: 999px;
    background-color: #f5f9fc;
    color: #3f5469;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}

.left-new-story-btn i {
    font-size: 1rem;
}

.left-sidebar-session {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #d5dde6;
}

.left-nav-link-logout {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    color: #344354;
}

.left-nav-link-logout i {
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
}

.main-content {
    background-color: var(--bg-main);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    position: relative;
    padding: 0;
    overflow: hidden;
}

.main-content::before {
    content: none;
}

.main-content>* {
    position: relative;
    z-index: 1;
}

.main-content.is-compose-only {
    overflow: auto;
}

.main-content.is-compose-only > :not(.composer-card) {
    display: none !important;
}

.main-content.is-compose-only .composer-card {
    margin: 0;
    border: 0;
    border-radius: 0;
    min-height: 100%;
    padding: 56px 16px 10px;
}

.profile-banner {
    height: 200px;
    background-image: none;
    background-color: #000000;
    position: relative;
    z-index: 3;
    overflow: visible;
    border-radius: 0 0 5rem 0rem;
    box-shadow: 0 0px 10px rgba(4, 18, 32, 0.28);
}

.profile-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0) 80%);
    pointer-events: none;
    z-index: 1;
}

.settings-editable-banner {
    cursor: pointer;
}

.settings-banner-hover-camera {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(4, 8, 14, 0.4);
    color: #ffffff;
    opacity: 0;
    transform: scale(0.995);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
}

.settings-banner-hover-camera i {
    font-size: 1.5rem;
}

.settings-editable-banner:focus-visible .settings-banner-hover-camera {
    opacity: 1;
    transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
    .settings-editable-banner:hover .settings-banner-hover-camera {
        opacity: 1;
        transform: scale(1);
    }

    .settings-editable-banner:hover:has(.settings-editable-avatar:hover) .settings-banner-hover-camera,
    .settings-editable-banner:hover:has(.settings-editable-avatar:focus-visible) .settings-banner-hover-camera {
        opacity: 0;
        transform: scale(0.995);
    }
}

.settings-editable-avatar {
    cursor: pointer;
}

.banner-brand {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 14px;
    font-family: "Cinzel Decorative", serif;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.profile-settings {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 3;
}

.banner-brand-row {
    position: absolute;
    top: 12px;
    left: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-back-btn {
    width: 32px;
    height: 32px;
    background-color: transparent;
}

.banner-back-btn:hover {
    background-color: transparent;
}

.banner-back-btn i {
    font-size: 1.6rem;
}

.banner-brand-inline {
    position: static;
    top: auto;
    left: auto;
    margin-top: 4px;
    text-decoration: none;
}

.profile-page .banner-brand-row {
    display: none;
}

.config-pricing-page .banner-brand-inline {
    text-decoration: none;
}

@media (min-width: 901px) {
    .config-pricing-page .banner-brand-row {
        display: none;
    }
}

.profile-settings-btn {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.profile-settings-btn:hover {}

.profile-settings .profile-settings-btn {
    background-color: transparent;
    border: 0;
    backdrop-filter: none;
}

.profile-settings .profile-settings-btn:hover {
    background-color: transparent;
}

.profile-settings .profile-settings-btn i {
    font-size: 1.05rem;
    color: #ffffff;
    text-shadow: none;
}

body.is-role-user #profile-settings-btn {
    display: none;
}

body.is-role-subscriber #profile-settings-btn {
    display: none;
}

.profile-banner-edit-btn {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 4;
    border: 1px solid rgba(236, 243, 250, 0.55);
    border-radius: 999px;
    background-color: rgba(6, 12, 20, 0.48);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    backdrop-filter: blur(2px);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.profile-banner-edit-btn i {
    font-size: 0.95rem;
    line-height: 1;
}

.profile-banner-edit-btn:hover {
    background-color: rgba(6, 12, 20, 0.68);
}

.profile-banner:focus-within .profile-banner-edit-btn {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
    .profile-banner:hover .profile-banner-edit-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (hover: none) {
    .profile-banner-edit-btn {
        opacity: 1;
        transform: none;
    }
}

.profile-settings-menu {
    position: absolute;
    top: 38px;
    right: 0;
    width: 220px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.profile-settings-item {
    width: 100%;
    border: 0;
    background-color: transparent;
    color: var(--text-main);
    text-align: left;
    padding: 10px 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.profile-settings-item:hover {
    background-color: #eef7fc;
}

.profile-settings-item.is-active {
    background-color: #f3f8fc;
    color: #2b3d50;
}

.profile-settings-item.is-active .profile-settings-icon {
    color: #00a1df;
}

.profile-settings-icon {
    width: 16px;
    color: #607083;
    font-size: 0.95rem;
    text-align: center;
    flex: 0 0 16px;
}

.profile-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.profile-status-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.profile-status-icon {
    width: auto;
    color: #28c76f;
    font-size: 0.56rem;
}

.profile-status-control {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.profile-status-switch {
    width: 34px;
    height: 18px;
    border-radius: 999px;
    background-color: #28c76f;
    position: relative;
    transition: background-color 0.2s ease;
}

.profile-status-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #ffffff;
    position: absolute;
    top: 2px;
    left: 18px;
    transition: left 0.2s ease;
}

.profile-status-row.is-offline .profile-status-switch {
    background-color: #a3adb7;
}

.profile-status-row.is-offline .profile-status-thumb {
    left: 2px;
}

.profile-status-row.is-offline .profile-status-icon {
    color: #a3adb7;
}

.banner-profile {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.profile-avatar-wrap {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    margin-bottom: 4.5px;
    z-index: 5;
    cursor: pointer;
    outline: none;
    border-radius: 100%;
    isolation: isolate;
}

.rdr-loader-demo {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 0;
    opacity: 0;
    transform: scale(0.985);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.profile-avatar-wrap.has-active-story .rdr-loader-demo {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(225, 48, 108, 0.35));
}

.profile-avatar-wrap.has-viewed-story .rdr-loader-demo {
    filter: drop-shadow(0 0 5px rgba(122, 134, 146, 0.28));
}

.rdr-revolver-loader {
    width: 100%;
    height: 100%;
    position: relative;
}

.rdr-ring-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.rdr-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.34);
    stroke-width: 2.8;
}

.rdr-ring-fill {
    fill: none;
    stroke: #e1306c;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.35));
}

.profile-avatar-wrap.has-active-story .rdr-ring-fill {
    stroke-dashoffset: 0;
}

.profile-avatar-wrap.story-ring-animate .rdr-ring-fill {
    animation: rdr-fill-ring 1.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.profile-avatar-wrap.has-viewed-story .rdr-ring-fill {
    stroke: #a9b2bd !important;
    stroke-width: 3.2;
    filter: drop-shadow(0 0 3px rgba(78, 89, 100, 0.22));
}

@keyframes rdr-fill-ring {
    0% {
        stroke-dashoffset: 283;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    background-color: #b7bcc3;
    background-image: linear-gradient(145deg, #c8cdd4 0%, #9ea6b1 100%);
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aff0;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.profile-avatar-hover-camera {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(4, 8, 14, 0.45);
    color: #ffffff;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
    z-index: 2;
}

.profile-avatar-hover-camera i {
    font-size: 1.3rem;
}

.profile-avatar-wrap:focus-visible .profile-avatar-hover-camera {
    opacity: 1;
    transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
    .profile-avatar-wrap:hover .profile-avatar-hover-camera {
        opacity: 1;
        transform: scale(1);
    }
}

.online-dot {
    position: absolute;
    right: 20px;
    bottom: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #22c55e;
    z-index: 3;
 
    animation: online-neon 1.3s ease-in-out infinite;
}

.online-dot.is-offline {
    background-color: #99a3ad;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
    animation: none;
}

@keyframes online-neon {
    0% {
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 0 6px rgba(34, 197, 94, 0.35);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 0 15px rgba(34, 197, 94, 0.95);
    }

    100% {
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 0 6px rgba(34, 197, 94, 0.35);
    }
}

.profile-description {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 56px 0px 0px;
    width: 300px;
    margin: 0 auto;
}

.signatures-page .profile-description,
.monetization-page .profile-description {
    padding-top: 20px;
}

.notification-page-clean .profile-description {
    padding-top: 12px;
}

.notification-page-clean .profile-description h1 {
    margin-top: 0;
}

.profile-description h1 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
}

.home-brand-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    gap: 12px;
    padding: 12px 16px;
    min-height: 63px;
    margin-bottom: 6px;
    background: rgba(12, 8, 18, 0.28);
    border-bottom: 1px solid rgba(255, 0, 85, 0.2);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.home-brand-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.home-brand-logo {
    display: block;
    width: min(138px, 46vw);
    height: auto;
}

.home-brand-notification-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-brand-notification-btn:hover {
    background: rgba(255, 0, 85, 0.12);
    border-color: rgba(255, 0, 85, 0.35);
    transform: translateY(-1px);
}

.home-brand-notification-btn i {
    font-size: 1.05rem;
    line-height: 1;
}

.profile-name-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.profile-verify {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.profile-username {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: 0;
}

.profile-user-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 10px;
}

.profile-user-separator {
    font-size: 0.84rem;
    color: #7b8897;
    line-height: 1;
}

.profile-availability-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.84rem;
    color: #5e7083;
}

.profile-availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
}

.profile-availability-dot.is-offline {
    background-color: #99a3ad;
}

.profile-role-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    border-radius: 999px;
    border: 1px solid #c9deed;
    background-color: #edf8ff;
    color: #1a84b8;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0 10px;
    margin: -2px 0 10px;
}

.profile-model-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7px 10px;
    margin: 0 0 8px;
    margin-top: 1rem;
}

.profile-model-stat {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    line-height: 1.2;
    color: #7f8d9e;
    white-space: nowrap;
}

.profile-model-stat strong {
    color: #2c3a48;
    font-size: 0.95rem;
    font-weight: 700;
    margin-right: 3px;
}

.profile-model-stat i {
    color: #5e7083;
}

.profile-model-stat + .profile-model-stat::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #a9b6c4;
    margin: 0 8px 0 2px;
}

.profile-description p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.category-slider {
    padding: 6px 16px 12px;
    margin-top: 1rem;
}

.category-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-y;
}

.category-track::-webkit-scrollbar {
    display: none;
}

.category-track.is-reordering {
    user-select: none;
    -webkit-user-select: none;
}

.category-card {
    position: relative;
    width: 94px;
    height: 94px;
    box-sizing: border-box;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 auto;
    text-decoration: none;
    color: #ffffff;
    background-color: #f3f6fa;
    border: 1px solid #d5dde7;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.category-card.is-dragging {
    border-color: #b9c8d8;
    box-shadow: 0 12px 26px rgba(21, 32, 44, 0.22);
}

.category-card.category-card-placeholder {
    border-style: dashed;
    border-color: #b5c2cf;
    background-color: #edf2f7;
}

.category-card.category-card-placeholder::after {
    content: none;
}

.category-card-add {
    border: 2px dashed #aeb7c1;
    background-color: transparent;
    color: #7a8694;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    flex-direction: row;
    gap: 0;
}

.category-card.category-card-add::after {
    content: none;
    background: none;
}

.category-card-add i {
    font-size: 1.22rem;
    line-height: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    filter: none;
    transform: none;
    transition: transform 0.2s ease, filter 0.2s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.category-card.category-card-locked img,
.category-card:not(.category-card-unlocked):not(.category-card-add):not(.category-card-placeholder) img {
    filter: blur(1.1px);
    transform: scale(1.01);
    clip-path: circle(50% at 50% 50%);
}

.category-card span {
    user-select: none;
    pointer-events: none;
}

.category-card.category-card-unlocked img {
    filter: none;
    transform: none;
}

.category-card.category-card-unlocked::after {
    background: none;
    border-radius: 100%;
}

.category-card.category-card-locked::after,
.category-card:not(.category-card-unlocked):not(.category-card-add):not(.category-card-placeholder)::after {
    background: linear-gradient(to top, rgba(7, 11, 18, 0.55) 0%, rgba(7, 11, 18, 0) 56%);
}

body.is-role-user .category-card:not(.category-card-add):not(.category-card-placeholder):not([data-category-id="your-story"]) img {
    filter: blur(2px);
    transform: scale(1.01);
}

body.is-role-user .category-card:not(.category-card-add):not(.category-card-placeholder):not([data-category-id="your-story"])::after {
    background: linear-gradient(to top, rgba(7, 11, 18, 0.58) 0%, rgba(7, 11, 18, 0) 58%);
}

body.is-role-model .category-card:not(.category-card-add):not(.category-card-placeholder) img,
body.is-role-subscriber .category-card:not(.category-card-add):not(.category-card-placeholder) img {
    filter: none;
    transform: none;
}

body.is-role-model .category-card:not(.category-card-add):not(.category-card-placeholder)::after,
body.is-role-subscriber .category-card:not(.category-card-add):not(.category-card-placeholder)::after {
    background: none;
}

body.is-role-model .category-track,
body.is-role-subscriber .category-track {
    padding-bottom: 24px;
}

body.is-role-model .category-card:not(.category-card-add):not(.category-card-placeholder),
body.is-role-subscriber .category-card:not(.category-card-add):not(.category-card-placeholder) {
    overflow: visible;
}

body.is-role-model .category-card:not(.category-card-add):not(.category-card-placeholder) span,
body.is-role-subscriber .category-card:not(.category-card-add):not(.category-card-placeholder) span {
    top: calc(100% + 8px);
    transform: translateX(-50%);
    width: 100%;
    color: #ffffff;
    text-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
    .category-card:not(.category-card-add):hover {
        border-color: #c5d0dc;
    }

    .category-card.category-card-locked:hover img,
    .category-card:not(.category-card-add):not(.category-card-unlocked):not(.category-card-placeholder):hover img {
        transform: scale(1.02);
    }

    .category-card.category-card-unlocked:hover img {
        transform: scale(1.04);
    }
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: none;
}

.category-card span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    width: 78%;
    line-height: 1.2;
}

.category-card span i {
    font-size: 0.72rem;
    margin-right: 4px;
    vertical-align: 0;
}

.category-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.category-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #c0cad4;
}

.category-dots .is-active {
    background-color: #00aff0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.social-pill {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-decoration: none;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-pill-icon {
    font-size: 1.28rem;
    color: #ffffff;
    line-height: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-pill-icon.bi-instagram {
    color: #ffffff;
}

.social-pill-icon.bi-twitter-x {
    color: #ffffff;
}

.social-pill-icon.bi-tiktok {
    color: #ffffff;
    text-shadow: none;
}

.social-pill-icon.bi-youtube {
    color: #ffffff;
}

.social-pill-icon.bi-telegram {
    color: #ffffff;
}

.social-pill-icon.bi-facebook {
    color: #ffffff;
}

.social-pill-icon.bi-globe2 {
    color: #ffffff;
}

.social-pill:hover .social-pill-icon {
    transform: translateY(-1px);
    opacity: 0.9;
}

.social-photo {
    width: 22px;
    height: 22px;
    object-fit: cover;
    display: block;
}

.profile-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.profile-story-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background-color: #111820;
    min-height: 180px;
}

.profile-story-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.profile-story-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(8, 12, 18, 0.72) 0%, rgba(8, 12, 18, 0) 100%);
    color: #ffffff;
}

.profile-story-title {
    font-size: 0.84rem;
    font-weight: 700;
}

.profile-story-time {
    margin-top: 4px;
    font-size: 0.75rem;
    opacity: 0.88;
}

.profile-story-card-empty {
    min-height: 110px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f9fc;
}

.composer-card {
    border: 1px solid var(--border);
    background-color: var(--bg-main);
    padding: 12px 16px 10px;
    margin: 1rem;
    border-radius: 1rem;
    position: relative;
}

.composer-top-row {
    position: absolute;
    top: 12px;
    left: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.composer-back-btn {
    color: var(--text-main);
    background-color: transparent;
}

.composer-back-btn:hover {
    background-color: transparent;
}

.composer-top-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: "Cinzel Decorative", serif;
    letter-spacing: 0.04em;
    color: var(--text-main);
}

.composer-row {
    display: flex;
    gap: 10px;
}

.composer-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #b7bcc3;
    background-image: linear-gradient(145deg, #c8cdd4 0%, #9ea6b1 100%);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00aff0;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
}

.composer-input-wrap {
    flex: 1;
    min-width: 0;
    margin-bottom: 1rem;
}

.composer-label {
    display: block;
    color: var(--text-soft);
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.composer-placeholder {
    color: var(--text-soft);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.composer-input {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background-color: var(--bg-card-soft);
    color: var(--text-main);
    font-size: 0.9rem;
    padding: 10px 12px;
    margin-bottom: 10px;
}

.composer-textarea {
    min-height: 90px;
    resize: vertical;
    line-height: 1.4;
}

.composer-input:focus {
    outline: 1px solid var(--accent);
    border-color: var(--accent);
}

.composer-file-name {
    color: var(--text-soft);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.composer-price-wrap {
    margin-bottom: 10px;
}

.composer-price-input {
    max-width: 220px;
    margin-bottom: 0;
}

.composer-poll-builder {
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background-color: #f7f9fb;
    padding: 10px;
    margin-bottom: 10px;
}

.composer-poll-title {
    color: var(--text-main);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.composer-poll-options {
    display: grid;
    gap: 8px;
}

.composer-poll-input {
    margin-bottom: 0;
}

.post-edit-poll-wrap {
    display: grid;
    gap: 8px;
}

.post-edit-poll-count {
    margin-top: -4px;
    font-size: 0.76rem;
    color: var(--text-soft);
}

.composer-reply-btn {
    border: 0;
    background: transparent;
    color: #4f5b68;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    cursor: pointer;
}

.composer-footer {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.composer-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.composer-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}

.composer-tool-btn {
    border: 0;
    background: transparent;
    color: var(--text-soft);
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.composer-tool-btn.is-active {
    color: var(--accent);
}

.composer-post-btn {
    border: 0;
    border-radius: 999px;
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 700;
    padding: 6px 16px;
    cursor: pointer;
}

.composer-cancel-btn {
    border: 1px solid var(--border);
    border-radius: 999px;
    background-color: #ffffff;
    color: var(--text-soft);
    font-weight: 700;
    padding: 6px 16px;
    cursor: pointer;
}

.composer-inline-preview {
    margin-top: 4px;
    margin-bottom: 10px;
}

.composer-inline-preview-card {
    width: 100%;
}

.composer-inline-preview-media {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(70vh, 520px);
    object-fit: contain;
    border-radius: 0;
    border: 0;
    background-color: #06080d;
}

.posts-section {
    padding: 12px 16px 0;
}

.profile-posts-empty {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-soft) 100%);
    min-height: 236px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.profile-posts-empty-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    background-color: var(--bg-main);
    color: var(--accent);
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.profile-posts-empty-title {
    margin: 0;
    color: var(--text-main);
    font-size: clamp(1.55rem, 4vw, 2.15rem);
    font-weight: 800;
    line-height: 1.08;
}

.profile-posts-empty-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.42;
    max-width: 440px;
}

.profile-inline-subscribe-section {
    padding: 12px 16px 0;
}

.profile-inline-subscribe-btn {
    width: 100%;
    height: 40px;
    border: 0;
    border-radius: 10px;
    margin-bottom: 12px;
    background-color: #12a6e4;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    cursor: pointer;
}

.profile-inline-subscribe-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

#profile-inline-subscribe-price {
    font-size: 0.92rem;
    font-weight: 700;
}

.upload-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
    background: rgba(10, 22, 33, 0.42);
    backdrop-filter: blur(2px);
}

.upload-loading-overlay[hidden] {
    display: none;
}

.upload-loading-card {
    min-width: 170px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(16, 31, 43, 0.92);
    color: #ffffff;
    display: grid;
    justify-items: center;
    gap: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.upload-loading-spinner {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.26);
    border-top-color: #ffffff;
    animation: upload-loading-spin 0.8s linear infinite;
}

.upload-loading-message {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

@keyframes upload-loading-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.posts-view-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 1rem;
    padding: 0 1rem;
}

.posts-view-btn {
    flex: 1 1 50%;
    border: 1px solid #d5dee8;
    border-radius: 9px;
    background-color: #f3f7fb;
    color: #6d7c8c;
    width: 100%;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.posts-view-btn.is-active {
    border-color: #9fd5ef;
    background-color: #e9f7ff;
    color: #028ec7;
}

.posts-view-btn i {
    font-size: 0.86rem;
    line-height: 1;
}

.posts-view-count {
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background-color: rgba(2, 142, 199, 0.14);
    color: #028ec7;
    font-size: 0.68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

body.has-availability-toast .posts-section {
    padding-bottom: 170px;
}

.posts-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-soft);
    margin: 0 16px 12px;
    text-transform: uppercase;
}

.post-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: visible;
    background-color: var(--bg-card);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.post-card.post-card-enter {
    animation: post-card-enter 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes post-card-enter {
    0% {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.posts-section.is-image-grid-view #posts-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.posts-section.is-image-grid-view .post-card {
    margin-bottom: 0;
    border: 0;
    border-radius: 10px;
    background-color: transparent;
    overflow: hidden;
}

.posts-section.is-image-grid-view #posts-list .profile-posts-empty {
    grid-column: 1 / -1;
}

.posts-section.is-image-grid-view .post-menu-wrap,
.posts-section.is-image-grid-view .post-head,
.posts-section.is-image-grid-view .post-description,
.posts-section.is-image-grid-view .post-actions {
    display: none;
}

.posts-section.is-image-grid-view .post-image-wrap {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #06080d;
    overflow: hidden;
}

.posts-section.is-image-grid-view .post-image,
.posts-section.is-image-grid-view .post-video {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    border-top: 0;
    border-bottom: 0;
}

.posts-section.is-image-grid-view .post-image-lock {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
}

.posts-section.is-image-grid-view .post-media-price {
    right: 7px;
    bottom: 7px;
    font-size: 0.68rem;
    padding: 5px 8px;
}

.post-head {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 52px 8px 16px;
}

.post-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-soft);
    flex: 0 0 auto;
}

.post-meta {
    flex: 1 1 auto;
    min-width: 0;
}

.post-author-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.97rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.post-verified {
    color: #7d8792;
    font-size: 0.82rem;
}

.post-verified-img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.post-user {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.post-time {
    color: #8f9ba8;
    font-size: 0.88rem;
    white-space: nowrap;
    padding-top: 1px;
    margin-left: auto;
}

.home-post-delete-btn {
    border: 0;
    background: transparent;
    color: #8f9ba8;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 4px;
    flex: 0 0 auto;
}

.home-post-delete-btn:hover {
    background-color: rgba(239, 68, 68, 0.14);
    color: #ef4444;
}

.home-post-delete-btn:disabled {
    opacity: 0.58;
    cursor: wait;
}

.home-post-delete-btn i {
    font-size: 0.9rem;
}

.post-card-static .post-head {
    padding-right: 16px;
}

.post-menu-wrap {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 30;
}

.post-menu-btn {
    border: 0;
    background: transparent;
    color: var(--text-soft);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.post-menu-btn:hover {
    background-color: rgba(0, 175, 240, 0.12);
}

.post-menu-btn i {
    font-size: 1.1rem;
}

.post-menu {
    position: absolute;
    top: 34px;
    right: 0;
    min-width: 130px;
    background-color: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    overflow: hidden;
    z-index: 40;
}

.post-menu-item {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text-main);
    text-align: left;
    padding: 10px 12px;
    font-size: 0.85rem;
    cursor: pointer;
}

.post-menu-item:hover {
    background-color: #eef7fc;
}

.post-menu-item-danger {
    color: #f87171;
}

.post-title {
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 16px 8px;
}

.post-description {
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--text-muted);
    padding: 0 16px 12px;
}

.post-poll {
    margin: 0 16px 12px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background-color: #f9fbfd;
    padding: 10px;
}

.post-poll-question {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.post-poll-options {
    display: grid;
    gap: 8px;
}

.post-poll-option-btn {
    border: 1px solid var(--border-soft);
    border-radius: 9px;
    background-color: #ffffff;
    color: var(--text-main);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-align: left;
    cursor: pointer;
}

.post-poll-option-btn.is-selected {
    border-color: #9fd5ef;
    background-color: #e9f7ff;
}

.post-poll-option-label {
    font-size: 0.86rem;
    line-height: 1.2;
}

.post-poll-option-votes {
    font-size: 0.78rem;
    font-weight: 700;
    color: #6d7c8c;
}

.post-poll-total {
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--text-soft);
}

.post-inline-link {
    color: #00aff0;
    text-decoration: none;
}

.post-inline-link:hover {
    text-decoration: underline;
}

.mention-profile-card {
    display: block;
    margin: 0 16px 12px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #c9d2dd;
    min-height: 150px;
    text-decoration: none;
    color: inherit;
}

.mention-cover {
    width: 100%;
    height: 150px;
    display: block;
    object-fit: cover;
    filter: blur(1.5px);
    transform: scale(1.03);
}

.mention-cover-black {
    background-color: #000000;
    filter: none;
    transform: none;
}

.mention-profile-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 11, 18, 0.55) 0%, rgba(7, 11, 18, 0.1) 45%, rgba(7, 11, 18, 0) 100%);
    pointer-events: none;
}

.mention-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: rgba(34, 39, 46, 0.8);
    color: #f3f6fa;
    border-radius: 999px;
    padding: 4px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 2;
}

.mention-more {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(34, 39, 46, 0.34);
    color: #ffffff;
    z-index: 2;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mention-profile {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 14px;
    box-sizing: border-box;
    z-index: 2;
    text-align: left;
}

.mention-avatar {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    flex: 0 0 auto;
}

.mention-meta {
    min-width: 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
    padding-bottom: 0;
}

.mention-name {
    font-size: 1.05rem;
    font-weight: 700;
}

.mention-name-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mention-verify {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.mention-user {
    font-size: 0.92rem;
    color: #e9eef6;
}

.post-image,
.post-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(75vh, 860px);
    object-fit: contain;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background-color: #06080d;
}

.posts-section:not(.is-image-grid-view) .post-image-wrap[data-post-media-type="video"] {
    width: 100%;
    margin: 0 auto;
    aspect-ratio: auto;
    background-color: #000000;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
}

.posts-section:not(.is-image-grid-view) .post-image-wrap[data-post-media-type="video"] .post-video {
    height: auto;
    max-height: min(75vh, 860px);
    border-top: 0;
    border-bottom: 0;
}

.post-media.is-blurred {
    filter: blur(12px);
}

.profile-page.is-role-user .post-card .post-media {
    display: block;
}

.profile-page.is-role-user .post-card .post-image-wrap {
    min-height: 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: #06080d;
}

.profile-page.is-role-user .posts-section:not(.is-image-grid-view) .post-card .post-image-wrap[data-post-media-type="video"] {
    min-height: 0;
}

.profile-page.is-role-user .post-card .post-image-wrap {
    cursor: pointer;
}

.profile-page.is-role-user .post-card .post-image-wrap.is-locked::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(130, 138, 148, 0.5) 0%, rgba(92, 101, 112, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
}

.profile-page.is-role-user .post-card .post-poll {
    filter: blur(3px);
}

.profile-page.is-role-user .post-card .post-media-price {
    display: none !important;
}

.profile-page.is-role-user .post-card .post-description {
    filter: none;
}

.profile-page.is-role-guest .post-card .post-description {
    filter: blur(3px);
}

.profile-page.is-role-user .post-menu-wrap {
    display: none;
}

.profile-page.is-role-subscriber .post-menu-wrap {
    display: none;
}

.profile-page.is-role-model .post-card .post-media,
.profile-page.is-role-model .post-card .post-media.is-blurred,
.profile-page.is-role-model .post-card .post-description,
.profile-page.is-role-model .post-card .post-poll {
    filter: none;
}

.profile-page.is-role-model .post-card .post-image-lock,
.profile-page.is-role-model .post-card .post-media-price {
    display: none;
}

.post-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #06080d;
    overflow: hidden;
}

.post-image-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.post-image-lock i {
    transition: transform 0.2s ease;
}

.profile-page.is-role-user .post-card .post-image-wrap:hover .post-image-lock {
    transform: translate(-50%, -50%) scale(1.08);
    background-color: rgba(0, 0, 0, 0.72);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.profile-page.is-role-user .post-card .post-image-wrap:hover .post-image-lock i {
    transform: scale(1.08);
}

.home-page.is-role-guest .home-global-post .post-description {
    filter: blur(3px);
}

.home-page.is-role-user .home-global-post .post-description {
    filter: none;
}

.home-page.is-role-guest .home-global-post .mention-profile-card {
    filter: blur(8px);
    transform: scale(1.02);
    pointer-events: none;
}

.home-page.is-role-user .home-global-post .mention-profile-card {
    filter: none;
    transform: none;
    pointer-events: auto;
}

.home-page.is-role-user .home-global-post .tip-btn,
.home-page.is-role-guest .home-global-post .tip-btn {
    display: none;
}

.profile-page.is-role-guest .profile-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 10, 16, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
    z-index: 1;
}

.post-media-price {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background-color: rgba(6, 12, 20, 0.75);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    padding: 6px 10px;
    pointer-events: none;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px 14px;
}

.action-btn,
.tip-btn {
    border: 0;
    background-color: transparent;
    color: var(--text-soft);
    border-radius: 0;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
}

.action-btn {
    min-width: 0;
}

.action-btn-count {
    display: inline-block;
}

.action-btn-comment:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

.tip-btn {
    margin-left: auto;
    border: 1px solid #cfd7df;
    border-radius: 999px;
    color: #b7c1cb;
    padding: 5px 10px;
    padding-bottom: .9px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.action-btn i,
.tip-btn i {
    font-size: 1rem;
}

.post-actions .action-btn-like i {
    color: #9aa4b0;
    transition: color 0.2s ease;
}

.post-actions .action-btn-like.is-liked i {
    color: #ef4444;
}

.action-btn-like.is-like-animating i {
    animation: like-heart-pop 0.36s ease;
}

.action-btn-like.is-like-animating .action-btn-count {
    animation: like-count-rise 0.44s ease;
}

@keyframes like-heart-pop {
    0% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.26);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes like-count-rise {
    0% {
        transform: translateY(7px);
        opacity: 0.55;
    }

    55% {
        transform: translateY(-5px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.subscription-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    background-color: var(--bg-card-soft);
    padding: 14px;
}

.subscription-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #7f8e9d;
    margin-bottom: 14px;
    letter-spacing: 0.01em;
}

.subscription-btn {
    width: 100%;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background-color: var(--accent);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    cursor: pointer;
}

.sidebar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b99a7;
    font-size: 0.82rem;
    padding-top: 10px;
}

.sidebar-links a {
    color: inherit;
    text-decoration: none;
}

.post-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
}

.post-preview-modal[hidden] {
    display: none;
}

.post-preview-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(13, 18, 25, 0.5);
}

.post-preview-dialog {
    position: relative;
    width: min(92vw, 480px);
    background-color: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.post-preview-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.post-preview-description {
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 12px;
    word-break: break-word;
}

.post-edit-input {
    width: 100%;
    min-height: 130px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 0.95rem;
    resize: vertical;
    color: var(--text-main);
    background-color: var(--bg-card-soft);
    margin-bottom: 12px;
}

#post-edit-image-wrap .post-preview-confirm {
    margin-bottom: 10px;
}

.post-preview-image {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    margin-bottom: 14px;
    background-color: #06080d;
}

.post-preview-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.post-preview-cancel,
.post-preview-confirm {
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
    cursor: pointer;
}

.post-preview-cancel {
    background-color: #e7edf2;
    color: #4e5e6d;
}

.post-preview-confirm {
    background-color: var(--accent);
    color: #ffffff;
}

body.post-submit-config-open {
    overflow: hidden;
}

.post-submit-config-modal {
    position: fixed;
    inset: 0;
    z-index: 1450;
    display: grid;
    place-items: center;
    padding: 14px;
}

.post-submit-config-modal[hidden] {
    display: none;
}

.post-submit-config-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(13, 18, 25, 0.5);
    backdrop-filter: blur(2px);
}

.post-submit-config-dialog {
    position: relative;
    width: min(92vw, 470px);
    border-radius: 18px;
    border: 1px solid var(--border);
    background-color: var(--bg-main);
    color: var(--text-main);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
    padding: 18px 16px 14px;
}

.post-submit-config-close-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background-color: #eef3f8;
    color: #6f7d8c;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.post-submit-config-title {
    margin: 0 0 6px;
    font-size: 1.08rem;
    font-weight: 700;
}

.post-submit-config-subtitle {
    margin: 0 0 12px;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.post-submit-config-visibility {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.post-submit-config-visibility-btn {
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background-color: var(--bg-card-soft);
    color: var(--text-muted);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.post-submit-config-visibility-btn:hover {
    transform: translateY(-1px);
}

.post-submit-config-visibility-btn.is-active {
    border-color: var(--accent);
    background-color: var(--accent);
    color: #ffffff;
}

.post-submit-config-price-wrap {
    margin-bottom: 10px;
}

.post-submit-config-label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.post-submit-config-input {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background-color: var(--bg-card-soft);
    color: var(--text-main);
    font-size: 0.96rem;
    padding: 0 12px;
}

.post-submit-config-input:focus {
    outline: 2px solid rgba(0, 175, 240, 0.35);
    outline-offset: 1px;
}

.post-submit-config-help {
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.78rem;
}

.post-submit-config-error {
    margin-bottom: 10px;
    color: #d64045;
    font-size: 0.82rem;
    font-weight: 700;
}

.post-submit-config-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.post-submit-config-cancel,
.post-submit-config-confirm {
    min-width: 124px;
    height: 38px;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.post-submit-config-cancel {
    background-color: #e7edf2;
    color: #4e5e6d;
}

.post-submit-config-confirm {
    background-color: var(--accent);
    color: #ffffff;
}

body.subscription-plans-open {
    overflow: hidden;
}

.subscription-plans-modal {
    position: fixed;
    inset: 0;
    z-index: 1460;
    display: grid;
    place-items: center;
    padding: 14px;
}

.subscription-plans-modal[hidden] {
    display: none;
}

.subscription-plans-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(13, 18, 25, 0.5);
}

.subscription-plans-dialog {
    position: relative;
    width: min(92vw, 620px);
    border-radius: 16px;
    border: 1px solid var(--border);
    background-color: var(--bg-main);
    color: var(--text-main);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
    padding: 16px 14px 14px;
}

.subscription-plans-close-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background-color: #eef3f8;
    color: #6f7d8c;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.subscription-plans-title {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 800;
}

.subscription-plans-subtitle {
    margin: -2px 0 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.subscription-plans-list {
    display: grid;
    gap: 10px;
}

.subscription-plan-card {
    border-radius: 14px;
    border: 1px solid var(--border);
    background-color: #ffffff;
    padding: 12px;
    display: grid;
    gap: 10px;
}

.subscription-plan-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.subscription-plan-label {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.subscription-plan-price {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
}

.subscription-plan-benefits {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 4px;
    color: var(--text-main);
    font-size: 0.86rem;
}

.subscription-plan-subscribe {
    width: 100%;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    background-color: #ffffff;
    color: var(--accent);
    font-weight: 700;
    cursor: pointer;
}

.subscription-plan-subscribe:disabled {
    cursor: wait;
    opacity: 0.72;
}

.subscription-plans-error {
    margin-top: 10px;
    color: #d64045;
    font-size: 0.82rem;
    font-weight: 700;
}

.subscription-plans-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.subscription-plans-cancel {
    min-width: 120px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-weight: 700;
    cursor: pointer;
    background-color: #ffffff;
    color: var(--text-muted);
}

.story-delete-confirm-dialog {
    width: min(88vw, 360px);
    padding: 18px 16px 14px;
    border-radius: 16px;
}

.story-delete-confirm-modal {
    z-index: 1400;
}

.story-delete-confirm-copy {
    margin-bottom: 14px;
}

.story-delete-confirm-confirm {
    background-color: #d64045;
}

.avatar-action-sheet {
    position: fixed;
    inset: 0;
    z-index: 1260;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.avatar-action-sheet[hidden] {
    display: none;
}

.avatar-action-sheet-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(8, 13, 20, 0.45);
}

.avatar-action-sheet-panel {
    position: relative;
    width: min(100%, 560px);
    background-color: #ffffff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border: 1px solid #d8e0e8;
    border-bottom: 0;
    padding: 12px 12px 20px;
    transform: translateY(104%);
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.avatar-action-sheet.is-open .avatar-action-sheet-panel {
    transform: translateY(0);
}

.avatar-action-sheet-handle {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background-color: #d2d9e2;
    margin: 0 auto 12px;
}

.avatar-action-title {
    color: #6d7a88;
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.avatar-action-option {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background-color: #f4f7fa;
    color: #29323d;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.avatar-action-option+.avatar-action-option {
    margin-top: 8px;
}

.avatar-action-option i {
    color: #00a8e8;
    font-size: 1rem;
}

.avatar-action-option:hover {
    background-color: #e8eef4;
}

body.avatar-action-open {
    overflow: hidden;
}

.category-add-dialog {
    width: min(92vw, 360px);
}

.category-add-label {
    display: block;
    font-size: 0.84rem;
    color: #6f7d8c;
    margin-bottom: 6px;
}

.category-add-input,
.category-add-file {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background-color: #f7f9fb;
    color: var(--text-main);
    font-size: 0.9rem;
    padding: 9px 10px;
    margin-bottom: 10px;
}

.category-add-file-name {
    color: var(--text-soft);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.category-add-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5f6f80;
    font-size: 0.84rem;
    margin: -2px 0 10px;
}

.category-add-toggle input {
    width: 15px;
    height: 15px;
    accent-color: #00aff0;
}

.category-add-preview {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    margin-bottom: 12px;
}

.story-compose-modal {
    position: fixed;
    inset: 0;
    z-index: 1290;
    display: grid;
    place-items: center;
}

.story-compose-modal[hidden] {
    display: none;
}

.story-compose-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(6, 10, 16, 0.84);
}

.story-compose-shell {
    position: relative;
    width: min(100vw, 420px);
    height: 100vh;
    background-color: #000000;
    overflow: hidden;
}

.story-compose-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.story-compose-preview-wrap {
    width: 100%;
    height: calc(100% - 88px);
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.story-compose-image,
.story-compose-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #000000;
}

.story-compose-image[hidden],
.story-compose-video[hidden] {
    display: none !important;
}

.story-compose-actions {
    height: 88px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 10px;
    padding: 0 12px;
    background-color: #0d1219;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.story-compose-category-btn,
.story-compose-continue-btn {
    border: 0;
    border-radius: 999px;
    height: 42px;
    padding: 0 16px;
    font-weight: 700;
    cursor: pointer;
}

.story-compose-category-btn {
    background-color: rgba(255, 255, 255, 0.15);
    color: #f0f5fa;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.story-compose-category-btn i {
    font-size: 0.94rem;
    line-height: 1;
}

.story-compose-category-btn:disabled {
    opacity: 0.56;
    cursor: not-allowed;
}

.story-compose-continue-btn {
    background-color: #ffffff;
    color: #171f29;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.story-price-modal {
    position: fixed;
    inset: 0;
    z-index: 1305;
    display: grid;
    place-items: center;
}

.story-price-modal[hidden] {
    display: none !important;
}

.story-price-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(6, 10, 16, 0.7);
}

.story-price-dialog {
    position: relative;
    width: min(92vw, 360px);
    border-radius: 16px;
    border: 1px solid #d8e0e8;
    background-color: #ffffff;
    box-shadow: 0 18px 40px rgba(12, 24, 38, 0.22);
    padding: 16px;
    display: grid;
    gap: 10px;
    transform: translateY(16px) scale(0.98);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.story-price-modal.is-open .story-price-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.story-price-title {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 800;
    color: #1e2b37;
}

.story-price-copy {
    margin: 0;
    color: #637485;
    font-size: 0.91rem;
    line-height: 1.4;
}

.story-price-label {
    margin: 2px 0 0;
    color: #4b5f72;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.story-price-input {
    width: 100%;
    height: 42px;
    border: 1px solid #c8d4e0;
    border-radius: 10px;
    background-color: #f6f9fc;
    color: #23313f;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0 12px;
}

.story-price-input:focus {
    outline: 1px solid rgba(0, 175, 240, 0.68);
    border-color: rgba(0, 175, 240, 0.68);
}

.story-price-error {
    margin: -2px 0 0;
    color: #d74d4d;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-price-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.story-price-cancel,
.story-price-confirm {
    height: 36px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0 14px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}

.story-price-cancel {
    border-color: #d5dfe9;
    background-color: #ffffff;
    color: #4f6071;
}

.story-price-confirm {
    background-color: #07aee9;
    color: #ffffff;
}

.story-target-sheet {
    position: fixed;
    inset: 0;
    z-index: 1295;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.story-target-sheet[hidden] {
    display: none;
}

.story-target-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(8, 12, 18, 0.48);
}

.story-target-panel {
    position: relative;
    width: min(100%, 560px);
    background-color: #ffffff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border: 1px solid #d8e0e8;
    border-bottom: 0;
    padding: 12px 12px 20px;
    transform: translateY(104%);
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-target-sheet.is-open .story-target-panel {
    transform: translateY(0);
}

.story-target-handle {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background-color: #d2d9e2;
    margin: 0 auto 12px;
    display: block;
}

.story-target-title {
    color: #6d7a88;
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.story-target-option {
    width: 100%;
    height: 42px;
    border: 0;
    border-radius: 10px;
    background-color: #f4f7fa;
    color: #29323d;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.story-target-option-private i {
    font-size: 0.82rem;
    line-height: 1;
}

.story-target-option-public i {
    font-size: 0.82rem;
    line-height: 1;
}

.story-target-option+.story-target-option {
    margin-top: 8px;
}

.story-target-option.is-active {
    background-color: #e6f4fd;
    color: #007fbe;
}

.composer-entry-sheet {
    position: fixed;
    inset: 0;
    z-index: 1294;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.composer-entry-sheet[hidden] {
    display: none;
}

.composer-entry-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(8, 12, 18, 0.48);
}

.composer-entry-panel {
    position: relative;
    width: min(100%, 560px);
    background-color: #ffffff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border: 1px solid #d8e0e8;
    border-bottom: 0;
    padding: 12px 12px 20px;
    transform: translateY(104%);
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.composer-entry-sheet.is-open .composer-entry-panel {
    transform: translateY(0);
}

.composer-entry-handle {
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background-color: #d2d9e2;
    margin: 0 auto 12px;
    display: block;
}

.composer-entry-title {
    color: #6d7a88;
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.composer-entry-option {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background-color: #f4f7fa;
    color: #29323d;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.composer-entry-option + .composer-entry-option {
    margin-top: 8px;
}

.composer-entry-option i {
    color: #00a8e8;
    font-size: 1rem;
}

body.composer-entry-open {
    overflow: hidden;
}

.story-viewer-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: grid;
    place-items: center;
    padding: 0;
}

.story-viewer-modal[hidden] {
    display: none;
}

.story-viewer-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(4, 6, 10, 0.92);
}

.story-viewer-shell {
    position: relative;
    width: min(100vw, 420px);
    height: 100vh;
    background-color: #000000;
    overflow: hidden;
    border-radius: 0;
}

.story-progress {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 52px;
    z-index: 3;
    display: flex;
    gap: 6px;
}

.story-progress-item {
    flex: 1 1 0;
    height: 3px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.28);
    overflow: hidden;
}

.story-progress-fill {
    display: block;
    width: 0%;
    height: 100%;
    background-color: #ffffff;
    border-radius: inherit;
}

.story-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}

.story-sound-btn {
    position: absolute;
    top: 50px;
    right: 10px;
    z-index: 4;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}

.story-sound-btn.is-muted {
    color: rgba(255, 255, 255, 0.86);
}

.story-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #000000;
}

.story-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #000000;
}

.story-lock-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.story-lock-badge {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 1px solid rgba(0, 175, 240, 0.78);
    background-color: rgba(0, 175, 240, 0.2);
    color: #00aff0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(0, 175, 240, 0.36);
    pointer-events: auto;
    cursor: pointer;
    animation: story-lock-pulse 1.4s ease-out infinite;
    transition: transform 0.18s ease;
}

.story-lock-badge:hover {
    transform: scale(1.04);
}

.story-lock-badge:active {
    transform: scale(0.96);
}

.story-lock-badge:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.92);
    outline-offset: 2px;
}

.story-lock-price {
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background-color: rgba(8, 16, 28, 0.74);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    padding: 7px 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

@keyframes story-lock-pulse {
    0% {
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(0, 175, 240, 0.42);
    }
    70% {
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34), 0 0 0 18px rgba(0, 175, 240, 0);
    }
    100% {
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(0, 175, 240, 0);
    }
}

.story-lock-overlay[hidden] {
    display: none !important;
}

.story-image.is-role-blurred {
    filter: blur(12px);
}

.story-video.is-role-blurred {
    filter: grayscale(1) blur(12px);
}

.story-image[hidden],
.story-video[hidden] {
    display: none !important;
}

.story-header {
    position: absolute;
    top: 22px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.story-header img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    object-fit: cover;
}

.story-header span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.story-header-time {
    position: absolute;
    top: 24px;
    right: 54px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.38);
    white-space: nowrap;
}

.story-header-time[hidden] {
    display: none !important;
}

.story-footer {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-views {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.story-delete-btn {
    border: 0;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.48);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    height: 34px;
    padding: 0 14px;
    cursor: pointer;
}

.story-delete-btn:disabled {
    opacity: 0.46;
    cursor: default;
}

.story-tap-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.story-tap-prev {
    left: 0;
}

.story-tap-next {
    right: 0;
}

body.story-viewer-open {
    overflow: hidden;
}

body.story-compose-open {
    overflow: hidden;
}

body.story-price-open {
    overflow: hidden;
}

.image-viewer-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 16px;
}

.image-viewer-modal[hidden] {
    display: none;
}

.image-viewer-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(8, 12, 18, 0.82);
}

.image-viewer-content {
    position: fixed;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: min(96vw, 980px);
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    display: block;
    margin: auto;
    justify-self: center;
    align-self: center;
}

.locked-content-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: grid;
    place-items: center;
    padding: 10px;
}

.locked-content-modal[hidden] {
    display: none;
}

.locked-content-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(8, 12, 18, 0.66);
}

.locked-content-dialog {
    position: relative;
    width: min(94vw, 300px);
    background-color: #f6f8fb;
    border-radius: 8px;
    border: 1px solid #d8e0e7;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.locked-content-close-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.86);
    color: #7c8793;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.locked-content-cover-wrap {
    height: 96px;
    overflow: hidden;
}

.locked-content-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.locked-content-profile {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 0 12px;
    margin-top: -34px;
    position: relative;
    z-index: 2;
}

.locked-content-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: cover;
    background-color: #d6dde6;
    flex: 0 0 auto;
}

.locked-content-meta {
    padding-bottom: 7px;
}

.locked-content-name {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #202a35;
}

.locked-content-name img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.locked-content-user {
    color: #7f8b99;
    font-size: 0.95rem;
}

.locked-content-body {
    padding: 10px 14px 14px;
}

.locked-content-heading {
    color: #8b9aad;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.locked-content-product {
    color: #2d3640;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.locked-content-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.locked-content-list li {
    position: relative;
    padding-left: 24px;
    color: #2d3640;
    line-height: 1.35;
}

.locked-content-list li::before {
    content: "✓";
    position: absolute;
    left: 2px;
    top: -1px;
    color: #00aff0;
    font-size: 1.1rem;
    font-weight: 700;
}

.locked-content-payment {
    margin-bottom: 12px;
    padding-top: 12px;
    border-top: 1px solid #dbe2ea;
}

.locked-content-payment-title {
    color: #2f3943;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.locked-content-payment-label {
    color: #6d7a87;
    font-size: 0.82rem;
    font-weight: 700;
}

.locked-content-payment-value {
    color: #202a35;
    font-size: 1.55rem;
    font-weight: 800;
    margin: 3px 0 10px;
}

.locked-content-payment-qr {
    display: block;
    width: 100%;
    max-width: 252px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    border: 1px solid #d5dde6;
    background-color: #ffffff;
    margin: 0 auto 10px;
}

.locked-content-payment-key-wrap {
    margin-bottom: 10px;
}

.locked-content-payment-key {
    width: 100%;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #d4dde6;
    background-color: #ffffff;
    color: #2f3640;
    font-size: 0.8rem;
    padding: 0 12px;
}

.locked-content-payment-copy {
    width: 100%;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #d4dde6;
    background-color: #ffffff;
    color: #2f3640;
    font-weight: 700;
    cursor: pointer;
}

.locked-content-payment-feedback {
    color: #5a6a79;
    font-size: 0.8rem;
    margin-top: 8px;
    text-align: center;
}

.locked-content-cta {
    width: 100%;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #d4dde6;
    background-color: #ffffff;
    color: #2f3640;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
}

.locked-content-close {
    width: 100%;
    border: 0;
    background: transparent;
    color: #00a4e8;
    font-weight: 700;
    text-align: right;
    cursor: pointer;
}

.availability-toast {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 74px;
    transform: translate3d(0, 120%, 0) scale(0.96);
    opacity: 0;
    filter: blur(8px);
    max-width: 520px;
    min-height: 84px;
    border-radius: 12px;
    background: rgba(22, 31, 42, 0.56);
    color: #f5f8fc;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    z-index: 1190;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 14px 12px;
    box-shadow: 0 10px 28px rgba(3, 8, 16, 0.34);
    transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.44s ease-out, filter 0.52s ease-out;
    will-change: transform, opacity, filter;
}

.availability-toast[hidden] {
    display: none;
}

.availability-toast.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    filter: blur(0);
}

.availability-toast-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    flex: 0 0 auto;
    align-self: center;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.36s ease-out;
}

.availability-toast-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.54s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease-out;
    transition-delay: 0.04s;
}

.availability-toast.is-visible .availability-toast-avatar,
.availability-toast.is-visible .availability-toast-copy {
    transform: translateY(0);
    opacity: 1;
}

.availability-toast-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.availability-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #3ddc84;
    animation: live-dot-pulse 1.1s ease-in-out infinite;
}

@keyframes live-dot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.7);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(61, 220, 132, 0);
        transform: scale(1.08);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(61, 220, 132, 0);
        transform: scale(1);
    }
}

.availability-toast-subtitle {
    font-size: 0.86rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 8px;
}

.availability-toast-cta {
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1f2b36;
    font-weight: 700;
    font-size: 0.86rem;
    padding: 8px 14px;
    cursor: pointer;
    flex: 0 0 auto;
}

.availability-toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.app-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 1080px);
    height: 56px;
    border-top: 1px solid var(--border);
    background-color: var(--bg-surface, #ffffff);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 900;
}

.app-bottom-nav button {
    border: 0;
    background-color: transparent;
    color: #8391a2;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

@media (min-width: 901px) {
    body {
        padding-bottom: 0;
    }

    .story-compose-modal {
        padding: 20px 0;
    }

    .story-compose-shell {
        width: min(92vw, 420px);
        height: calc(100vh - 40px);
        border-radius: 16px;
    }

    .story-target-sheet {
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 20px;
    }

    .story-target-backdrop {
        background-color: rgba(8, 12, 18, 0.62);
    }

    .story-target-panel {
        width: min(92vw, 420px);
        border-radius: 16px;
        border-bottom: 1px solid #d8e0e8;
        padding: 12px 12px 14px;
        transform: translateY(104%);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.36);
        transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .story-target-sheet.is-open .story-target-panel {
        transform: translateY(0);
    }

    .story-viewer-modal {
        padding: 20px 0;
    }

    .story-viewer-shell {
        width: min(92vw, 420px);
        height: calc(100vh - 40px);
        border-radius: 16px;
    }

    .availability-toast {
        left: 50%;
        right: auto;
        width: min(92vw, 520px);
        transform: translate3d(-50%, 120%, 0) scale(0.96);
    }

    .availability-toast.is-visible {
        transform: translate3d(-50%, 0, 0) scale(1);
    }

    .app-bottom-nav {
        display: none;
    }
}

.app-bottom-nav .mini-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    background-color: #d6e8f2;
    overflow: hidden;
    padding: 0;
}

.app-bottom-nav .mini-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.drawer-open {
    overflow: hidden;
}

.account-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 14, 18, 0.3);
    z-index: 1090;
}

.account-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(92vw, 300px);
    height: 100vh;
    background-color: #f7f8fa;
    border-left: 1px solid var(--border);
    z-index: 1100;
    transform: translateX(102%);
    transition: transform 0.26s ease;
    overflow-y: auto;
    padding: 14px 0 24px;
}

.account-drawer.is-open {
    transform: translateX(0);
}

.account-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px 12px;
    border-bottom: 1px solid #e0e5ea;
}

.account-drawer-user-main {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.account-drawer-user {
    position: relative;
}

.account-drawer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.account-drawer-close {
    border: 0;
    background: transparent;
    color: #8f9baa;
    font-size: 1.1rem;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.account-drawer-close:hover {
    background-color: #e9edf2;
}

.account-drawer-identity {
    padding: 0;
    border-bottom: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.account-drawer-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
}

.account-drawer-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2832;
    margin-bottom: 0;
    line-height: 1.15;
}

.account-drawer-verify {
    width: 15px;
    height: 15px;
    object-fit: contain;
    flex: 0 0 15px;
}

.account-drawer-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.account-drawer-handle {
    font-size: 0.9rem;
    color: #7b8897;
    line-height: 1.15;
}

.account-drawer-meta-separator {
    font-size: 0.82rem;
    color: #7b8897;
    line-height: 1;
}

.account-drawer-availability {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: #6f7d8c;
    line-height: 1.15;
    margin-top: 0;
}

.account-drawer-availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
}

.account-drawer-availability-dot.is-offline {
    background-color: #99a3ad;
}

.account-drawer-nav {
    padding-top: 6px;
}

.account-drawer-item {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 1.03rem;
    color: #1f2832;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.account-drawer-item:hover {
    background-color: #edf1f5;
}

.account-drawer-item.is-active {
    background-color: #edf1f5;
    color: #1f2832;
    font-weight: 700;
}

.account-drawer-item.is-active i {
    color: #1f2832;
}

.account-drawer-item.is-active:disabled {
    color: #6f7f90;
    opacity: 1;
}

.account-drawer-item.is-active:disabled i {
    color: #6f7f90;
}

.account-drawer-item:disabled {
    color: #96a2b1;
    cursor: not-allowed;
    opacity: 0.68;
}

.account-drawer-item:disabled:hover {
    background-color: transparent;
}

.account-drawer-item i {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    color: #323b45;
    position: relative;
}

/* Sidebar icon palette (soft tones) */
.left-nav-link i,
.account-drawer-item i,
.dashboard-mobile-menu-link i {
    color: var(--sidebar-icon-color, #95a8bc);
    transition: color 0.2s ease;
}

.left-nav-link i.bi-house,
.account-drawer-item i.bi-house,
.dashboard-mobile-menu-link i.bi-house {
    --sidebar-icon-color: #8fb6ff;
}

.left-nav-link i.bi-speedometer2,
.account-drawer-item i.bi-speedometer2,
.dashboard-mobile-menu-link i.bi-speedometer2 {
    --sidebar-icon-color: #9ea7ff;
}

.left-nav-link i.bi-bell,
.account-drawer-item i.bi-bell,
.dashboard-mobile-menu-link i.bi-bell {
    --sidebar-icon-color: #f5b2c8;
}

.left-nav-link i.bi-person-circle,
.account-drawer-item i.bi-person-circle,
.dashboard-mobile-menu-link i.bi-person-circle {
    --sidebar-icon-color: #9ed6f6;
}

.left-nav-link i.bi-people,
.account-drawer-item i.bi-people,
.dashboard-mobile-menu-link i.bi-people,
.left-nav-link i.bi-people-fill,
.account-drawer-item i.bi-people-fill,
.dashboard-mobile-menu-link i.bi-people-fill {
    --sidebar-icon-color: #a8c3f2;
}

.left-nav-link i.bi-stars,
.account-drawer-item i.bi-stars,
.dashboard-mobile-menu-link i.bi-stars {
    --sidebar-icon-color: #c3b5ff;
}

.left-nav-link i.bi-gem,
.account-drawer-item i.bi-gem,
.dashboard-mobile-menu-link i.bi-gem {
    --sidebar-icon-color: #cda7ff;
}

.left-nav-link i.bi-cart,
.account-drawer-item i.bi-cart,
.dashboard-mobile-menu-link i.bi-cart {
    --sidebar-icon-color: #f6bf9d;
}

.left-nav-link i.bi-cash,
.account-drawer-item i.bi-cash,
.dashboard-mobile-menu-link i.bi-cash,
.left-nav-link i.bi-cash-stack,
.account-drawer-item i.bi-cash-stack,
.dashboard-mobile-menu-link i.bi-cash-stack {
    --sidebar-icon-color: #9dd7be;
}

.left-nav-link i.bi-gear,
.account-drawer-item i.bi-gear,
.dashboard-mobile-menu-link i.bi-gear {
    --sidebar-icon-color: #b9c4d3;
}

.left-nav-link i.bi-credit-card,
.account-drawer-item i.bi-credit-card,
.dashboard-mobile-menu-link i.bi-credit-card {
    --sidebar-icon-color: #9ec8ee;
}

.left-nav-link i.bi-question-circle,
.account-drawer-item i.bi-question-circle,
.dashboard-mobile-menu-link i.bi-question-circle {
    --sidebar-icon-color: #c7b7ea;
}

.left-nav-link i.bi-box-arrow-right,
.account-drawer-item i.bi-box-arrow-right,
.dashboard-mobile-menu-link i.bi-box-arrow-right {
    --sidebar-icon-color: #eeacac;
}

.left-nav-link i.bi-person-plus,
.account-drawer-item i.bi-person-plus,
.dashboard-mobile-menu-link i.bi-person-plus {
    --sidebar-icon-color: #b3c9ea;
}

.left-nav-link i.bi-plus-lg,
.account-drawer-item i.bi-plus-lg,
.dashboard-mobile-menu-link i.bi-plus-lg,
.left-nav-link i.bi-plus-square,
.account-drawer-item i.bi-plus-square,
.dashboard-mobile-menu-link i.bi-plus-square {
    --sidebar-icon-color: #95d0ef;
}

.left-nav-link i.bi-arrow-left-short,
.account-drawer-item i.bi-arrow-left-short,
.dashboard-mobile-menu-link i.bi-arrow-left-short {
    --sidebar-icon-color: #a8b8cc;
}

.left-nav-link.left-nav-link-disabled i,
.left-nav-link.is-active.left-nav-link-disabled i,
.account-drawer-item:disabled i,
.account-drawer-item.is-active:disabled i {
    color: #9aa7b7;
}

.sidebar-notification-badge {
    position: absolute;
    right: -6px;
    bottom: -3px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background-color: #ef4444;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
    padding: 0 4px;
    pointer-events: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
}

.account-drawer-item:disabled i {
    color: #96a2b1;
}

.account-drawer-item-danger {
    margin-top: 10px;
    border-top: 1px solid #e0e5ea;
    color: #26313a;
}

/* Ensure logout/register danger actions keep full-row hover area in the drawer. */
#account-drawer .account-drawer-item.account-drawer-item-danger {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
}

body.age-gate-open {
    overflow: hidden;
}

.age-gate-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
}

.age-gate-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 12, 17, 0.58);
}

.age-gate-card {
    position: relative;
    width: min(92vw, 420px);
    border: 1px solid #d5dce4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(20, 29, 39, 0.28);
    padding: 20px 18px;
    text-align: center;
}

.age-gate-title {
    color: #1f2832;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.age-gate-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.age-gate-btn {
    min-width: 112px;
    border-radius: 999px;
    border: 1px solid #ced6df;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 9px 18px;
    cursor: pointer;
}

.age-gate-btn-secondary {
    background: #f4f6f9;
    color: #4a5868;
}

.age-gate-btn-secondary:hover {
    background: #e9edf2;
}

.age-gate-btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.age-gate-btn-primary:hover {
    filter: brightness(0.95);
}

@media (max-width: 900px) {
    .layout {
        grid-template-columns: 1fr;
    }

    .layout.no-right-sidebar {
        grid-template-columns: 1fr;
    }

    .layout.no-sidebars {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .main-content {
        width: 100%;
        border-left: 0;
        border-right: 0;
    }

    .profile-avatar {
        width: 120px;
        height: 120px;
    }

    .online-dot {
        width: 14px;
        height: 14px;
    }

    .post-image {}

    .post-actions {
        flex-wrap: wrap;
    }

    .tip-btn {
        margin-left: auto;
    }

    .account-drawer {
        height: 100vh;
    }

    .availability-toast {
        gap: 10px;
        min-height: 76px;
        padding: 12px 12px 10px;
    }

    .availability-toast-title {
        font-size: 0.92rem;
    }

    .availability-toast-subtitle {
        font-size: 0.8rem;
    }

    .availability-toast-cta {
        font-size: 0.78rem;
        padding: 7px 12px;
    }

    .profile-page .banner-brand-row {
        display: flex;
    }

    .config-pricing-page .banner-brand-row {
        display: flex;
    }

    .profile-page .banner-brand-inline,
    .config-pricing-page .banner-brand-inline {
        display: none;
    }

    .availability-toast-avatar {
        width: 50px;
        height: 50px;
    }

    body.has-availability-toast .posts-section {
        padding-bottom: 156px;
    }
}

@media (min-width: 901px) and (max-width: 1340px) {
    .layout.no-right-sidebar {
        grid-template-columns: 370px minmax(0, 1fr);
    }
}

.settings-page {
    background-color: var(--bg-page);
    color: var(--text-main);
}

.settings-page .layout {
    max-width: 1500px;
    grid-template-columns: 370px minmax(0, 600px) 370px;
}

.settings-page .left-sidebar,
.settings-page .right-sidebar {
    background-color: #eef0f2;
}

.settings-page .settings-right-sidebar {
    min-height: 100%;
}

.settings-page .settings-right-sidebar::before {
    content: "";
    display: block;
    width: 100%;
    min-height: 1px;
}

.settings-page .main-content {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.settings-main-content {
    background-color: var(--bg-main);
    padding-top: 52px;
}

.settings-top-row {
    position: absolute;
    top: 12px;
    left: 10px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-top-row .banner-brand-inline {
    margin-top: 2px;
    color: #111111;
    text-shadow: none;
}

.settings-top-row .banner-back-btn {
    color: #111111;
}

.settings-top-row .banner-back-btn i {
    color: #111111;
}

.settings-profile-compact {
    margin: 8px 16px 2px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background-color: var(--bg-card);
    display: flex;
    align-items: center;
    gap: 12px;
}

.settings-profile-avatar-wrap {
    position: relative;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
}

.settings-profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.settings-profile-online-dot {
    position: absolute;
    right: 1px;
    bottom: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #22c55e;
    border: 2px solid #ffffff;
}

.settings-profile-identity {
    min-width: 0;
}

.settings-profile-name {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-main);
}

.settings-profile-handle {
    margin-top: 2px;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.1;
}

.settings-summary {
    padding: 16px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-summary-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 14px;
    background-color: var(--bg-card);
    padding: 14px 16px 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.settings-summary-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 4px;
    background-color: var(--accent);
}

.settings-summary-card-sales::before {
    background-color: #00aff0;
}

.settings-summary-card-withdraw::before {
    background-color: #f59e0b;
}

.settings-summary-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.settings-summary-value {
    color: var(--text-main);
    font-size: 1.95rem;
    font-weight: 700;
    line-height: 1.1;
}

.settings-summary-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #d7e2ec;
    color: #00a4e8;
    background-color: #f4f8fc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    flex: 0 0 auto;
}

.settings-summary-card-withdraw .settings-summary-icon {
    border-color: #f3dfba;
    color: #d88700;
    background-color: #fff8ec;
}

.settings-history {
    padding: 24px 16px 30px;
}

.settings-history-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.settings-history h2 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.settings-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.settings-filter-btn {
    border: 1px solid var(--border);
    border-radius: 999px;
    background-color: #f5f8fb;
    color: var(--text-soft);
    height: 34px;
    padding: 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.settings-filter-btn:hover {
    border-color: #b9c8d7;
    color: #5f6e7f;
}

.settings-filter-btn.is-active {
    border-color: #86d6f8;
    background-color: #e8f8ff;
    color: #008dc8;
    box-shadow: 0 0 0 1px rgba(0, 175, 240, 0.18) inset;
}

.settings-transaction-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.settings-transaction-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background-color: var(--bg-card);
    padding: 14px 16px;
    display: grid;
    grid-template-columns: minmax(154px, 1.2fr) minmax(128px, 1fr) auto auto;
    align-items: center;
    gap: 10px;
}

.settings-transaction-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 700;
}

.settings-transaction-date i {
    color: #00aff0;
    font-size: 0.9rem;
}

.settings-transaction-id {
    color: var(--text-soft);
    font-family: "Courier New", monospace;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
}

.settings-transaction-amount {
    color: #00a2e7;
    font-size: 1.52rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.settings-history .transaction-status {
    border: 1px solid #d6dde6;
    border-radius: 999px;
    height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.settings-history .transaction-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
    box-shadow: none;
}

.settings-history .transaction-status-pendente {
    border-color: #ecd5a6;
    color: #c68400;
    background-color: #fff9ee;
}

.settings-history .transaction-status-aprovado {
    border-color: #b9e2cc;
    color: #1d9a63;
    background-color: #f2fbf6;
}

.settings-history .transaction-status-recusado {
    border-color: #f0c7cd;
    color: #d04b5f;
    background-color: #fff4f6;
}

.settings-history-empty {
    color: var(--text-soft);
    font-size: 0.92rem;
    margin-top: 12px;
}

.monetization-overview {
    padding: 14px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.monetization-stat-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 16px;
    background-color: var(--bg-card);
    min-height: 102px;
    padding: 20px 16px 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
}

.monetization-stat-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 0 8px 8px 0;
    background: var(--accent);
}

.monetization-stat-card-withdraw::before {
    background: #1d9a63;
}

.monetization-stat-copy {
    min-width: 0;
}

.monetization-stat-label {
    color: var(--text-soft);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.monetization-stat-value {
    color: var(--text-main);
    font-size: clamp(2rem, 4.8vw, 2.3rem);
    font-weight: 800;
    line-height: 1.1;
}

.monetization-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    border: 1px solid #cae7fa;
    color: #00a2e7;
    background-color: #eaf6fe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.15rem;
}

.monetization-stat-card-withdraw .monetization-stat-icon {
    border-color: #b9e2cc;
    color: #1d9a63;
    background-color: #f2fbf6;
}

.monetization-stat-card-withdraw .monetization-stat-value {
    color: #1d9a63;
}

.monetization-history {
    padding: 14px 16px 0;
}

.monetization-history-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    background-color: var(--bg-card);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.monetization-history-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border: 1px solid #cae2f3;
    border-radius: 14px;
    background-color: #f6fbff;
    padding: 4px;
}

.monetization-history-tabs.is-single-tab {
    grid-template-columns: 1fr;
}

.monetization-history-tab {
    border: 0;
    border-radius: 10px;
    height: 46px;
    background-color: transparent;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.monetization-history-tab i {
    font-size: 0.95rem;
}

.monetization-history-tab:hover {
    background-color: #edf6ff;
}

.monetization-history-tab.is-active {
    background: linear-gradient(135deg, #0e86ff 0%, #005bda 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 95, 221, 0.3);
}

.monetization-history .settings-transaction-card {
    border-color: #d2e1ee;
    background-color: #fbfdff;
}

.monetization-history .settings-transaction-date i {
    color: #008fd1;
}

.monetization-history-empty {
    margin-top: 0;
    border: 1px dashed #d4e1ed;
    border-radius: 14px;
    background-color: #f9fcff;
    min-height: 218px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.monetization-history-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    border: 1px solid #cae7fa;
    background-color: #ecf7ff;
    color: #008fd1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.monetization-history-empty-title {
    color: var(--text-main);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
}

.monetization-history-empty-copy {
    color: var(--text-soft);
    font-size: 0.97rem;
    line-height: 1.4;
    max-width: 280px;
}

.settings-pricing {
   padding: 12px 16px 0;
}

.settings-profile-form-section {
    margin-top: 70px;
}

.settings-pricing-card {
    border: 1px solid var(--border);
    border-radius: 14px;
    background-color: var(--bg-card);
    padding: 16px;
}

.settings-pricing-title {
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.settings-pricing-copy {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 14px;
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

body.config-pricing-page .settings-pricing-card.is-notification-empty {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    padding: 0;
}

.notification-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    background-color: #f7fbff;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 40px 12px 14px;
    position: relative;
}

.notification-item-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background-color: #dfe8f1;
    border: 1px solid #d0dae5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
}

.notification-item-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.notification-item-copy {
    min-width: 0;
}

.notification-item-type {
    display: inline-flex;
    border-radius: 999px;
    background-color: #eaf6fe;
    border: 1px solid #cae7fa;
    color: #0f7eb1;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 2px 8px;
    margin-bottom: 4px;
}

.notification-item-title {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.notification-item-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-item-time {
    color: var(--text-soft);
    font-size: 0.8rem;
    margin-top: 6px;
}

.notification-item-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #cae7fa;
    background-color: #eef8ff;
    color: #0f7eb1;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

.notification-item-action:hover {
    background-color: #dff1ff;
    border-color: #b5dffb;
    color: #0a6b98;
}

.notification-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 999px;
    background: #e9eff6;
    color: #6d7d8d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background-color 120ms ease, color 120ms ease;
}

.notification-item-remove:hover {
    background: #dfe7ef;
    color: #415364;
}

.notification-item-subscription {
    position: relative;
    overflow: hidden;
    border-color: #d7cdfb;
    background: linear-gradient(135deg, #fcfaff 0%, #f4edff 100%);
}

.notification-item-subscription::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.52) 52%, rgba(255, 255, 255, 0) 85%);
    transform: translateX(-115%);
    animation: subscription-notification-shine 2.2s ease-in-out infinite;
}

.notification-item-subscription .notification-item-type {
    background-color: #f3edff;
    border-color: #ded1ff;
    color: #6f3dcc;
}

.notification-item-subscription.is-notification-unread {
    animation: subscription-notification-pop 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes subscription-notification-pop {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subscription-notification-shine {
    0% {
        transform: translateX(-115%);
    }

    55%,
    100% {
        transform: translateX(130%);
    }
}

.messages-inbox {
    padding: 16px 16px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.messages-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.messages-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-main);
}

.messages-subtitle {
    margin: 2px 0 0;
    font-size: 0.92rem;
    color: var(--text-soft);
}

.messages-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.messages-icon-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background-color: #f5f8fc;
    color: #4d5b6c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease;
}

.messages-icon-btn:hover {
    background-color: #eaf1f9;
}

.messages-icon-btn:active {
    transform: translateY(1px);
}

.messages-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background-color: #f4f7fb;
    padding: 8px 12px 8px 14px;
}

.messages-search i {
    color: #93a4b6;
    font-size: 1rem;
}

.messages-search input {
    width: 100%;
    border: 0;
    background: transparent;
    outline: none;
    font-size: 0.96rem;
    color: var(--text-main);
}

.messages-search input::placeholder {
    color: #9aacbc;
}

.messages-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 2px 2px;
}

.messages-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.messages-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.messages-switch-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #d7dfe8;
    border-radius: 999px;
    transition: all 0.18s ease;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}

.messages-switch-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(20, 34, 48, 0.18);
    transition: all 0.18s ease;
}

.messages-switch input:checked + .messages-switch-slider {
    background: linear-gradient(135deg, #3b8df6 0%, #2b7bf3 100%);
}

.messages-switch input:checked + .messages-switch-slider::before {
    transform: translateX(22px);
}

.messages-thread-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.messages-thread-empty {
    border: 1px dashed #d2dde8;
    border-radius: 14px;
    background: #f7fafc;
    color: #607284;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 14px 16px;
}

.messages-thread {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background-color: #ffffff;
    padding: 10px 12px;
    box-shadow: 0 6px 12px rgba(12, 28, 44, 0.04);
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    user-select: none;
}

.messages-thread:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 18px rgba(12, 28, 44, 0.10);
    border-color: #d2deeb;
}

.messages-thread.is-subscription-new {
    border-color: #cdbdff;
    background: linear-gradient(135deg, #ffffff 0%, #f7f2ff 100%);
    box-shadow: 0 12px 22px rgba(111, 61, 204, 0.18);
    animation: subscription-thread-pulse 1.55s ease-in-out infinite;
}

.messages-thread.is-subscription-new .messages-thread-badge {
    animation: subscription-badge-pop 1.2s ease-in-out infinite;
}

@keyframes subscription-thread-pulse {
    0%,
    100% {
        box-shadow: 0 12px 22px rgba(111, 61, 204, 0.12);
    }

    50% {
        box-shadow: 0 14px 26px rgba(111, 61, 204, 0.28);
    }
}

@keyframes subscription-badge-pop {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.messages-thread * {
    user-select: none;
}

.messages-thread-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(12, 28, 44, 0.15);
}

.messages-thread-body {
    display: grid;
    gap: 4px;
}

.messages-thread-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.messages-thread-name {
    font-weight: 800;
    color: var(--text-main);
    font-size: 1rem;
}

.messages-thread-time {
    font-size: 0.9rem;
    color: #7a8898;
}

.messages-thread-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
}

.messages-thread-preview-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1 1 auto;
}

.messages-thread-thumb {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-color: #e6ebf2;
    border: 1px solid var(--border-soft);
    box-shadow: 0 6px 12px rgba(12, 28, 44, 0.08);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.messages-thread-thumb::before {
    content: "";
    position: absolute;
    inset: -2%;
    background: inherit;
    filter: blur(1px);
    transform: scale(1.05);
    z-index: 0;
}

.messages-thread-thumb::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    right: 9px;
    bottom: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(12, 28, 44, 0.15);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c13b2a'><path d='M12 2a2 2 0 0 0-4 0v1H7V2a2 2 0 1 0-4 0c0 .552.448 1 1 1h1v1H3a1 1 0 0 0-1 1v2h12V5a1 1 0 0 0-1-1h-2V3h1c.552 0 1-.448 1-1Zm-6 1V3a1 1 0 1 1 2 0v1H6Zm3 0V3a1 1 0 1 1 2 0v1H9Zm4 4H9v7h3a1 1 0 0 0 1-1V7Zm-6 7V7H3v7a1 1 0 0 0 1 1h3Z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 1;
}

/* Gift modal */
body.gift-modal-open {
    overflow: hidden;
}

.gift-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: grid;
    place-items: center;
    padding: 12px;
}

.gift-modal[hidden] {
    display: none;
}

.gift-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 10, 15, 0.78);
    backdrop-filter: blur(4px);
}

.gift-modal__dialog {
    position: relative;
    width: min(94vw, 520px);
    background: #ffffff;
    color: #2f3b4c;
    border-radius: 14px;
    padding: 18px 18px 20px;
    box-shadow: 0 20px 36px rgba(12, 28, 44, 0.25);
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #d8e0e8;
}

.gift-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: #eef3f8;
    color: #5a6575;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.gift-modal__close:hover {
    background: #e2e8f0;
}

.gift-modal__header h2 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1f2a3a;
}

.gift-modal__model {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f4f7fb;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #e4e9f0;
}

.gift-modal__avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 12px rgba(12, 28, 44, 0.12);
}

.gift-modal__model-name {
    margin: 0;
    font-weight: 800;
    color: #1f2a3a;
}

.gift-modal__model-text {
    margin: 2px 0 0;
    color: #5d6b7a;
    font-size: 0.92rem;
}

.gift-modal__value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.35rem;
    color: #1f2a3a;
}

.gift-modal__amount {
    min-width: 140px;
    text-align: center;
    letter-spacing: 0.02em;
}

.gift-modal__adjust {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #f7b733 0%, #f7931a 100%);
    color: #ffffff;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(247, 147, 26, 0.25);
    transition: transform 0.1s ease, filter 0.15s ease;
}

.gift-modal__adjust:active {
    transform: translateY(1px);
}

.gift-modal__slider {
    display: grid;
    gap: 8px;
    padding: 0 2px;
}

.gift-modal__slider input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7b733 0%, #f7931a 55%, #e6edf5 55%);
    outline: none;
    cursor: pointer;
}

.gift-modal__slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f7931a;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 16px rgba(247, 147, 26, 0.35);
    cursor: pointer;
}

.gift-modal__slider input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f7931a;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 16px rgba(247, 147, 26, 0.35);
    cursor: pointer;
}

.gift-modal__limits {
    color: #5d6b7a;
    font-size: 0.9rem;
    text-align: center;
}

.gift-modal__message-label {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #7a8798;
}

.gift-modal__message-box {
    position: relative;
}

.gift-modal__message-box textarea {
    width: 100%;
    min-height: 100px;
    border-radius: 12px;
    border: 1px solid #d8e0e8;
    background: #ffffff;
    color: #2f3b4c;
    padding: 12px 12px 24px;
    resize: vertical;
    outline: none;
}

.gift-modal__message-box textarea::placeholder {
    color: #9aacbc;
}

.gift-modal__counter {
    position: absolute;
    right: 12px;
    bottom: 6px;
    font-size: 0.82rem;
    color: #7a8798;
}

.gift-modal__send {
    width: 100%;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #f7931a;
    background: linear-gradient(135deg, #ffb347 0%, #f7931a 100%);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(247, 147, 26, 0.28);
    transition: filter 0.15s ease, transform 0.1s ease;
}

.gift-modal__send:active {
    transform: translateY(1px);
}

/* Payment modal */
.payment-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: grid;
    place-items: center;
    padding: 12px;
}

.payment-modal[hidden] {
    display: none;
}

.payment-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 10, 15, 0.78);
    backdrop-filter: blur(4px);
}

.payment-modal__dialog {
    position: relative;
    width: min(94vw, 420px);
    background: #ffffff;
    color: #2f3b4c;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 20px 36px rgba(12, 28, 44, 0.25);
    border: 1px solid #d8e0e8;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: #eef3f8;
    color: #5a6575;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.payment-modal__close:hover {
    background: #e2e8f0;
}

.payment-modal__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: #7a8798;
}

.payment-modal__header h2 {
    margin: 4px 0 4px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1f2a3a;
}

.payment-modal__label {
    margin: 0;
    color: #7a8798;
    font-size: 0.9rem;
}

.payment-modal__amount {
    margin: 2px 0 0;
    font-size: 1.4rem;
    font-weight: 900;
    color: #1f2a3a;
}

.payment-modal__qr {
    display: grid;
    place-items: center;
}

.payment-modal__qr-inner {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f6f7fb 0%, #e9eef5 100%);
    border: 1px solid #d8e0e8;
    display: grid;
    place-items: center;
    color: #7a8798;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.payment-modal__pix {
    display: grid;
    gap: 10px;
}

.payment-modal__pix-key {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #d8e0e8;
    background: #f6f9fc;
    font-size: 0.9rem;
    color: #2f3b4c;
    word-break: break-all;
}

.payment-modal__copy {
    width: 100%;
    height: 42px;
    border-radius: 10px;
    border: 0;
    background: linear-gradient(135deg, #ffb347 0%, #f7931a 100%);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(247, 147, 26, 0.28);
    transition: transform 0.1s ease, filter 0.15s ease;
}

.payment-modal__copy:active {
    transform: translateY(1px);
}

/* Auth modal (Criar conta inline) */
body.auth-modal-open {
    overflow: hidden;
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 1650;
    display: grid;
    place-items: center;
    padding: 12px;
}

.auth-modal[hidden] {
    display: none;
}

.auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(7, 10, 15, 0.78);
    backdrop-filter: blur(4px);
}

.auth-modal__dialog {
    position: relative;
    width: min(96vw, 640px);
    height: min(92vh, 720px);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(12, 28, 44, 0.35);
    border: 1px solid #d8e0e8;
}

.auth-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #eef3f8;
    color: #5a6575;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.15s ease;
}

.auth-modal__close:hover {
    background: #e2e8f0;
}

.auth-modal__dialog iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.messages-thread-preview {
    color: #5c6b80;
    font-size: 0.94rem;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.35;
    white-space: normal;
}

.messages-thread-badge {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb347 0%, #ff8a00 100%);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    box-shadow: 0 4px 10px rgba(255, 138, 0, 0.25);
}

.messages-chat {
    padding: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.messages-chat-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
}

.messages-chat-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.messages-chat-avatar {
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 10px rgba(12, 28, 44, 0.12);
}

.messages-chat-ident {
    display: grid;
    gap: 2px;
}

.messages-chat-name {
    margin: 0;
    font-weight: 800;
    color: var(--text-main);
}

.messages-chat-status {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.messages-chat-body {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.messages-chat-start {
    text-align: center;
    margin: 8px 0 4px;
    color: #8a96a7;
    font-size: 0.9rem;
}

.chat-bubble {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: flex-start;
}

.chat-bubble.is-subscription-new {
    animation: subscription-chat-bubble-enter 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.chat-bubble.is-subscription-new .chat-bubble-content {
    border-color: #d8c9ff;
    box-shadow: 0 14px 24px rgba(111, 61, 204, 0.18);
}

@keyframes subscription-chat-bubble-enter {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-bubble-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(12, 28, 44, 0.12);
}

.chat-bubble-content {
    background-color: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 16px 16px 16px 8px;
    padding: 12px 14px 8px;
    box-shadow: 0 10px 18px rgba(12, 28, 44, 0.06);
    color: #2f3b4c;
    line-height: 1.45;
    font-size: 0.95rem;
    max-width: 560px;
}

.chat-bubble-content p {
    margin: 0 0 8px;
}

.chat-bubble-time {
    display: inline-block;
    font-size: 0.8rem;
    color: #8a96a7;
}

.chat-media {
    margin: 10px 0 8px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background-color: #0f1720;
    border: 1px solid #dbe3ec;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    isolation: isolate;
}

.chat-media img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.chat-media::before {
    content: "";
    position: absolute;
    inset: -6%;
    background-image: var(--chat-media-bg, none);
    background-size: cover;
    background-position: center;
    filter: blur(14px);
    transform: scale(1.05);
    z-index: 1;
}

.chat-bubble-outgoing {
    grid-template-columns: 1fr auto;
    justify-content: flex-end;
}

.chat-bubble-outgoing .chat-bubble-avatar {
    order: 2;
    margin-left: 8px;
}

.chat-bubble-outgoing .chat-bubble-content {
    background-color: #fef5e7;
    border: 1px solid #ffd7a3;
    color: #2d313b;
    border-radius: 16px 16px 8px 16px;
    text-align: right;
}

.chat-bubble-outgoing .chat-bubble-time {
    width: 100%;
    text-align: right;
}

.messages-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c34432;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.messages-divider::before,
.messages-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background-color: #c34432;
    opacity: 0.7;
}

.messages-divider span {
    white-space: nowrap;
}

.messages-composer {
    margin: 0;
    padding: 12px 14px 14px;
    border: 1px solid var(--border-soft);
    border-radius: 0;
    background-color: #f6f9fc;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 10px 18px rgba(12, 28, 44, 0.05);
    width: 100%;
}

.messages-page {
    padding-bottom: 0;
    --messages-bottom-offset: 56px;
    --messages-composer-safe: 120px;
}

.messages-page .main-content {
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.messages-page .messages-chat {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.messages-page .messages-chat-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 0 16px calc(12px + var(--messages-composer-safe) + var(--messages-bottom-offset));
    scroll-padding-bottom: calc(12px + var(--messages-composer-safe) + var(--messages-bottom-offset));
}

.messages-page .messages-composer {
    position: sticky;
    bottom: var(--messages-bottom-offset);
    z-index: 5;
}

@media (min-width: 901px) {
    .messages-page {
        --messages-bottom-offset: 0px;
        --messages-composer-safe: 100px;
    }
}

.messages-composer-input {
    display: block;
    background-color: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 8px 10px;
}

.messages-composer-input textarea {
    width: 100%;
    border: 0;
    outline: none;
    resize: none;
    font-size: 0.95rem;
    color: var(--text-main);
    background: transparent;
}

.messages-composer-input textarea::placeholder {
    color: #9aacbc;
}

.messages-composer-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.messages-composer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.messages-composer-tool {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background-color: #ffffff;
    color: #5d6b7a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.messages-composer-tool:hover {
    background-color: #edf3f9;
    color: #2f3b4c;
}

.messages-composer-tool:active {
    transform: translateY(1px);
}

.messages-composer-aa {
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1;
}

.messages-composer-send {
    min-width: 110px;
    height: 34px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b8df6 0%, #2b7bf3 100%);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: opacity 0.15s ease, transform 0.1s ease;
}

.messages-composer-send:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.messages-composer-send:not(:disabled):active {
    transform: translateY(1px);
}

.settings-pricing-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.settings-pricing-label {
    color: #6f7d8c;
    font-size: 0.84rem;
    font-weight: 600;
}

.settings-pricing-field {
    height: 42px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background-color: #f7f9fb;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.settings-pricing-field span {
    color: #6f7d8c;
    font-size: 0.92rem;
    font-weight: 700;
}

.settings-pricing-field input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 600;
    outline: none;
}

.settings-pricing-actions {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.settings-pricing-reset,
.settings-pricing-save {
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 14px;
}

.settings-pricing-reset {
    background-color: #e7edf2;
    color: #4e5e6d;
}

.settings-pricing-save {
    background-color: var(--accent);
    color: #ffffff;
}

.settings-pricing-feedback {
    margin-top: 10px;
    color: #1f8b5f;
    font-size: 0.82rem;
    font-weight: 600;
}

.settings-pricing-feedback.is-error {
    color: #cc3d4f;
}

.settings-text-field {
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background-color: #f7f9fb;
    padding: 0 12px;
    min-height: 42px;
    display: flex;
    align-items: center;
}

.settings-text-field input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 600;
    outline: none;
}

.settings-textarea {
    width: 100%;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background-color: #f7f9fb;
    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.42;
    padding: 10px 12px;
    resize: vertical;
    min-height: 88px;
}

.settings-toggle-grid {
    display: grid;
    gap: 10px;
    margin-top: 4px;
}

.settings-toggle-row {
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background-color: #f7f9fb;
    min-height: 46px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #4f5e6e;
    font-size: 0.9rem;
    font-weight: 600;
}

.settings-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex: 0 0 auto;
}

.settings-toggle-switch input {
    position: absolute;
    opacity: 0;
    inset: 0;
}

.settings-toggle-slider {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background-color: #d2dae3;
    transition: background-color 0.2s ease;
}

.settings-toggle-slider::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(18, 25, 34, 0.22);
    transition: transform 0.2s ease;
}

.settings-toggle-switch input:checked + .settings-toggle-slider {
    background-color: #00aff0;
}

.settings-toggle-switch input:checked + .settings-toggle-slider::after {
    transform: translateX(20px);
}

.settings-social-head {
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.settings-social-add {
    border: 1px solid #cfe3ef;
    border-radius: 999px;
    background-color: #eff8fc;
    color: #008dc8;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
}

.settings-social-list {
    display: grid;
    gap: 10px;
}

.settings-social-list.is-empty {
    gap: 0;
}

.settings-social-empty {
    border: 1px dashed var(--border-soft);
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    padding: 12px;
    display: grid;
    gap: 12px;
}

.settings-social-empty-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    background-color: #ffffff;
    color: #008dc8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.settings-social-empty-copy {
    display: grid;
    gap: 4px;
}

.settings-social-empty-title {
    margin: 0;
    color: var(--text-main);
    font-size: 0.92rem;
    font-weight: 700;
}

.settings-social-empty-text {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.4;
}

.settings-social-quick-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.settings-social-quick-btn {
    border: 1px solid #d9e8f2;
    border-radius: 999px;
    background-color: #ffffff;
    color: #446173;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.settings-social-quick-btn i {
    font-size: 0.95rem;
}

.settings-social-row {
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    background-color: #f7f9fb;
    padding: 10px;
    display: grid;
    gap: 10px;
}

.settings-social-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.settings-social-platform-wrap {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.settings-social-platform-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid var(--border-soft);
    background-color: #ffffff;
    color: #5c6e80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.settings-social-platform-select-wrap {
    min-width: 0;
    display: grid;
    gap: 4px;
    flex: 1 1 180px;
}

.settings-social-platform-text {
    display: none;
}

.settings-social-platform {
    width: 100%;
    min-height: 34px;
    border: 1px solid var(--border-soft);
    border-radius: 9px;
    background-color: #ffffff;
    color: var(--text-main);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 0 10px;
    outline: none;
}

.settings-social-row-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.settings-social-open,
.settings-social-remove {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-soft);
    border-radius: 9px;
    background-color: #ffffff;
    color: #6f7d8c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}

.settings-social-open:hover,
.settings-social-remove:hover {
    background-color: #eef3f8;
}

.settings-social-url-wrap {
    min-height: 40px;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background-color: #ffffff;
    color: #7b8797;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
}

.settings-social-url-wrap > i {
    font-size: 1rem;
    color: #7b8797;
    flex: 0 0 auto;
}

.settings-social-url {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-main);
    font-size: 0.86rem;
    font-weight: 600;
    padding: 0;
    outline: none;
}

.settings-page .app-bottom-nav {
    border-top-color: var(--border);
    background-color: var(--bg-main);
}

.settings-page .app-bottom-nav button {
    color: #8391a2;
}

.settings-page .app-bottom-nav .mini-avatar {
    border: 1px solid #c8d8e7;
    background-color: #dff2fa;
}

@media (max-width: 900px) {
    .settings-profile-compact {
        margin: 8px 12px 0;
        padding: 10px 12px;
        gap: 10px;
    }

    .settings-profile-avatar-wrap {
        width: 48px;
        height: 48px;
    }

    .settings-profile-name {
        font-size: 1.28rem;
    }

    .settings-profile-handle {
        font-size: 0.88rem;
    }

    .settings-summary-value {
        font-size: 1.72rem;
    }

    .settings-transaction-card {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "date status"
            "id amount";
        align-items: center;
        gap: 8px 12px;
        padding: 14px 14px;
    }

    .settings-transaction-date {
        grid-area: date;
        font-size: 0.98rem;
    }

    .settings-transaction-id {
        grid-area: id;
        font-size: 0.86rem;
    }

    .settings-transaction-amount {
        grid-area: amount;
        justify-self: end;
        font-size: 1.35rem;
    }

    .settings-history .transaction-status {
        grid-area: status;
        justify-self: end;
        height: 32px;
        font-size: 0.7rem;
        padding: 0 12px;
    }

    .settings-social-row {
        padding: 9px;
        gap: 8px;
    }

    .settings-social-row-top {
        align-items: flex-start;
        gap: 8px;
    }

    .settings-social-platform-wrap {
        flex: 1 1 auto;
    }

    .settings-social-platform-icon {
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .settings-social-platform {
        min-height: 32px;
        font-size: 0.82rem;
        padding: 0 9px;
    }

    .settings-social-open,
    .settings-social-remove {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    .settings-social-url-wrap {
        min-height: 38px;
        padding: 0 9px;
        gap: 7px;
    }

    .settings-social-url {
        min-height: 34px;
        font-size: 0.84rem;
    }

}

/* App theme aligned with home palette (all non-auth screens) */
body:not(.auth-body) {
    --bg-page: #050307;
    --bg-sidebar: #07040b;
    --bg-main: #0b0610;
    --bg-card: #120a18;
    --bg-card-soft: #100916;
    --border: rgba(255, 0, 85, 0.35);
    --border-soft: rgba(255, 0, 85, 0.25);
    --text-main: #f7f4fa;
    --text-muted: rgba(255, 255, 255, 0.78);
    --text-soft: rgba(255, 255, 255, 0.6);
    --accent: #ff0055;
    background:
        radial-gradient(circle at 12% -8%, rgba(255, 0, 85, 0.24), rgba(255, 0, 85, 0) 36%),
        radial-gradient(circle at 88% -14%, rgba(255, 0, 85, 0.14), rgba(255, 0, 85, 0) 38%),
        #050307;
}

body:not(.auth-body) .sidebar {
    background-color: transparent;
}

body:not(.auth-body) .main-content {
    background-color: transparent;
}

body:not(.auth-body) .main-content {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

body:not(.auth-body) .left-nav-link {
    color: rgba(255, 255, 255, 0.78);
}

body:not(.auth-body) .left-nav-link:hover,
body:not(.auth-body) .left-nav-link.is-active {
    background-color: rgba(255, 0, 85, 0.14);
    color: #ffffff;
}

body:not(.auth-body) .left-nav-link.is-active i,
body:not(.auth-body) .left-nav-link i {
    color: #ffffff;
}

body:not(.auth-body) .left-nav-link-disabled,
body:not(.auth-body) .left-nav-link.is-active.left-nav-link-disabled,
body:not(.auth-body) .left-nav-link.is-active.left-nav-link-disabled i {
    color: rgba(255, 255, 255, 0.35);
}

body:not(.auth-body) .left-sidebar-session {
    border-top-color: var(--border);
}

body:not(.auth-body) .left-new-post-btn {
    background: linear-gradient(90deg, #ff0055, #ff2b72);
    color: #ffffff;
}

body:not(.auth-body) .left-new-story-btn {
    border-color: rgba(255, 0, 85, 0.52);
    background-color: rgba(255, 0, 85, 0.08);
    color: #ffd6e8;
}

body:not(.auth-body) .profile-banner {
    background-color: #000000;
    box-shadow: 0 0 22px rgba(255, 0, 85, 0.22);
}

body:not(.auth-body) .profile-banner::after {
    background: linear-gradient(to right, rgba(255, 0, 85, 0.26) 0%, rgba(0, 0, 0, 0.32) 36%, rgba(0, 0, 0, 0.08) 70%, rgba(0, 0, 0, 0) 100%);
}

body:not(.auth-body) .profile-avatar {
    border: 3px solid rgba(255, 0, 85, 0.62);
    color: var(--accent);
}

body:not(.auth-body) .profile-name-row {
    color: #ffffff;
}

body:not(.auth-body) .profile-description {
    color: var(--text-soft);
}

body:not(.auth-body) .profile-model-stat {
    color: rgba(255, 255, 255, 0.8);
}

body:not(.auth-body) .profile-model-stat strong {
    color: #ffffff;
}

body:not(.auth-body) .profile-model-stat i {
    color: #ffffff;
}

body:not(.auth-body) .posts-section {
    background-color: transparent;
}

body:not(.auth-body) .home-brand-header {
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 59px;
    background: rgba(13, 7, 18, 0.42);
    border-bottom-color: rgba(255, 0, 85, 0.24);
}

body:not(.auth-body) .home-brand-notification-btn {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
}

body:not(.auth-body) .home-brand-notification-btn:hover {
    background: rgba(255, 0, 85, 0.14);
    border-color: rgba(255, 0, 85, 0.4);
}

body:not(.auth-body) .profile-posts-empty {
    background: linear-gradient(180deg, #140b1a 0%, #0e0814 100%);
    border-color: rgba(255, 0, 85, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

body:not(.auth-body) .profile-posts-empty-icon {
    background-color: #100916;
    border-color: rgba(255, 0, 85, 0.35);
    color: #ff0055;
}

body:not(.auth-body) .profile-posts-empty-title {
    color: #ffffff;
}

body:not(.auth-body) .profile-posts-empty-copy {
    color: rgba(255, 255, 255, 0.72);
}

body:not(.auth-body) .subscription-plans-dialog {
    background: linear-gradient(180deg, #140b1a 0%, #0e0814 100%);
    border-color: rgba(255, 0, 85, 0.35);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

body:not(.auth-body) .subscription-plans-title {
    color: #ffffff;
}

body:not(.auth-body) .subscription-plans-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

body:not(.auth-body) .subscription-plans-close-icon {
    background-color: #21162a;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 0, 85, 0.25);
}

body:not(.auth-body) .subscription-plan-card {
    background: linear-gradient(180deg, #18101f 0%, #120b18 100%);
    border-color: rgba(255, 0, 85, 0.28);
}

body:not(.auth-body) .subscription-plan-label {
    color: #ffffff;
}

body:not(.auth-body) .subscription-plan-benefits {
    color: rgba(255, 255, 255, 0.72);
}

body:not(.auth-body) .subscription-plan-subscribe {
    background: rgba(255, 255, 255, 0.02);
    color: #ff2b72;
    border-color: #ff2b72;
}

body:not(.auth-body) .subscription-plan-subscribe:hover {
    background: rgba(255, 0, 85, 0.12);
}

body:not(.auth-body) .subscription-plans-cancel {
    background: #21162a;
    border-color: rgba(255, 0, 85, 0.25);
    color: rgba(255, 255, 255, 0.82);
}

body:not(.auth-body) .post-menu {
    background: linear-gradient(180deg, #18101f 0%, #120b18 100%);
    border-color: rgba(255, 0, 85, 0.28);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

body:not(.auth-body) .post-menu-item {
    color: #ffffff;
}

body:not(.auth-body) .post-menu-item:hover {
    background-color: rgba(255, 0, 85, 0.12);
}

body:not(.auth-body) .post-menu-item-danger {
    color: #ff6f98;
}

body:not(.auth-body) .post-menu-btn:hover {
    background-color: rgba(255, 0, 85, 0.14);
}

body:not(.auth-body) .post-preview-dialog {
    background: linear-gradient(180deg, #18101f 0%, #120b18 100%);
    border-color: rgba(255, 0, 85, 0.28);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

body:not(.auth-body) .post-preview-title {
    color: #ffffff;
}

body:not(.auth-body) .post-preview-description {
    color: rgba(255, 255, 255, 0.78);
}

body:not(.auth-body) .post-edit-input {
    background-color: #100916;
    border-color: rgba(255, 0, 85, 0.28);
    color: #ffffff;
}

body:not(.auth-body) .post-edit-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

body:not(.auth-body) .post-preview-image {
    border-color: rgba(255, 0, 85, 0.22);
}

body:not(.auth-body) .post-preview-cancel {
    background-color: #21162a;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 0, 85, 0.2);
}

body:not(.auth-body) .post-preview-cancel:hover {
    background-color: rgba(255, 0, 85, 0.14);
    color: #ffffff;
}

body:not(.auth-body) .posts-view-btn {
    border-color: rgba(255, 0, 85, 0.28);
    background-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
}

body:not(.auth-body) .posts-view-btn.is-active {
    border-color: rgba(255, 0, 85, 0.52);
    background-color: rgba(255, 0, 85, 0.16);
    color: #ffd6e8;
}

body:not(.auth-body) .posts-view-count {
    background-color: rgba(255, 0, 85, 0.2);
    color: #ffd6e8;
}

body:not(.auth-body) .post-card {
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #140b1a 0%, #0e0814 100%);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

body:not(.auth-body) .post-author-row strong,
body:not(.auth-body) .post-user,
body:not(.auth-body) .post-time,
body:not(.auth-body) .post-description,
body:not(.auth-body) .post-cta-title,
body:not(.auth-body) .post-cta-copy {
    color: #ffffff;
}

body:not(.auth-body) .post-time,
body:not(.auth-body) .post-user {
    color: rgba(255, 255, 255, 0.72);
}

body:not(.auth-body) .post-action-btn {
    background-color: rgba(255, 0, 85, 0.12);
    color: #ffffff;
    border-color: rgba(255, 0, 85, 0.48);
}

body:not(.auth-body) .post-action-btn:hover {
    background-color: rgba(255, 0, 85, 0.2);
}

body:not(.auth-body) .app-bottom-nav {
    border-top-color: var(--border);
    background-color: #0a060f;
}

body:not(.auth-body) .app-bottom-nav button {
    color: rgba(255, 255, 255, 0.8);
}

body:not(.auth-body) .app-bottom-nav button.is-active {
    color: var(--accent);
}

body:not(.auth-body) .app-bottom-nav .mini-avatar {
    border: 1px solid rgba(255, 0, 85, 0.5);
    background-color: rgba(255, 0, 85, 0.16);
    color: #ff7faf;
}

body:not(.auth-body) .account-drawer-overlay {
    background-color: rgba(4, 3, 8, 0.68);
}

body:not(.auth-body) .account-drawer {
    background: linear-gradient(180deg, #110917 0%, #09050d 100%);
    border-left-color: rgba(255, 0, 85, 0.3);
    box-shadow: -18px 0 36px rgba(0, 0, 0, 0.42);
}

body:not(.auth-body) .account-drawer-header {
    border-bottom-color: rgba(255, 0, 85, 0.18);
}

body:not(.auth-body) .account-drawer-name {
    color: #ffffff;
}

body:not(.auth-body) .account-drawer-handle,
body:not(.auth-body) .account-drawer-availability {
    color: rgba(255, 255, 255, 0.68);
}

body:not(.auth-body) .account-drawer-availability-dot.is-offline {
    background-color: rgba(255, 255, 255, 0.34);
}

body:not(.auth-body) .account-drawer-close {
    color: rgba(255, 255, 255, 0.68);
}

body:not(.auth-body) .account-drawer-close:hover {
    background-color: rgba(255, 0, 85, 0.12);
    color: #ffffff;
}

body:not(.auth-body) .account-drawer-item {
    color: rgba(255, 255, 255, 0.86);
}

body:not(.auth-body) .account-drawer-item:hover {
    background-color: rgba(255, 0, 85, 0.12);
}

body:not(.auth-body) .account-drawer-item.is-active {
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

body:not(.auth-body) .account-drawer-item.is-active i {
    color: #ffffff;
}

body:not(.auth-body) .account-drawer-item:disabled {
    color: rgba(255, 255, 255, 0.34);
}

body:not(.auth-body) .account-drawer-item:disabled:hover {
    background-color: transparent;
}

body:not(.auth-body) .account-drawer-item-danger {
    border-top-color: rgba(255, 0, 85, 0.22);
    color: rgba(255, 255, 255, 0.9);
}

/* Contrast fixes for config/notification/signatures/monetization screens */
body.config-pricing-page .settings-pricing-card,
body.config-pricing-page .monetization-history-card,
body.config-pricing-page .monetization-stat-card,
body.config-pricing-page .settings-transaction-card,
body.config-pricing-page .monetization-history-empty,
body.config-pricing-page .notification-item,
body.config-pricing-page .signature-hero-card {
    background: linear-gradient(180deg, #140b1a 0%, #0e0814 100%);
    border-color: rgba(255, 0, 85, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

body.config-pricing-page .settings-pricing-title,
body.config-pricing-page .settings-summary-value,
body.config-pricing-page .settings-transaction-amount,
body.config-pricing-page .monetization-history-empty-title,
body.config-pricing-page .notification-item-title,
body.config-pricing-page .notification-item-text,
body.config-pricing-page .signature-hero-title,
body.config-pricing-page .signature-hero-username,
body.config-pricing-page .signature-hero-note {
    color: #ffffff;
}

body.config-pricing-page .settings-pricing-copy,
body.config-pricing-page .settings-pricing-label,
body.config-pricing-page .settings-transaction-date,
body.config-pricing-page .settings-transaction-id,
body.config-pricing-page .settings-history-empty,
body.config-pricing-page .monetization-stat-label,
body.config-pricing-page .monetization-history-empty-copy,
body.config-pricing-page .notification-item-time {
    color: rgba(255, 255, 255, 0.72);
}

body.config-pricing-page .settings-pricing-field,
body.config-pricing-page .settings-text-field,
body.config-pricing-page .settings-textarea,
body.config-pricing-page .settings-toggle-row,
body.config-pricing-page .settings-social-platform,
body.config-pricing-page .settings-social-url,
body.config-pricing-page .settings-social-remove {
    background-color: #1a1222;
    border-color: rgba(255, 0, 85, 0.3);
    color: #f7f4fa;
}

body.config-pricing-page .settings-pricing-field input,
body.config-pricing-page .settings-text-field input,
body.config-pricing-page .settings-textarea,
body.config-pricing-page .settings-social-platform,
body.config-pricing-page .settings-social-url {
    color: #ffffff;
}

body.config-pricing-page .settings-pricing-field input::placeholder,
body.config-pricing-page .settings-text-field input::placeholder,
body.config-pricing-page .settings-textarea::placeholder,
body.config-pricing-page .settings-social-url::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

body.config-pricing-page .settings-social-row,
body.config-pricing-page .settings-social-empty {
    background: linear-gradient(180deg, #140b1a 0%, #100916 100%);
    border-color: rgba(255, 0, 85, 0.28);
}

body.config-pricing-page .settings-social-empty-title {
    color: #ffffff;
}

body.config-pricing-page .settings-social-empty-text,
body.config-pricing-page .settings-social-platform-text {
    color: rgba(255, 255, 255, 0.68);
}

body.config-pricing-page .settings-social-empty-icon,
body.config-pricing-page .settings-social-platform-icon,
body.config-pricing-page .settings-social-url-wrap,
body.config-pricing-page .settings-social-open {
    background-color: #1a1222;
    border-color: rgba(255, 0, 85, 0.3);
    color: #f7f4fa;
}

body.config-pricing-page .settings-social-url-wrap > i {
    color: rgba(255, 255, 255, 0.68);
}

body.config-pricing-page .settings-social-url {
    background: transparent;
    border: 0;
}

body.config-pricing-page .settings-social-open:hover,
body.config-pricing-page .settings-social-remove:hover {
    background: rgba(255, 0, 85, 0.18);
    color: #ffffff;
}

body.config-pricing-page .settings-social-quick-btn {
    background-color: #1a1222;
    border-color: rgba(255, 0, 85, 0.3);
    color: rgba(255, 255, 255, 0.88);
}

body.config-pricing-page .settings-pricing-reset {
    background-color: #e8edf4;
    color: #30465e;
}

body.config-pricing-page .settings-pricing-save {
    background: linear-gradient(90deg, #ff0055, #ff2b72);
    color: #ffffff;
}

body.config-pricing-page .monetization-history-tabs {
    border-color: rgba(255, 0, 85, 0.35);
    background-color: #120b18;
}

body.config-pricing-page .monetization-history-tab {
    color: rgba(255, 255, 255, 0.82);
}

body.config-pricing-page .monetization-history-tab:hover {
    background-color: rgba(255, 0, 85, 0.14);
}

body.config-pricing-page .monetization-history-tab.is-active {
    background: linear-gradient(90deg, #ff0055, #ff2b72);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(255, 0, 85, 0.34);
}

body.config-pricing-page .notification-item-icon {
    background-color: #23172d;
    border-color: rgba(255, 0, 85, 0.28);
}

body.config-pricing-page .notification-item-type {
    background-color: rgba(255, 0, 85, 0.16);
    border-color: rgba(255, 0, 85, 0.42);
    color: #ffc6da;
}

body.config-pricing-page .notification-item-remove {
    background: #21162a;
    color: rgba(255, 255, 255, 0.75);
}

body.config-pricing-page .notification-item-remove:hover {
    background: rgba(255, 0, 85, 0.22);
    color: #ffffff;
}

/* Keep story avatar "dot/ring" in the old color style */
body:not(.auth-body) .profile-avatar {
    border-color: #ffffff;
    color: #00aff0;
}
