﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #10070c;
    --bg-panel: rgba(31, 12, 23, 0.82);
    --bg-surface: rgba(49, 16, 35, 0.78);
    --bg-surface-strong: rgba(63, 18, 43, 0.9);
    --text-main: #fff4fa;
    --text-soft: #e8c8da;
    --text-muted: #c6a9b8;
    --accent: #ff2f8f;
    --accent-2: #cf1258;
    --accent-3: #8c0e3d;
    --line: rgba(255, 156, 205, 0.34);
    --line-soft: rgba(255, 156, 205, 0.18);
    --shadow-xl: 0 26px 66px rgba(0, 0, 0, 0.48);
    --shadow-pink: 0 0 46px rgba(255, 47, 146, 0.22);
    --danger: #ff709b;
    --success: #62e8b4;
    --dur-fast: 0.26s;
    --dur-base: 0.36s;
    --dur-slow: 0.52s;
    --ease-premium: cubic-bezier(0.2, 0.8, 0.2, 1);
    --topbar-height: 98px;
    --topbar-height-mobile: 84px;
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 22px;
    --card-gradient:
        radial-gradient(circle at 14% 12%, rgba(255, 160, 214, 0.14), transparent 42%),
        linear-gradient(155deg, rgba(59, 14, 34, 0.94), rgba(33, 10, 22, 0.96));
}

html,
body {
    min-height: 100%;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.45;
}

.hidden {
    display: none !important;
}

.site-body,
.auth-page-body {
    position: relative;
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 95, 162, 0.33), transparent 36%),
        radial-gradient(circle at 84% 88%, rgba(161, 8, 64, 0.44), transparent 44%),
        linear-gradient(135deg, #17070f 0%, #250915 32%, #390a1d 66%, #57112a 100%);
    background-size: 140% 140%, 140% 140%, 140% 140%;
    animation: background-flow 22s ease-in-out infinite alternate;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.22;
    background:
        radial-gradient(ellipse at 20% 22%, rgba(255, 255, 255, 0.1), transparent 34%),
        radial-gradient(ellipse at 74% 16%, rgba(255, 255, 255, 0.08), transparent 32%),
        radial-gradient(ellipse at 40% 74%, rgba(255, 255, 255, 0.06), transparent 30%),
        radial-gradient(ellipse at 82% 72%, rgba(255, 255, 255, 0.08), transparent 34%);
    animation: glare-shift 18s ease-in-out infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.2;
    mix-blend-mode: screen;
    background:
        radial-gradient(circle at 22% 78%, rgba(255, 115, 187, 0.16), transparent 46%),
        radial-gradient(circle at 74% 22%, rgba(255, 161, 212, 0.14), transparent 48%);
    animation: veil-drift 20s ease-in-out infinite;
}

.page-fade-enter {
    opacity: 0;
}

.page-fade-enter.page-fade-enter-active {
    opacity: 1;
    transition: opacity var(--dur-base) var(--ease-premium);
}

.page-fade-leave {
    opacity: 0;
    transition: opacity 0.28s var(--ease-premium);
}

.ripple-effect {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(255, 78, 167, 0.22) 65%, transparent 100%);
    transform: scale(0);
    animation: ripple-grow 0.5s ease-out forwards;
}

.orb {
    position: fixed;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(72px);
    z-index: 0;
    opacity: 0.45;
    animation: orb-float 14s ease-in-out infinite;
}

.orb-a {
    width: 300px;
    height: 300px;
    background: #ff2e7a;
    left: -90px;
    top: -60px;
    animation-delay: 0s;
}

.orb-b {
    width: 280px;
    height: 280px;
    background: #8b0d3e;
    right: -90px;
    bottom: 8%;
    animation-delay: -4s;
}

.orb-c {
    width: 190px;
    height: 190px;
    background: #ff6ba8;
    right: 28%;
    top: 18%;
    animation-delay: -8s;
}

.topbar {
    position: relative;
    z-index: 40;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 24px;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 126, 195, 0.2), transparent 38%),
        linear-gradient(180deg, rgba(42, 11, 26, 0.82), rgba(26, 8, 17, 0.86));
    border-bottom: 1px solid rgba(255, 167, 212, 0.22);
    backdrop-filter: blur(14px);
    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.34),
        0 1px 0 rgba(255, 200, 228, 0.08) inset;
}

.topbar::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 152, 206, 0.62), transparent);
    opacity: 0.65;
    animation: line-pulse 4.8s ease-in-out infinite;
    pointer-events: none;
}

.brand {
    position: relative;
    font-size: 1.32rem;
    font-weight: 800;
    letter-spacing: 0.32px;
    background: linear-gradient(120deg, #fff5fb, #ffd4e9 38%, #ff9aca 72%, #ffe8f5);
    background-size: 220% 220%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 18px rgba(255, 47, 146, 0.2);
    animation: text-shimmer 7s ease-in-out infinite;
}

.brand-link {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.brand-logo-link {
    min-width: 0;
    width: auto;
    height: 80px;
    aspect-ratio: 947 / 752;
    flex: 0 0 auto;
    padding: 0;
    overflow: visible;
    border-radius: 0;
    margin-left: 6px;
}

.brand-logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: none;
    filter:
        drop-shadow(0 0 18px rgba(255, 63, 156, 0.42))
        drop-shadow(0 8px 16px rgba(20, 7, 14, 0.44));
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 16px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.topbar-nav::-webkit-scrollbar {
    display: none;
}

.topbar-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(255, 184, 224, 0);
    border-radius: 999px;
    background: transparent;
    color: #fff3fa;
    text-decoration: none;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.06px;
    padding: 8px 12px;
    white-space: nowrap;
    line-height: 1.1;
    cursor: pointer;
    transition: transform var(--dur-base) var(--ease-premium), background var(--dur-base) var(--ease-premium), border-color var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium), color var(--dur-base) var(--ease-premium), opacity var(--dur-base) var(--ease-premium);
}

.topbar-tab:hover,
.topbar-tab:focus-visible,
.topbar-tab:active {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(255, 182, 226, 0.2), rgba(138, 29, 79, 0.22));
    border-color: rgba(255, 194, 228, 0.38);
    box-shadow: 0 6px 16px rgba(255, 106, 182, 0.16);
}

.topbar-tab.active {
    color: #fff8fc;
    border-color: rgba(255, 194, 228, 0.38);
    background: linear-gradient(135deg, rgba(255, 182, 226, 0.2), rgba(138, 29, 79, 0.22));
    box-shadow: none;
}

.topbar-tab.is-static {
    opacity: 0.96;
}

.topbar-actions {
    position: relative;
    z-index: 41;
    display: flex;
    align-items: center;
    gap: 11px;
    margin-left: auto;
}

.topbar-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 195, 228, 0.44);
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 238, 247, 0.28), transparent 58%),
        linear-gradient(135deg, rgba(255, 142, 204, 0.26), rgba(109, 25, 71, 0.3)),
        rgba(23, 8, 17, 0.86);
    color: #ffe8f5;
    text-decoration: none;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 235, 247, 0.24);
    transition: transform var(--dur-fast) var(--ease-premium), border-color var(--dur-fast) var(--ease-premium), box-shadow var(--dur-fast) var(--ease-premium), color var(--dur-fast) var(--ease-premium), background var(--dur-fast) var(--ease-premium);
}

.topbar-actions .topbar-contact-link {
    order: 99;
    margin-left: auto;
}

.topbar-contact-link:hover,
.topbar-contact-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 208, 235, 0.72);
    color: #fff7fc;
    box-shadow:
        0 12px 22px rgba(255, 99, 176, 0.18),
        0 0 0 1px rgba(255, 170, 218, 0.28) inset;
}

.topbar-contact-link:active {
    transform: translateY(0);
}

.topbar-contact-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.user-menu .topbar-contact-link {
    order: 3;
    margin-left: 8px;
    margin-right: 0;
}

.topbar-contact-link.is-active {
    border-color: rgba(255, 210, 236, 0.76);
    box-shadow:
        0 12px 24px rgba(255, 90, 176, 0.24),
        0 0 0 1px rgba(255, 170, 218, 0.36) inset;
    pointer-events: none;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255, 186, 224, 0.34);
    background:
        linear-gradient(140deg, rgba(255, 154, 207, 0.22), rgba(128, 34, 80, 0.22)),
        linear-gradient(180deg, rgba(38, 12, 23, 0.86), rgba(26, 9, 17, 0.9));
    box-shadow:
        0 6px 14px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 231, 244, 0.2);
}

.lang-switch-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid transparent;
    min-height: 28px;
    min-width: 38px;
    padding: 0 10px;
    border-radius: 999px;
    background: transparent;
    color: #f3dbea;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.24px;
    cursor: pointer;
    transition: transform var(--dur-fast) var(--ease-premium), border-color var(--dur-fast) var(--ease-premium), background var(--dur-fast) var(--ease-premium), color var(--dur-fast) var(--ease-premium), box-shadow var(--dur-fast) var(--ease-premium);
}

.lang-switch-btn:hover,
.lang-switch-btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 200, 229, 0.38);
    background: rgba(255, 186, 224, 0.16);
    color: #fff7fc;
}

.lang-switch-btn.is-active {
    border-color: rgba(255, 208, 234, 0.62);
    background:
        linear-gradient(135deg, rgba(255, 197, 228, 0.36), rgba(218, 65, 142, 0.34)),
        rgba(57, 17, 35, 0.9);
    color: #ffffff;
    box-shadow:
        inset 0 1px 0 rgba(255, 236, 246, 0.24),
        0 8px 14px rgba(0, 0, 0, 0.28);
}

.auth-lang-switch-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.user-menu .lang-switch {
    margin-right: 8px;
}

.user-menu {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    isolation: isolate;
    margin-left: auto;
}

.profile-trigger {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 7px 13px 7px 7px;
    border: 1px solid rgba(255, 218, 237, 0.62);
    border-radius: 18px;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 236, 246, 0.34), transparent 48%),
        linear-gradient(132deg, rgba(255, 74, 171, 0.98) 0%, rgba(218, 27, 111, 0.98) 52%, rgba(134, 14, 61, 0.98) 100%);
    color: var(--text-main);
    cursor: pointer;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 47, 146, 0.32);
    transition: transform var(--dur-base) var(--ease-premium), border-color var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium), filter var(--dur-base) var(--ease-premium);
    background-size: 220% 220%;
    animation: profile-gradient 7.4s ease-in-out infinite;
}

.profile-trigger::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(118deg, transparent 32%, rgba(255, 230, 244, 0.34) 50%, transparent 66%);
    opacity: 0.42;
    mix-blend-mode: screen;
    transform: translateX(-135%);
    animation: profile-shine 2.8s ease-in-out infinite;
    pointer-events: none;
}

.profile-trigger > * {
    position: relative;
    z-index: 1;
}

.profile-trigger:hover {
    border-color: rgba(255, 227, 242, 0.98);
    box-shadow:
        0 18px 40px rgba(255, 47, 146, 0.42),
        0 0 44px rgba(255, 98, 176, 0.4);
    transform: translateY(-2px) scale(1.01);
    filter: saturate(1.14);
}

.profile-trigger-arrow {
    color: #ffe8f4;
    font-size: 0.72rem;
    transition: transform 0.34s ease;
}

.profile-trigger[aria-expanded="true"] .profile-trigger-arrow {
    transform: rotate(180deg);
}

.top-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid rgba(255, 240, 248, 0.92);
    object-fit: cover;
    background: #47142d;
    box-shadow:
        0 0 0 2px rgba(255, 77, 165, 0.28),
        0 0 22px rgba(255, 47, 146, 0.32);
}

.user-chip {
    font-size: 0.96rem;
    font-weight: 800;
    color: #fff6fb;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 1px 10px rgba(109, 9, 54, 0.52);
}

.profile-dropdown {
    position: absolute;
    overflow: hidden;
    top: calc(100% + 11px);
    right: 0;
    width: 304px;
    padding: 12px;
    border: 1px solid rgba(255, 180, 220, 0.5);
    border-radius: 21px;
    background:
        radial-gradient(circle at 20% 2%, rgba(255, 158, 212, 0.2), transparent 40%),
        linear-gradient(180deg, rgba(45, 12, 30, 0.96), rgba(25, 7, 18, 0.98));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.54),
        0 0 0 1px rgba(255, 156, 205, 0.16) inset,
        0 0 44px rgba(255, 47, 146, 0.2);
    backdrop-filter: blur(14px);
    z-index: 55;
    animation: dropdown-slide-in 0.4s var(--ease-premium);
}

.profile-dropdown::before {
    content: "";
    position: absolute;
    inset: -40% -20% auto;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 109, 186, 0.25), transparent 72%);
    animation: dropdown-bloom 5.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.profile-dropdown > * {
    position: relative;
    z-index: 1;
}

.profile-dropdown-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 178, 220, 0.26);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 110, 181, 0.16), rgba(98, 14, 51, 0.22));
    box-shadow: inset 0 0 22px rgba(255, 145, 205, 0.12);
}

.dropdown-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(255, 230, 244, 0.84);
    object-fit: cover;
    background: #521631;
    box-shadow: 0 0 20px rgba(255, 78, 166, 0.3);
}

.profile-dropdown-meta {
    min-width: 0;
}

.dropdown-nickname {
    font-size: 0.96rem;
    font-weight: 800;
    color: #fff4fb;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-email {
    margin-top: 2px;
    color: #e5bfd2;
    font-size: 0.78rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
    border-radius: 13px;
    background: transparent;
    color: #ffeaf5;
    padding: 12px 12px 12px 40px;
    text-decoration: none;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--dur-base) var(--ease-premium), transform var(--dur-base) var(--ease-premium), color var(--dur-base) var(--ease-premium);
}

.dropdown-item::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.96rem;
    opacity: 0.92;
}

.dropdown-item[data-action="view-profile"]::before {
    content: "\2606";
}

.dropdown-item[data-action="edit-profile"]::before {
    content: "\270E";
}

.dropdown-item[data-action="agency-logo"]::before {
    content: "\1F5BC";
}

.dropdown-item[data-action="manage-escorts"]::before {
    content: "\1F465";
}

.dropdown-item[data-action="change-password"]::before {
    content: "\1F511";
}

.dropdown-item[data-action="classified-ads"]::before {
    content: "\1F4CC";
}

.dropdown-item[data-action="verified-status"]::before {
    content: "\2713";
}

.dropdown-item[data-action="buy-premium"]::before {
    content: "\2605";
}

.dropdown-item[data-action="admin-panel"]::before {
    content: "\2699";
}

.dropdown-item[data-action="logout"]::before {
    content: "\21A9";
}

.dropdown-item[data-action="delete-account"]::before {
    content: "\1F5D1";
}

.dropdown-item:hover {
    background: linear-gradient(120deg, rgba(255, 163, 211, 0.18), rgba(106, 18, 56, 0.32));
    transform: translateX(5px);
}

.dropdown-item-premium {
    border: 1px solid rgba(255, 214, 168, 0.46);
    background: linear-gradient(125deg, rgba(255, 179, 60, 0.22), rgba(154, 90, 15, 0.22));
    color: #fff1d7;
}

.dropdown-item-premium:hover {
    background: linear-gradient(125deg, rgba(255, 193, 82, 0.3), rgba(171, 99, 17, 0.3));
}

.dropdown-item:focus-visible,
.country-btn:focus-visible,
.profile-trigger:focus-visible,
.tabs button:focus-visible,
.icon-btn:focus-visible,
.btn:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 104, 180, 0.34),
        0 0 0 1px rgba(255, 218, 237, 0.7);
}

.dropdown-divider {
    margin: 8px 2px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 178, 220, 0.38), transparent);
}

.dropdown-item-danger {
    color: #ffd1e3;
}

.dropdown-item-danger:hover {
    background: linear-gradient(120deg, rgba(255, 125, 178, 0.24), rgba(112, 14, 52, 0.36));
}

.btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.93rem;
    transition:
        transform var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        background var(--dur-base) var(--ease-premium),
        border-color var(--dur-base) var(--ease-premium);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 38%, transparent 62%, rgba(255, 255, 255, 0.2));
    opacity: 0;
    transform: translateX(-35%);
    transition: opacity var(--dur-base) ease, transform 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
}

.btn:hover::before {
    opacity: 1;
    transform: translateX(8%);
}

.btn-primary {
    border-color: rgba(255, 191, 225, 0.4);
    background: linear-gradient(135deg, #ff3c99, #d11767 54%, #941047);
    box-shadow:
        0 12px 26px rgba(255, 47, 146, 0.38),
        0 0 28px rgba(255, 47, 146, 0.18);
}

.btn-primary:hover {
    box-shadow:
        0 18px 36px rgba(255, 47, 146, 0.48),
        0 0 36px rgba(255, 84, 165, 0.3);
}

.btn-ghost {
    border-color: rgba(255, 171, 216, 0.28);
    background: linear-gradient(155deg, rgba(101, 31, 62, 0.74), rgba(60, 19, 38, 0.78));
    color: #ffe9f5;
}

.btn-ghost:hover {
    border-color: rgba(255, 201, 230, 0.58);
    box-shadow: 0 14px 30px rgba(45, 12, 29, 0.5);
}

.main-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px 1fr;
    min-height: calc(100vh - var(--topbar-height));
    align-items: start;
}

.countries-panel {
    position: sticky;
    top: var(--topbar-height);
    align-self: start;
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 140, 205, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(33, 10, 22, 0.78), rgba(24, 8, 17, 0.84));
    border-right: 1px solid rgba(255, 172, 214, 0.16);
    padding: 24px 18px 24px 20px;
    height: calc(100vh - var(--topbar-height));
    max-height: calc(100vh - var(--topbar-height));
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 146, 202, 0.76) rgba(46, 12, 30, 0.78);
    backdrop-filter: blur(12px);
    box-shadow: 16px 0 36px rgba(0, 0, 0, 0.18);
}

.countries-panel::-webkit-scrollbar {
    width: 10px;
}

.countries-panel::-webkit-scrollbar-track {
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(58, 16, 37, 0.88), rgba(36, 10, 24, 0.92));
    border: 1px solid rgba(255, 165, 210, 0.18);
}

.countries-panel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 2px solid rgba(42, 12, 28, 0.92);
    background:
        linear-gradient(180deg, rgba(255, 166, 214, 0.9), rgba(206, 60, 129, 0.92));
    box-shadow: 0 0 10px rgba(255, 88, 173, 0.34);
}

.countries-panel::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg, rgba(255, 190, 225, 0.94), rgba(228, 84, 151, 0.95));
}

.countries-panel::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.countries-panel::-webkit-scrollbar-corner {
    background: transparent;
}

.countries-panel::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 172, 214, 0.08), rgba(255, 172, 214, 0.46), rgba(255, 172, 214, 0.08));
    pointer-events: none;
}

.sidebar-animated {
    opacity: 0;
    transform: translateX(-26px);
    transition: opacity var(--dur-slow) var(--ease-premium), transform var(--dur-slow) var(--ease-premium);
}

.sidebar-animated.sidebar-ready {
    opacity: 1;
    transform: translateX(0);
}

.countries-panel h2 {
    margin-bottom: 14px;
    color: #ffd8ea;
    font-size: 1.16rem;
}

.sidebar-reset-btn {
    width: 100%;
    margin-bottom: 12px;
}

.sidebar-reset-btn.active {
    border-color: rgba(255, 214, 236, 0.7);
    box-shadow: 0 0 0 2px rgba(255, 122, 190, 0.2);
}

.countries-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.country-card {
    border: 1px solid rgba(255, 165, 210, 0.18);
    background:
        radial-gradient(circle at 88% -10%, rgba(255, 165, 214, 0.14), transparent 45%),
        linear-gradient(180deg, rgba(58, 14, 36, 0.92), rgba(39, 10, 24, 0.94));
    border-radius: var(--radius-sm);
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    animation: country-in 0.54s ease forwards;
    transition:
        transform var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        border-color var(--dur-base) var(--ease-premium);
}

.country-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 190, 224, 0.48);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.3),
        0 0 24px rgba(255, 90, 176, 0.2);
}

.country-btn {
    position: relative;
    width: 100%;
    border: none;
    color: #f6ecf4;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 172, 220, 0.2), transparent 38%),
        linear-gradient(180deg, #60203f, #47162f);
    text-align: left;
    padding: 12px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--dur-base) ease, letter-spacing var(--dur-base) ease, color var(--dur-base) ease;
}

.country-btn::after {
    content: "+";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: transform 0.34s ease;
}

.country-btn.open::after {
    transform: translateY(-50%) rotate(45deg);
}

.country-btn:hover {
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 202, 232, 0.2), transparent 42%),
        linear-gradient(180deg, #7a2850, #5c1b3a);
    letter-spacing: 0.2px;
    color: #fff5fc;
}

.country-btn.active {
    background:
        radial-gradient(circle at 76% 14%, rgba(255, 218, 237, 0.2), transparent 46%),
        linear-gradient(180deg, #8b2f5c, #672044);
    color: #fff6fb;
}

.cities {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(44, 13, 29, 0.96), rgba(34, 10, 23, 0.98));
    transition: max-height var(--dur-slow) var(--ease-premium), opacity var(--dur-base) ease, transform var(--dur-base) ease;
}

.cities.open {
    max-height: 460px;
    opacity: 1;
    transform: translateY(0);
}

.city-item {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    padding: 9px 14px;
    border-top: 1px dashed var(--line-soft);
    color: var(--text-soft);
    font-size: 0.94rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.cities.open .city-item {
    opacity: 1;
    transform: translateX(0);
}

.city-item:hover {
    background: rgba(255, 165, 214, 0.14);
    color: #ffeef8;
}

.city-item.active {
    background: rgba(255, 142, 202, 0.2);
    color: #fff3fb;
}

.main-content {
    position: relative;
    padding: 42px 38px;
    animation: section-fade-in 0.7s var(--ease-premium) both;
}

.main-content h1 {
    margin-bottom: 12px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.06;
    text-shadow:
        0 0 26px rgba(255, 47, 146, 0.24),
        0 4px 18px rgba(16, 5, 11, 0.62);
}

.main-content p {
    color: var(--text-soft);
    margin-bottom: 12px;
    max-width: 760px;
    font-size: 1.03rem;
}

.contact-page {
    max-width: 860px;
    margin: 0 auto;
    padding-top: 48px;
    padding-bottom: 56px;
}

.contact-hero {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 26px;
}

.contact-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 22px;
    border: 1px solid rgba(255, 198, 229, 0.46);
    background:
        radial-gradient(circle at 32% 26%, rgba(255, 239, 248, 0.26), transparent 56%),
        linear-gradient(145deg, rgba(255, 148, 207, 0.26), rgba(125, 34, 83, 0.28)),
        rgba(24, 9, 18, 0.86);
    box-shadow:
        0 16px 28px rgba(0, 0, 0, 0.38),
        0 0 24px rgba(255, 94, 176, 0.2);
}

.contact-hero-icon svg {
    width: 34px;
    height: 34px;
    stroke: #ffd3eb;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-page .contact-hero h1 {
    margin-bottom: 0;
}

.contact-hero-lead {
    margin: 0;
    max-width: 620px;
    color: var(--text-muted);
    font-size: 1.04rem;
}

.contact-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 184, 223, 0.24);
    background:
        radial-gradient(circle at 14% 8%, rgba(255, 141, 204, 0.14), transparent 42%),
        radial-gradient(circle at 88% 100%, rgba(116, 23, 72, 0.18), transparent 44%),
        linear-gradient(165deg, rgba(38, 12, 24, 0.86), rgba(22, 9, 18, 0.9));
    padding: 24px;
    box-shadow:
        0 22px 38px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(255, 86, 171, 0.1),
        inset 0 1px 0 rgba(255, 228, 243, 0.12);
}

.contact-card-title {
    margin: 0 0 16px;
    font-size: 1.28rem;
    color: #fff2fb;
}

.contact-form {
    display: grid;
    gap: 13px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field span {
    color: #ffe9f6;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 186, 225, 0.22);
    background:
        linear-gradient(145deg, rgba(33, 11, 22, 0.9), rgba(20, 8, 16, 0.93));
    color: #fff4fb;
    padding: 13px 14px;
    font: inherit;
    outline: none;
    transition: border-color var(--dur-fast) var(--ease-premium), box-shadow var(--dur-fast) var(--ease-premium), background var(--dur-fast) var(--ease-premium);
}

.contact-field textarea {
    resize: vertical;
    min-height: 170px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255, 224, 242, 0.58);
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: rgba(255, 210, 235, 0.72);
    box-shadow:
        0 0 0 3px rgba(255, 101, 182, 0.2),
        0 10px 22px rgba(0, 0, 0, 0.26);
    background:
        linear-gradient(145deg, rgba(44, 14, 29, 0.92), rgba(26, 10, 20, 0.95));
}

.contact-submit-btn {
    margin-top: 4px;
    justify-content: center;
}

.ads-section {
    max-width: none;
}

.ads-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 18px;
    align-items: start;
}

.ads-main-column {
    min-width: 0;
}

.ads-banner-column {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 14px;
}

.ad-banner-card {
    min-height: 250px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 178, 220, 0.24);
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 170, 220, 0.16), transparent 40%),
        linear-gradient(160deg, rgba(62, 18, 39, 0.88), rgba(31, 10, 22, 0.94));
    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.36),
        0 0 24px rgba(255, 95, 176, 0.14);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 14px;
}

.ad-banner-title {
    margin: 0;
    font-size: 1.06rem;
    font-weight: 800;
    color: #ffe8f4;
}

.ad-banner-size {
    margin: 4px 0 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: #cdaec2;
}

.ads-section-head {
    margin-bottom: 18px;
}

.ads-section-head h1 {
    margin-bottom: 8px;
    font-size: clamp(1.72rem, 3.4vw, 2.5rem);
    line-height: 1.08;
    text-shadow:
        0 0 24px rgba(255, 60, 156, 0.22),
        0 4px 16px rgba(18, 6, 13, 0.56);
}

.ads-section-head p {
    margin: 0;
    color: #e3c8d8;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.ads-empty {
    margin-top: 14px;
    padding: 18px;
    border: 1px dashed rgba(255, 178, 221, 0.35);
    border-radius: var(--radius-md);
    color: #f0d7e7;
    background: linear-gradient(145deg, rgba(66, 20, 43, 0.66), rgba(34, 10, 23, 0.76));
}

.ads-media-notice {
    margin-top: 0;
    margin-bottom: 14px;
    border-style: solid;
    border-color: rgba(255, 197, 129, 0.48);
    background: linear-gradient(145deg, rgba(74, 40, 18, 0.68), rgba(41, 21, 9, 0.78));
    color: #ffe8ca;
}

.ads-search-panel {
    margin-bottom: 14px;
    padding: 14px;
    border: 1px solid rgba(255, 178, 221, 0.3);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(58, 18, 39, 0.84), rgba(31, 11, 22, 0.9));
    box-shadow:
        0 16px 28px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ads-search-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.ads-search-field {
    display: grid;
    gap: 6px;
}

.ads-search-field--wide {
    grid-column: span 2;
}

.ads-search-field > span {
    color: #f2d9e7;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18px;
}

.ads-search-field input,
.ads-search-field select,
.ads-search-field .smart-select {
    width: 100%;
    max-width: 100%;
}

.ads-search-field input[type="search"] {
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 173, 216, 0.24);
    background: linear-gradient(145deg, rgba(43, 15, 30, 0.94), rgba(28, 11, 21, 0.96));
    color: #fff2fa;
    padding: 9px 12px;
}

.ads-search-field input[type="search"]::placeholder {
    color: rgba(244, 205, 225, 0.66);
}

.ads-search-actions {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.ads-search-summary {
    margin: 0;
    color: #efdae6;
    font-size: 0.84rem;
    font-weight: 700;
}

@media (max-width: 1380px) {
    .ads-search-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ads-search-field--wide {
        grid-column: span 2;
    }
}

@media (max-width: 980px) {
    .ads-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 620px) {
    .ads-search-panel {
        padding: 10px;
    }

    .ads-search-grid {
        grid-template-columns: 1fr;
    }

    .ads-search-field--wide {
        grid-column: auto;
    }
}

.ad-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 172, 214, 0.24);
    background: var(--card-gradient);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.36),
        0 0 26px rgba(255, 78, 166, 0.12);
    opacity: 0;
    transform: translateY(10px);
    animation: card-in 0.56s var(--ease-premium) forwards;
    transition:
        transform var(--dur-base) var(--ease-premium),
        border-color var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium);
    cursor: pointer;
}

.ad-card-premium {
    border-color: rgba(255, 208, 132, 0.52);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.36),
        0 0 30px rgba(255, 184, 66, 0.22);
}

.ad-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 208, 233, 0.56);
    box-shadow:
        0 26px 46px rgba(0, 0, 0, 0.44),
        0 0 36px rgba(255, 91, 176, 0.26);
}

.ad-card:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 112, 186, 0.28),
        0 24px 40px rgba(0, 0, 0, 0.42);
}

.ad-cover-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 182, 223, 0.2);
}

.ad-badge-premium {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 235, 194, 0.72);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 238, 205, 0.28), transparent 56%),
        linear-gradient(135deg, #ffce62, #f0a021 52%, #c17a12 100%);
    color: #2c1700;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    box-shadow:
        0 8px 18px rgba(14, 4, 10, 0.42),
        0 0 18px rgba(255, 185, 64, 0.38);
    pointer-events: none;
}

.ad-badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 229, 242, 0.72);
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 205, 232, 0.34), transparent 55%),
        linear-gradient(135deg, #ff2f92, #ff4ea8 48%, #d91571 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.7px;
    box-shadow:
        0 8px 18px rgba(14, 4, 10, 0.46),
        0 0 18px rgba(255, 84, 165, 0.45);
    text-transform: uppercase;
    pointer-events: none;
}

.ad-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.8s ease;
}

.ad-card:hover .ad-cover {
    transform: scale(1.04);
}

.ad-cover-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #efd5e5;
    font-weight: 700;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 150, 211, 0.28), transparent 44%),
        linear-gradient(145deg, rgba(72, 21, 46, 0.92), rgba(43, 13, 29, 0.94));
}

.ad-content {
    padding: 9px 10px 10px;
}

.ad-owner-row {
    display: block;
    min-width: 0;
}

.ad-owner-name {
    color: #fff1f8;
    font-size: 0.94rem;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-location {
    margin-top: 4px;
    color: #f1d1e2;
    font-size: 0.8rem;
    font-weight: 700;
}

.ad-page {
    max-width: 1160px;
    margin: 0 auto;
}

.ad-view-layout .ad-page {
    max-width: none;
    margin: 0;
    padding: 18px 20px 28px;
}

.ad-view-layout .ad-page-state {
    margin: 0;
}

.ad-owner-tools {
    margin-bottom: 14px;
    display: grid;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 176, 220, 0.22);
    background: linear-gradient(145deg, rgba(52, 18, 38, 0.7), rgba(34, 12, 26, 0.82));
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 214, 235, 0.06);
}

.ad-owner-status {
    margin: 0;
    display: grid;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 176, 220, 0.28);
    background: linear-gradient(145deg, rgba(61, 20, 44, 0.72), rgba(39, 14, 29, 0.84));
    color: #ffeef8;
    line-height: 1.4;
    font-weight: 600;
}

.ad-owner-status.is-private {
    border-color: rgba(255, 93, 149, 0.42);
    background: linear-gradient(145deg, rgba(122, 22, 56, 0.78), rgba(76, 14, 37, 0.88));
}

.ad-owner-status.is-active {
    border-color: rgba(88, 218, 156, 0.36);
    background: linear-gradient(145deg, rgba(23, 82, 60, 0.76), rgba(17, 57, 43, 0.86));
}

.ad-owner-status-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid currentColor;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.95;
}

.ad-owner-status-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}

.ad-owner-status-text {
    margin: 0;
    color: rgba(255, 238, 247, 0.9);
    font-size: 0.9rem;
}

.ad-owner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ad-owner-actions .profile-pill-btn {
    min-height: 36px;
    font-size: 1rem;
    padding: 7px 18px;
}

.ad-owner-actions .profile-pill-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.ad-owner-action-message {
    margin: 0;
    min-height: 20px;
    color: #f0d4e2;
    font-size: 0.9rem;
}

.ad-owner-action-message.error {
    color: #ff9fb1;
}

.ad-owner-action-message.success {
    color: #94e2b8;
}

.ad-view-layout .ad-page-card {
    gap: 14px;
}

.ad-page-state {
    padding: 22px;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(255, 176, 220, 0.34);
    background: linear-gradient(145deg, rgba(63, 19, 40, 0.66), rgba(34, 11, 23, 0.78));
    color: #f0d5e5;
    font-weight: 700;
}

.ad-page-card {
    display: grid;
    gap: 16px;
}

.ad-page-media-shell {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 176, 220, 0.24);
    background: var(--card-gradient);
    box-shadow: var(--shadow-xl), var(--shadow-pink);
    padding: 14px;
}

.ad-page-stage {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 184, 224, 0.26);
    background: linear-gradient(145deg, rgba(40, 14, 28, 0.94), rgba(26, 10, 20, 0.96));
    min-height: clamp(280px, 52vh, 680px);
}

.ad-page-stage-image,
.ad-page-stage-video {
    width: 100%;
    height: clamp(280px, 52vh, 680px);
    display: block;
    object-fit: contain;
    background: #1d0d16;
}

.ad-page-stage-loading,
.ad-page-stage-empty {
    min-height: clamp(280px, 52vh, 680px);
    display: grid;
    place-items: center;
    padding: 18px;
    text-align: center;
    color: #e7cad9;
    font-weight: 700;
}

.ad-page-stage-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.ad-player-bar {
    margin-top: 10px;
    display: grid;
    grid-template-columns: auto minmax(120px, 1fr) auto auto 120px auto;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 179, 221, 0.26);
    background: linear-gradient(145deg, rgba(55, 18, 37, 0.74), rgba(34, 12, 24, 0.82));
}

.ad-player-btn {
    min-width: 76px;
    padding: 8px 10px;
    font-size: 0.8rem;
}

.ad-player-seek,
.ad-player-volume {
    width: 100%;
    accent-color: #ff4ea5;
}

.ad-player-time {
    min-width: 108px;
    text-align: center;
    color: #ffe3f1;
    font-size: 0.8rem;
    font-weight: 700;
}

.ad-page-counter {
    color: #ffdcec;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-align: center;
    min-width: 70px;
}

.ad-page-thumbs {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(98px, 1fr));
    gap: 9px;
}

.ad-page-thumb {
    border: 1px solid rgba(255, 172, 214, 0.24);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(60, 20, 40, 0.86), rgba(40, 14, 29, 0.92));
    cursor: pointer;
    transition: transform var(--dur-base) var(--ease-premium), border-color var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium);
}

.ad-page-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 214, 236, 0.62);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.4);
}

.ad-page-thumb.active {
    border-color: rgba(255, 220, 240, 0.9);
    box-shadow: 0 0 0 2px rgba(255, 97, 179, 0.22);
}

.ad-page-thumb-image {
    width: 100%;
    height: 82px;
    display: block;
    object-fit: cover;
}

.ad-page-thumb-video-cover {
    position: relative;
    height: 82px;
}

.ad-page-thumb-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff4fb;
    font-size: 0.78rem;
    font-weight: 800;
    border: 1px solid rgba(255, 201, 231, 0.58);
    background: rgba(21, 7, 15, 0.7);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.ad-page-thumb-video {
    height: 82px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #ffe8f4;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px;
    background: linear-gradient(145deg, rgba(82, 26, 53, 0.88), rgba(52, 18, 35, 0.94));
}

.ad-page-thumbs-empty {
    grid-column: 1 / -1;
    border: 1px dashed rgba(255, 174, 216, 0.34);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    color: #e1c5d5;
}

.ad-page-info {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 176, 220, 0.24);
    background: var(--card-gradient);
    box-shadow: var(--shadow-xl);
    padding: 16px;
}

.ad-profile-body {
    padding: 16px 0 0;
    gap: 12px;
}

.ad-profile-body .profile-info-card {
    border-radius: 14px;
}

.ad-profile-body .profile-rating-title {
    font-size: 1.35rem;
}

.ad-profile-body .profile-rating-stars {
    font-size: 2.2rem;
}

.ad-page-owner-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ad-page-owner-meta {
    min-width: 0;
}

.ad-page-owner-avatar {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 2px solid rgba(255, 220, 240, 0.82);
    object-fit: cover;
}

.ad-page-owner-name {
    margin: 0;
    font-size: clamp(1.32rem, 2.2vw, 1.9rem);
    line-height: 1.1;
}

.ad-page-updated-at {
    margin: 4px 0 0;
    color: #dcc0d0;
    font-size: 0.88rem;
}

.ad-page-stage-controls .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ad-page-location {
    margin-top: 14px;
    color: #ffd8ea;
    font-size: 0.96rem;
    font-weight: 800;
}

.ad-page-description {
    margin-top: 10px;
    color: #f1d9e8;
    line-height: 1.62;
    white-space: pre-wrap;
}

.hero-card {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    max-width: 820px;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 156, 205, 0.35);
    background: var(--card-gradient);
    box-shadow: var(--shadow-xl), var(--shadow-pink);
    animation: panel-breathe 9s ease-in-out infinite;
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: -30% auto auto -24%;
    width: 300px;
    height: 170px;
    background: radial-gradient(circle, rgba(255, 126, 190, 0.22), transparent 74%);
    pointer-events: none;
    animation: hero-glow-drift 8.8s ease-in-out infinite;
}

.hero-card h3 {
    margin-bottom: 10px;
    color: #ffd8ea;
    font-size: 1.18rem;
}

.hero-card p {
    margin-bottom: 8px;
}

.auth-page-body {
    display: grid;
    place-items: center;
    padding: 24px;
}

.auth-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    width: clamp(320px, 60vw, 760px);
    animation: section-fade-in 0.62s var(--ease-premium) both;
}

.back-home {
    display: inline-block;
    margin-bottom: 14px;
    text-decoration: none;
    color: #ffd8ea;
    font-weight: 600;
}

.auth-box {
    position: relative;
    overflow: visible;
    isolation: isolate;
    --auth-label-column: 170px;
    --auth-column-gap: 18px;
    --auth-rate-label-column: 132px;
    background: var(--card-gradient);
    border: 1px solid rgba(255, 173, 216, 0.3);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xl), var(--shadow-pink);
    backdrop-filter: blur(10px);
    animation: panel-breathe 10.4s ease-in-out infinite;
}

.auth-box::after {
    content: "";
    position: absolute;
    inset: -36% auto auto -24%;
    width: 280px;
    height: 170px;
    background: radial-gradient(circle, rgba(255, 124, 192, 0.22), transparent 72%);
    animation: hero-glow-drift 9.8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.auth-box > * {
    position: relative;
    z-index: 1;
}

.auth-box h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    letter-spacing: 0.2px;
}

.tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.tabs button {
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 173, 216, 0.24);
    background: linear-gradient(180deg, rgba(95, 32, 64, 0.92), rgba(70, 22, 47, 0.96));
    color: var(--text-main);
    cursor: pointer;
    font-weight: 700;
    transition:
        transform var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        border-color var(--dur-base) var(--ease-premium);
}

.tabs button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 203, 230, 0.5);
    box-shadow: 0 12px 20px rgba(38, 9, 24, 0.36);
}

.tabs .active {
    background: linear-gradient(135deg, #ff3f9b, #d11767 56%, #9b0f47);
    border-color: rgba(255, 208, 233, 0.5);
    box-shadow:
        0 10px 20px rgba(255, 47, 146, 0.34),
        0 0 22px rgba(255, 84, 165, 0.26);
}

.auth-box input {
    width: 100%;
    height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 182, 222, 0.22);
    background: linear-gradient(145deg, rgba(41, 16, 31, 0.94), rgba(28, 11, 22, 0.96));
    color: #fff3fa;
    padding: 0 12px;
    margin-bottom: 12px;
    font-size: 0.96rem;
    transition:
        border-color var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        background var(--dur-base) var(--ease-premium);
}

.auth-box input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.auth-box input[type="number"]::-webkit-outer-spin-button,
.auth-box input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    width: 28px;
    height: 100%;
    border-left: 1px solid rgba(255, 182, 222, 0.22);
    background:
        linear-gradient(145deg, rgba(56, 20, 40, 0.94), rgba(34, 12, 24, 0.96));
}

.auth-box select {
    width: 100%;
    height: 48px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 182, 222, 0.22);
    background: linear-gradient(145deg, rgba(41, 16, 31, 0.94), rgba(28, 11, 22, 0.96));
    color: #fff3fa;
    padding: 0 12px;
    margin-bottom: 12px;
    font-size: 0.96rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    background-image:
        linear-gradient(145deg, rgba(41, 16, 31, 0.94), rgba(28, 11, 22, 0.96)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23f4dced' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: center, right 12px center;
    background-size: 100% 100%, 11px 11px;
    transition:
        border-color var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        background var(--dur-base) var(--ease-premium);
}

.auth-box input::placeholder {
    color: #cfa9bf;
}

.auth-field {
    display: grid;
    grid-template-columns: var(--auth-label-column) minmax(0, 1fr);
    column-gap: var(--auth-column-gap);
    margin-bottom: 16px;
    align-items: start;
}

.auth-field label {
    display: block;
    margin: 0 0 6px;
    color: #f0d8e6;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.required-star {
    color: #ff4d9f;
    margin-left: 4px;
}

.auth-field small {
    display: block;
    margin: -2px 0 8px;
    color: #d8b6c9;
    font-size: 0.78rem;
    font-weight: 600;
}

.auth-field input,
.auth-field textarea,
.auth-field select {
    margin-bottom: 0;
    grid-column: 2;
    max-width: 520px;
}

.auth-field label,
.auth-field small {
    grid-column: 1;
}

.auth-field-with-note small {
    margin: -2px 0 0;
}

.auth-field-with-note input,
.auth-field-with-note textarea,
.auth-field-with-note select,
.auth-field-with-note .smart-select {
    margin-top: 8px;
}

.auth-name-field > .auth-field-meta,
.auth-about-field > .auth-field-meta {
    grid-column: 1;
    padding-top: 8px;
}

.auth-name-field > .auth-field-meta > label,
.auth-about-field > .auth-field-meta > label {
    margin: 0 0 6px;
}

.auth-name-field > .auth-field-meta > small,
.auth-about-field > .auth-field-meta > small {
    margin: -2px 0 0;
}

.auth-name-field > input,
.auth-name-field > textarea,
.auth-name-field > select,
.auth-name-field > .smart-select,
.auth-about-field > input,
.auth-about-field > textarea,
.auth-about-field > select,
.auth-about-field > .smart-select {
    margin-top: 0;
}

.auth-select-field {
    display: grid;
    grid-template-columns: var(--auth-label-column) minmax(0, 1fr);
    column-gap: var(--auth-column-gap);
    align-items: start;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.auth-select-field:focus-within {
    z-index: 1001;
}

.auth-select-field label {
    display: block;
    margin: 0 0 6px;
    color: #f0d8e6;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    grid-column: 1;
}

.auth-select-field select {
    margin-bottom: 0;
    grid-column: 2;
    max-width: 520px;
}

.auth-select-field input {
    margin-bottom: 0;
    grid-column: 2;
    max-width: 520px;
}

.auth-select-field .smart-select,
.auth-field .smart-select {
    grid-column: 2;
    max-width: 520px;
}

.field-invalid,
.field-invalid input,
.field-invalid select,
.field-invalid textarea {
    border-color: rgba(255, 64, 136, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 47, 146, 0.25);
}

.field-invalid .smart-select-trigger {
    border-color: rgba(255, 64, 136, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 47, 146, 0.25);
}

.auth-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.auth-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
    z-index: auto;
}

.auth-grid-3 .smart-select {
    z-index: 1;
    min-width: 0;
}

.auth-grid-3 .smart-select-menu {
    max-height: 220px;
}

.auth-grid-3 .smart-select.open {
    z-index: 20000;
}

.auth-check-group,
.auth-radio-group {
    display: grid;
    grid-template-columns: var(--auth-label-column) minmax(0, 1fr);
    column-gap: var(--auth-column-gap);
    row-gap: 8px;
    margin-bottom: 16px;
    padding: 0;
    border: none;
    background: transparent;
}

.auth-check-title {
    color: #f0d8e6;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    grid-column: 1;
}

.auth-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f2d8e8;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    grid-column: 2;
}

.auth-check input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.auth-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(255, 183, 223, 0.44);
    border-radius: 5px;
    background: linear-gradient(145deg, rgba(49, 18, 35, 0.94), rgba(35, 12, 24, 0.98));
    display: grid;
    place-items: center;
    padding: 0;
    cursor: pointer;
    transition: border-color var(--dur-base) var(--ease-premium), background var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium);
}

.auth-check input[type="checkbox"]::before {
    content: "\2713";
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.16s ease;
}

.auth-check input[type="checkbox"]:checked {
    border-color: rgba(188, 157, 255, 0.92);
    background: linear-gradient(145deg, #8f79ff, #7a5dff);
    box-shadow: 0 0 0 2px rgba(147, 114, 255, 0.24);
}

.auth-check input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.auth-check input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(17, 7, 14, 0.9),
        0 0 0 4px rgba(180, 147, 255, 0.4);
}

.auth-check span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.auth-textarea {
    width: 100%;
    min-height: 120px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 182, 222, 0.22);
    background: linear-gradient(145deg, rgba(41, 16, 31, 0.94), rgba(28, 11, 22, 0.96));
    color: #fff3fa;
    padding: 12px;
    margin-bottom: 12px;
    resize: vertical;
    font-size: 0.96rem;
}

.auth-row {
    display: grid;
    grid-template-columns: var(--auth-label-column) minmax(0, 1fr);
    column-gap: var(--auth-column-gap);
    align-items: start;
    margin-bottom: 16px;
}

.auth-row-label {
    color: #f0d8e6;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.auth-row-label-with-help {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.auth-row-label-with-help small {
    color: #d8b6c9;
    font-size: 0.78rem;
    font-weight: 600;
}

.auth-row-content {
    grid-column: 2;
}

.auth-check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
}

.auth-row-content .smart-select,
.auth-row-content input,
.auth-row-content select,
.auth-row-content textarea {
    max-width: 520px;
}

.auth-lang-block .auth-row-content,
.auth-rates-block .auth-row-content {
    max-width: 680px;
    padding: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 182, 222, 0.18);
    background: linear-gradient(145deg, rgba(34, 13, 27, 0.58), rgba(24, 9, 20, 0.62));
}

.auth-row-content .auth-rates,
.auth-row-content .auth-services-grid {
    max-width: 640px;
}

.auth-date-meta label {
    display: block;
    margin: 0 0 6px;
    color: #f0d8e6;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.auth-date-meta small {
    display: block;
    margin: -2px 0 8px;
    color: #d8b6c9;
    font-size: 0.78rem;
    font-weight: 600;
}

.auth-date-row .auth-grid-3 {
    margin-bottom: 0;
}

.auth-date-row {
    position: relative;
    z-index: 3;
}

.auth-date-row:focus-within {
    z-index: 1200;
}

.auth-lang-list {
    display: grid;
    gap: 8px;
}

.auth-lang-head {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 10px;
    align-items: center;
    padding: 0 2px;
    margin-bottom: 2px;
}

.auth-lang-head span {
    color: #d8b6c9;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}

.auth-lang-head span:last-child {
    text-align: center;
}

.auth-lang-item {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 10px;
    align-items: center;
}

.auth-lang-item input,
.auth-lang-item select {
    margin-bottom: 0;
}

.auth-rate-currency {
    display: grid;
    grid-template-columns: 114px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    margin-bottom: 10px;
}

.auth-rate-currency label {
    color: #f0d8e6;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.auth-rate-currency select {
    max-width: 100%;
    margin-bottom: 0;
}

.auth-textarea:focus {
    outline: none;
    border-color: rgba(255, 204, 230, 0.84);
    box-shadow: 0 0 0 3px rgba(255, 47, 146, 0.2);
    background: linear-gradient(145deg, rgba(50, 18, 37, 0.98), rgba(33, 12, 25, 0.98));
}

.auth-section-title {
    margin: 6px 0 10px;
    color: #ffe8f4;
    font-size: 0.95rem;
    font-weight: 700;
}

.auth-language-row {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 10px;
    margin-bottom: 10px;
}

.auth-language-row .auth-field {
    margin-bottom: 0;
}

.auth-rates {
    display: grid;
    gap: 8px;
    margin-bottom: 0;
}

.auth-rate-head {
    display: grid;
    grid-template-columns: var(--auth-rate-label-column) minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-bottom: 0;
}

.auth-rate-head span {
    color: #f0d8e6;
    font-size: 0.98rem;
    font-weight: 700;
    text-align: center;
}

.auth-rate-head span:first-child {
    visibility: hidden;
}

.auth-rate-row {
    display: grid;
    grid-template-columns: var(--auth-rate-label-column) minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.auth-rate-row span {
    color: #e9cfe0;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
    padding-right: 2px;
}

.auth-rate-row input {
    margin-bottom: 0;
}

.auth-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 34px;
    margin-bottom: 14px;
}

.auth-services-grid .auth-check {
    grid-column: auto;
    align-items: flex-start;
    gap: 10px;
}

.auth-services-grid .auth-check input {
    margin-top: 1px;
}

.auth-tos {
    margin: 8px 0 14px;
}

.auth-box .smart-select {
    z-index: 9998;
}

.auth-box .smart-select-menu {
    z-index: 9999;
}

.auth-box .smart-select.open {
    z-index: 10000;
}

.auth-box input:focus {
    outline: none;
    border-color: rgba(255, 204, 230, 0.84);
    box-shadow: 0 0 0 3px rgba(255, 47, 146, 0.2);
    background: linear-gradient(145deg, rgba(50, 18, 37, 0.98), rgba(33, 12, 25, 0.98));
}

.auth-box select:focus {
    outline: none;
    border-color: rgba(255, 204, 230, 0.84);
    box-shadow: 0 0 0 3px rgba(255, 47, 146, 0.2);
    background-image:
        linear-gradient(145deg, rgba(50, 18, 37, 0.98), rgba(33, 12, 25, 0.98)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffe8f5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: center, right 12px center;
    background-size: 100% 100%, 11px 11px;
}

.auth-box button[type="submit"] {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    font-weight: 800;
    cursor: pointer;
    border: 1px solid rgba(255, 210, 234, 0.36);
    box-shadow:
        0 12px 22px rgba(255, 47, 146, 0.3),
        0 0 24px rgba(255, 84, 165, 0.18);
    transition: transform var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium);
}

.auth-box button[type="submit"]:hover {
    transform: translateY(-1px);
    box-shadow:
        0 16px 30px rgba(255, 47, 146, 0.36),
        0 0 32px rgba(255, 84, 165, 0.24);
}

#authMessage {
    min-height: 24px;
    margin-top: 12px;
    text-align: center;
    color: var(--text-soft);
    font-weight: 600;
}

#authMessage.error {
    color: var(--danger);
}

#authMessage.success {
    color: var(--success);
}

.auth-resend {
    width: 100%;
    height: 44px;
    margin-top: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 188, 224, 0.5);
    background: linear-gradient(145deg, rgba(88, 28, 58, 0.92), rgba(52, 16, 36, 0.96));
    color: #ffe7f4;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium), border-color var(--dur-base) var(--ease-premium);
}

.auth-resend:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 210, 234, 0.8);
    box-shadow: 0 10px 18px rgba(38, 9, 24, 0.32);
}

.auth-resend:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.hint {
    margin-top: 9px;
    text-align: center;
    color: #ada3b2;
    font-size: 0.84rem;
}

.admin-page {
    position: relative;
    z-index: 2;
    padding: 30px;
    animation: section-fade-in 0.64s var(--ease-premium) both;
}

.premium-admin-card {
    margin-top: 16px;
}

.premium-admin-form {
    display: grid;
    gap: 10px;
}

.premium-admin-form input {
    width: 100%;
    border-radius: 13px;
    border: 1px solid rgba(255, 176, 220, 0.22);
    background: linear-gradient(145deg, rgba(40, 16, 31, 0.92), rgba(30, 12, 23, 0.94));
    color: #fff3fa;
    padding: 12px;
}

.premium-admin-form label {
    color: #f0d8e6;
    font-size: 0.88rem;
    font-weight: 700;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 14px;
}

.admin-analytics-card {
    margin-top: 0;
}

.admin-analytics-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.admin-analytics-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-period-tab {
    min-height: 34px;
    padding: 8px 14px;
}

.admin-period-tab.active {
    border-color: rgba(255, 174, 226, 0.62);
    color: #ffe9f5;
    box-shadow: 0 0 0 1px rgba(255, 118, 190, 0.35), 0 10px 22px rgba(255, 53, 156, 0.18);
}

.admin-analytics-custom {
    margin-top: 12px;
    display: grid;
    grid-template-columns: auto minmax(140px, 1fr) auto minmax(140px, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.admin-analytics-custom label {
    color: #f0d8e6;
    font-size: 0.86rem;
    font-weight: 700;
}

.admin-analytics-custom input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 176, 220, 0.22);
    background: linear-gradient(145deg, rgba(40, 16, 31, 0.92), rgba(30, 12, 23, 0.94));
    color: #fff3fa;
    padding: 10px 12px;
}

.admin-analytics-range {
    margin: 10px 0 2px;
    color: #dfc9d6;
    font-size: 0.9rem;
    font-weight: 700;
}

.admin-grid-analytics {
    margin-top: 10px;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.stat-card {
    position: relative;
    overflow: hidden;
    background: var(--card-gradient);
    border: 1px solid rgba(255, 169, 212, 0.2);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-xl);
    transition:
        transform var(--dur-base) var(--ease-premium),
        border-color var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium);
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: -46% -20% auto;
    height: 110px;
    background: radial-gradient(circle, rgba(255, 128, 196, 0.2), transparent 72%);
    opacity: 0.6;
    pointer-events: none;
    animation: dropdown-bloom 6.8s ease-in-out infinite;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 200, 228, 0.56);
    box-shadow:
        0 24px 42px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(255, 93, 178, 0.22);
}

.stat-card h3 {
    margin-bottom: 8px;
    color: #ffd8ea;
    font-size: 1rem;
}

.stat-card p {
    font-size: 2rem;
    font-weight: 800;
}

.chart-card {
    margin-top: 16px;
    background: var(--card-gradient);
    border: 1px solid rgba(255, 169, 212, 0.2);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-xl);
    animation: panel-breathe 11.8s ease-in-out infinite;
}

.chart-card h3 {
    margin-bottom: 12px;
    color: #ffd8ea;
}

.admin-moderation-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-moderation-note {
    margin: 2px 0 8px;
    color: #dbc0d0;
    font-size: 0.9rem;
}

.admin-moderation-filters {
    margin: 10px 0 8px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.admin-moderation-filter-field {
    display: grid;
    gap: 6px;
}

.admin-moderation-filter-field--wide {
    grid-column: span 3;
}

.admin-moderation-filter-field > span {
    color: #f0d8e6;
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-moderation-filter-field input,
.admin-moderation-filter-field select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 176, 220, 0.22);
    background: linear-gradient(145deg, rgba(40, 16, 31, 0.92), rgba(30, 12, 23, 0.94));
    color: #fff3fa;
    padding: 10px 12px;
}

.admin-moderation-filter-field .smart-select {
    width: 100%;
    z-index: 20;
}

.admin-moderation-filter-field .smart-select.open {
    z-index: 2600;
}

.admin-moderation-filter-field select option {
    color: #151523;
    background: #ffffff;
}

.admin-moderation-filters-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin: 2px 0 8px;
}

.admin-moderation-summary {
    margin: 0;
    color: #dfc9d6;
    font-size: 0.86rem;
    font-weight: 700;
}

.admin-pending-ads-list {
    display: grid;
    gap: 12px;
}

.admin-pending-ad {
    border: 1px solid rgba(255, 176, 220, 0.2);
    border-radius: 14px;
    background: linear-gradient(150deg, rgba(56, 18, 38, 0.9), rgba(34, 12, 24, 0.94));
    padding: 12px;
}

.admin-pending-ad-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.admin-pending-ad-head-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-pending-ad-head h4 {
    margin: 0;
    color: #ffe7f3;
    font-size: 1rem;
}

.admin-pending-ad-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 2px 9px;
    border-radius: 999px;
    border: 1px solid rgba(255, 189, 225, 0.32);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.admin-pending-ad-status.is-active {
    background: rgba(88, 245, 192, 0.14);
    border-color: rgba(88, 245, 192, 0.44);
    color: #b5ffe8;
}

.admin-pending-ad-status.is-private {
    background: rgba(255, 191, 224, 0.14);
    border-color: rgba(255, 191, 224, 0.44);
    color: #ffd3e9;
}

.admin-pending-ad-date {
    color: #d4b7c8;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.admin-pending-ad-meta {
    margin: 6px 0 0;
    color: #e2c9d8;
    font-size: 0.86rem;
}

.admin-pending-ad-email {
    color: #f7dfea;
    font-weight: 700;
}

.admin-pending-ad-text {
    margin: 8px 0 0;
    color: #f0d8e6;
    font-size: 0.9rem;
    line-height: 1.45;
    white-space: pre-wrap;
}

.admin-pending-ad-actions {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-pending-ad-actions .btn {
    min-height: 34px;
    padding: 7px 13px;
}

.admin-delete-ad-btn {
    border-color: rgba(255, 131, 172, 0.52);
    color: #ffd2e7;
    background: linear-gradient(135deg, rgba(82, 22, 42, 0.9), rgba(52, 15, 29, 0.92));
}

.admin-delete-ad-btn:hover {
    border-color: rgba(255, 147, 185, 0.72);
    box-shadow: 0 0 0 2px rgba(255, 131, 172, 0.14);
}

.admin-pending-ads-empty {
    margin: 6px 0 0;
    color: #dcc2d2;
    font-weight: 700;
}

.profile-page {
    max-width: 860px;
    margin: 0 auto;
}

.premium-page {
    max-width: 940px;
    margin: 0 auto;
}

.premium-card {
    border: 1px solid rgba(255, 186, 224, 0.42);
    border-radius: var(--radius-lg);
    padding: 24px;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 126, 190, 0.2), transparent 46%),
        linear-gradient(160deg, rgba(43, 17, 33, 0.96), rgba(24, 10, 18, 0.98));
    box-shadow: var(--shadow-xl), var(--shadow-pink);
}

.premium-price {
    margin-top: 8px;
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffd798;
}

.premium-note {
    margin-top: 8px;
    color: #e9c9da;
}

.premium-payment-card {
    margin-top: 14px;
    border: 1px solid rgba(145, 216, 255, 0.34);
    border-radius: 16px;
    padding: 14px;
    background:
        radial-gradient(circle at 12% 8%, rgba(112, 201, 255, 0.2), transparent 42%),
        linear-gradient(140deg, rgba(20, 41, 63, 0.78), rgba(17, 28, 44, 0.9));
}

.premium-payment-card h3 {
    color: #dff5ff;
    font-size: 1rem;
}

.premium-payment-note {
    margin-top: 7px;
    color: #d5eaff;
}

.premium-payment-request-wrap {
    margin-top: 12px;
}

.premium-pay-divider {
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8eeff;
    font-size: 0.84rem;
    font-weight: 700;
    opacity: 0.92;
}

.premium-pay-divider::before,
.premium-pay-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(167, 222, 255, 0.1), rgba(167, 222, 255, 0.46), rgba(167, 222, 255, 0.1));
}

.premium-pay-divider span {
    white-space: nowrap;
}

.premium-payment-request-button {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    overflow: hidden;
}

.premium-card-form {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.premium-card-label {
    font-size: 0.86rem;
    font-weight: 700;
    color: #dff0ff;
}

.premium-card-input {
    width: 100%;
    border: 1px solid rgba(168, 218, 246, 0.38);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(24, 44, 66, 0.76), rgba(17, 33, 52, 0.9));
    color: #f3fbff;
    padding: 10px 12px;
    font: inherit;
    outline: none;
    transition: border-color var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium);
}

.premium-card-input::placeholder {
    color: rgba(221, 239, 255, 0.58);
}

.premium-card-input:focus {
    border-color: rgba(201, 236, 255, 0.72);
    box-shadow: 0 0 0 3px rgba(97, 178, 228, 0.22);
}

.premium-card-element {
    border: 1px solid rgba(168, 218, 246, 0.38);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(24, 44, 66, 0.76), rgba(17, 33, 52, 0.9));
    min-height: 46px;
    padding: 12px 10px;
    transition: border-color var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium);
}

.premium-card-element:focus-within {
    border-color: rgba(201, 236, 255, 0.72);
    box-shadow: 0 0 0 3px rgba(97, 178, 228, 0.22);
}

.premium-card-element.error {
    border-color: rgba(255, 146, 170, 0.72);
    box-shadow: 0 0 0 3px rgba(255, 120, 155, 0.2);
}

.premium-pay-btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    border-color: rgba(186, 232, 255, 0.42);
    background: linear-gradient(135deg, #4db8ff, #2d8dd0 56%, #1f5f99);
    box-shadow:
        0 12px 26px rgba(50, 146, 214, 0.38),
        0 0 28px rgba(78, 176, 255, 0.18);
}

.premium-pay-btn:hover {
    box-shadow:
        0 18px 36px rgba(38, 128, 191, 0.48),
        0 0 36px rgba(95, 196, 255, 0.3);
}

.premium-pay-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.premium-payment-unavailable {
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 178, 197, 0.34);
    background: linear-gradient(145deg, rgba(74, 19, 42, 0.82), rgba(52, 14, 31, 0.9));
    color: #ffd9e6;
    padding: 10px 12px;
    font-weight: 700;
}

.premium-subtitle {
    margin-top: 18px;
    font-size: 1rem;
    color: #f6d8e8;
}

.premium-status {
    margin-top: 14px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 183, 220, 0.26);
    background: linear-gradient(145deg, rgba(55, 18, 37, 0.78), rgba(34, 12, 24, 0.86));
    color: #ffeef8;
    font-weight: 700;
}

.premium-wallets {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.premium-wallet {
    border: 1px solid rgba(255, 177, 220, 0.24);
    border-radius: 15px;
    padding: 12px;
    background: linear-gradient(145deg, rgba(57, 18, 38, 0.84), rgba(36, 12, 24, 0.9));
}

.premium-wallet h3 {
    color: #ffe7f4;
    font-size: 0.96rem;
}

.premium-wallet-address {
    margin-top: 8px;
    font-size: 0.84rem;
    color: #f7d9e9;
    word-break: break-all;
}

.premium-copy-btn {
    margin-top: 10px;
    width: 100%;
}

.profile-shell {
    border: 1px solid rgba(255, 173, 216, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--card-gradient);
    box-shadow: var(--shadow-xl), var(--shadow-pink);
    animation: panel-breathe 12.2s ease-in-out infinite;
}

.profile-shell-single {
    margin-top: 10px;
}

.profile-cover {
    height: 180px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 137, 184, 0.45), transparent 40%),
        radial-gradient(circle at 80% 65%, rgba(209, 15, 79, 0.6), transparent 45%),
        linear-gradient(120deg, #53122f 0%, #71153f 40%, #43071f 100%);
    background-size: 135% 135%;
    animation: cover-flow 12s ease-in-out infinite;
}

.profile-head {
    margin-top: -56px;
    padding: 0 24px 10px;
    display: flex;
    gap: 18px;
    align-items: flex-end;
}

.avatar-wrap {
    position: relative;
}

.profile-avatar {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    border: 2px solid rgba(255, 160, 207, 0.45);
    object-fit: cover;
    background: linear-gradient(145deg, #3f1229, #2a0d1d);
    box-shadow: 0 0 24px rgba(255, 85, 170, 0.22);
}

.profile-avatar-lg {
    width: 124px;
    height: 124px;
    border-width: 4px;
}

.avatar-edit-btn {
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 179, 220, 0.34);
    background: linear-gradient(145deg, rgba(88, 31, 59, 0.9), rgba(50, 18, 34, 0.94));
    color: #fff;
    font-size: 0.75rem;
    border-radius: 999px;
    padding: 7px 10px;
    cursor: pointer;
    transition:
        transform var(--dur-base) var(--ease-premium),
        border-color var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium);
}

.avatar-edit-btn:hover {
    transform: translateX(-50%) translateY(-2px);
    border-color: rgba(255, 215, 236, 0.68);
    box-shadow: 0 14px 26px rgba(32, 9, 22, 0.48);
}

.profile-identity h2 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.profile-email {
    color: var(--text-soft);
}

.modal {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 97, 176, 0.12), transparent 35%),
        radial-gradient(circle at 80% 90%, rgba(127, 17, 62, 0.24), transparent 38%),
        rgba(8, 10, 15, 0.74);
    display: grid;
    place-items: center;
    z-index: 64;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
    transition: opacity var(--dur-base) var(--ease-premium);
}

.modal.modal-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: min(560px, 100%);
    border: 1px solid rgba(255, 186, 224, 0.42);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-xl), var(--shadow-pink);
    transform: translateY(18px) scale(0.965);
    transition: transform 0.42s var(--ease-premium), opacity 0.42s ease;
}

.modal.modal-open .modal-card {
    transform: translateY(0) scale(1);
}

.modal-card-premium {
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 126, 190, 0.2), transparent 46%),
        linear-gradient(160deg, rgba(43, 17, 33, 0.96), rgba(24, 10, 18, 0.98));
    backdrop-filter: blur(12px);
}

.modal-card-premium::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(125deg, rgba(255, 206, 233, 0.46), rgba(255, 80, 170, 0.4), rgba(116, 18, 57, 0.55));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    animation: modal-border-flow 6s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.modal-card-premium::after {
    content: "";
    position: absolute;
    inset: -32% auto auto -24%;
    width: 320px;
    height: 190px;
    background: radial-gradient(circle, rgba(255, 120, 191, 0.26), transparent 74%);
    pointer-events: none;
    animation: modal-light-drift 7.2s ease-in-out infinite;
    z-index: 0;
}

.modal-card-premium > * {
    position: relative;
    z-index: 1;
}

.modal-head {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.modal-head h3 {
    color: #ffe8f4;
    font-size: 1.28rem;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 18px rgba(255, 95, 175, 0.38);
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 13px;
    border: 1px solid var(--line-soft);
    background: linear-gradient(145deg, rgba(78, 26, 54, 0.9), rgba(45, 16, 32, 0.94));
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: transform var(--dur-base) var(--ease-premium), border-color var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium);
}

.icon-btn:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(255, 188, 224, 0.74);
    box-shadow: 0 8px 18px rgba(255, 88, 169, 0.26);
}

.profile-overview {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid rgba(255, 184, 222, 0.26);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 134, 198, 0.12), rgba(103, 14, 50, 0.18));
    box-shadow: inset 0 0 24px rgba(255, 155, 209, 0.08);
}

.profile-overview-meta {
    display: grid;
    gap: 6px;
}

.overview-name {
    font-size: 1.22rem;
    font-weight: 800;
    color: #fff4fb;
}

.overview-email {
    color: var(--text-soft);
}

.overview-role {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.profile-preview {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 10px;
    border: 1px solid rgba(255, 184, 222, 0.2);
    border-radius: 14px;
    background: rgba(255, 137, 202, 0.08);
}

.profile-preview-title {
    font-weight: 700;
    color: #ffe6f2;
}

.profile-preview-subtitle {
    color: #d7c3cf;
    font-size: 0.85rem;
}

.profile-form {
    padding: 0;
}

.profile-shell .profile-form {
    padding: 0 24px 24px;
}

.profile-form label {
    display: block;
    margin: 10px 0 7px;
    color: #f0d8e6;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.profile-form input[type="text"],
.profile-form input[type="email"],
.profile-form input[type="tel"],
.profile-form input[type="url"],
.profile-form input[type="number"],
.profile-form input[type="password"],
.profile-form input[type="file"],
.profile-form select,
.profile-form textarea {
    width: 100%;
    border-radius: 13px;
    border: 1px solid rgba(255, 176, 220, 0.22);
    background: linear-gradient(145deg, rgba(40, 16, 31, 0.92), rgba(30, 12, 23, 0.94));
    color: #fff3fa;
    padding: 12px;
    transition: border-color 0.36s ease, box-shadow 0.36s ease, background 0.36s ease;
}

.profile-form input[type="file"] {
    padding: 8px;
    color: #f8eaf2;
    cursor: pointer;
}

.profile-form input[type="file"]::file-selector-button {
    margin-right: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 176, 220, 0.45);
    background: linear-gradient(140deg, rgba(255, 120, 190, 0.28), rgba(120, 24, 68, 0.5));
    color: #fff5fb;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.profile-form input[type="file"]::-webkit-file-upload-button {
    margin-right: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 176, 220, 0.45);
    background: linear-gradient(140deg, rgba(255, 120, 190, 0.28), rgba(120, 24, 68, 0.5));
    color: #fff5fb;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.profile-form input[type="file"]:hover::file-selector-button,
.profile-form input[type="file"]:hover::-webkit-file-upload-button {
    transform: translateY(-1px);
    border-color: rgba(255, 206, 231, 0.8);
    box-shadow: 0 8px 16px rgba(21, 7, 14, 0.35);
}

.profile-form input[type="file"]:focus-visible::file-selector-button,
.profile-form input[type="file"]:focus-visible::-webkit-file-upload-button {
    box-shadow:
        0 0 0 3px rgba(255, 104, 180, 0.34),
        0 0 0 1px rgba(255, 218, 237, 0.7);
}

.profile-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    background-image:
        linear-gradient(145deg, rgba(40, 16, 31, 0.92), rgba(30, 12, 23, 0.94)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23f4dced' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: center, right 12px center;
    background-size: 100% 100%, 11px 11px;
}

.profile-form input::placeholder {
    color: #c7a7bc;
}

.profile-form textarea {
    min-height: 132px;
    resize: vertical;
}

.profile-form input[type="text"]:focus,
.profile-form input[type="email"]:focus,
.profile-form input[type="tel"]:focus,
.profile-form input[type="url"]:focus,
.profile-form input[type="number"]:focus,
.profile-form input[type="password"]:focus,
.profile-form input[type="file"]:focus,
.profile-form select:focus,
.profile-form textarea:focus {
    outline: none;
    border-color: rgba(255, 197, 227, 0.88);
    box-shadow: 0 0 0 3px rgba(255, 76, 163, 0.22);
    background: linear-gradient(145deg, rgba(52, 18, 38, 0.96), rgba(34, 12, 25, 0.96));
}

.profile-form select:focus {
    background-image:
        linear-gradient(145deg, rgba(52, 18, 38, 0.96), rgba(34, 12, 25, 0.96)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffe8f5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: center, right 12px center;
    background-size: 100% 100%, 11px 11px;
}

.auth-box select:disabled,
.profile-form select:disabled {
    opacity: 0.75;
    color: #c6a6ba;
    cursor: not-allowed;
}

.auth-box select option,
.profile-form select option {
    color: #2d1222;
    background: #fff0f8;
}

.native-select-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.smart-select {
    position: relative;
    z-index: 4;
}

.smart-select-trigger {
    width: 100%;
    min-height: 48px;
    border-radius: 13px;
    border: 1px solid rgba(255, 176, 220, 0.24);
    background: linear-gradient(145deg, rgba(40, 16, 31, 0.92), rgba(30, 12, 23, 0.94));
    color: #fff3fa;
    padding: 10px 38px 10px 12px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.34s ease, box-shadow 0.34s ease, background 0.34s ease, transform 0.34s ease;
}

.smart-select-trigger:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 206, 231, 0.62);
    box-shadow: 0 10px 20px rgba(22, 7, 15, 0.42);
}

.smart-select-trigger.is-placeholder .smart-select-value {
    color: #cfadc1;
}

.smart-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #f6d9ea;
    font-size: 0.8rem;
    line-height: 1;
    transition: transform 0.32s ease;
}

.smart-select.open .smart-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.smart-select.is-disabled .smart-select-trigger {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.smart-select-menu {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    border-radius: 13px;
    border: 1px solid rgba(255, 172, 214, 0.42);
    background:
        radial-gradient(circle at 10% 8%, rgba(255, 162, 214, 0.16), transparent 36%),
        linear-gradient(145deg, rgba(57, 18, 38, 0.98), rgba(36, 12, 24, 0.99));
    box-shadow:
        0 22px 40px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(255, 164, 210, 0.2) inset;
    padding: 6px;
    z-index: 20000;
    backdrop-filter: blur(8px);
}

.smart-select.open-up .smart-select-menu {
    top: auto;
    bottom: calc(100% + 7px);
}

.smart-select-option {
    width: 100%;
    border: none;
    border-radius: 9px;
    background: transparent;
    color: #fdeff8;
    text-align: left;
    font-size: 0.92rem;
    padding: 9px 10px;
    cursor: pointer;
    transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.smart-select-option:hover {
    background: rgba(255, 140, 201, 0.2);
    color: #fff6fc;
    transform: translateX(2px);
}

.smart-select-option.active {
    background: rgba(255, 120, 190, 0.28);
    color: #ffffff;
    font-weight: 700;
}

.smart-select-option:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.smart-select-empty {
    padding: 10px;
    color: #dfc3d4;
    text-align: center;
    font-size: 0.86rem;
}

.ad-form {
    display: grid;
    gap: 12px;
}

.ad-form-required-note {
    margin: 0;
    color: #dfc3d4;
    font-size: 0.86rem;
    font-weight: 600;
}

.ad-form-section-note {
    margin: 2px 0 -2px;
    color: #f0d8e6;
    font-size: 0.92rem;
    font-weight: 700;
}

.ad-form-row {
    display: grid;
    grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.ad-form-row-top {
    align-items: start;
}

.ad-form-row > label {
    margin: 0;
    padding-top: 2px;
}

.ad-form-stack {
    display: grid;
    gap: 7px;
}

.ad-form-help {
    margin: 0;
    color: #d9bfd0;
    font-size: 0.8rem;
    font-weight: 600;
}

.ad-form-inline-value {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 330px;
}

.ad-form-inline-prefix {
    color: #f4dfec;
    font-weight: 700;
    white-space: nowrap;
}

.ad-form-inline-value select,
.ad-form-inline-value .smart-select {
    flex: 1 1 auto;
    min-width: 160px;
}

.ad-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 0;
}

.ad-location-grid > div {
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 176, 220, 0.2);
    background: linear-gradient(145deg, rgba(52, 18, 38, 0.72), rgba(36, 13, 26, 0.82));
}

.ad-location-grid > div label {
    margin: 0 0 6px;
}

.ad-selector-wrap {
    position: relative;
    z-index: 3;
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 176, 220, 0.22);
    background: linear-gradient(145deg, rgba(52, 18, 38, 0.72), rgba(36, 13, 26, 0.82));
    overflow: visible;
}

.ad-selector-wrap:focus-within {
    z-index: 2600;
}

.ad-selector-wrap.ad-selector-open {
    z-index: 5000;
}

.ad-selector-wrap label {
    display: block;
    margin-bottom: 8px;
    color: #f0d8e6;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.ad-selector-wrap select {
    width: 100%;
    border-radius: 13px;
    border: 1px solid rgba(255, 176, 220, 0.22);
    background: linear-gradient(145deg, rgba(40, 16, 31, 0.92), rgba(30, 12, 23, 0.94));
    color: #fff3fa;
    padding: 12px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(145deg, rgba(40, 16, 31, 0.92), rgba(30, 12, 23, 0.94)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23f4dced' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: center, right 12px center;
    background-size: 100% 100%, 11px 11px;
    cursor: pointer;
    transition: border-color 0.36s ease, box-shadow 0.36s ease;
}

.ad-selector-wrap select:focus {
    outline: none;
    border-color: rgba(255, 197, 227, 0.88);
    box-shadow: 0 0 0 3px rgba(255, 76, 163, 0.22);
}

.ad-selector-wrap select option {
    color: #2d1222;
    background: #fff0f8;
}

.ad-selector-wrap .smart-select {
    z-index: 30;
}

.ad-selector-wrap .smart-select.open {
    z-index: 2650;
}

.ad-selector-wrap .smart-select-menu {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    margin-top: 0;
    z-index: 5100;
    background: linear-gradient(180deg, #3b1028 0%, #2a0b1c 100%);
    border-color: rgba(255, 172, 214, 0.58);
    box-shadow:
        0 22px 40px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(255, 164, 210, 0.24) inset;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.ad-selector-wrap .smart-select.open-up .smart-select-menu {
    top: auto;
    bottom: calc(100% + 7px);
}

.ad-moderation-notice {
    margin: 10px 0 0;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 176, 220, 0.28);
    background: linear-gradient(145deg, rgba(61, 20, 44, 0.72), rgba(39, 14, 29, 0.84));
    color: #ffeaf5;
    font-size: 0.84rem;
    line-height: 1.45;
    font-weight: 700;
}

.ad-moderation-notice.is-private {
    border-color: rgba(255, 93, 149, 0.44);
    background: linear-gradient(145deg, rgba(122, 22, 56, 0.78), rgba(76, 14, 37, 0.88));
}

.ad-moderation-notice.is-active {
    border-color: rgba(88, 218, 156, 0.36);
    background: linear-gradient(145deg, rgba(23, 82, 60, 0.76), rgba(17, 57, 43, 0.86));
}

.classified-composer {
    margin-bottom: 16px;
    padding: 22px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 176, 220, 0.24);
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 155, 213, 0.16), transparent 42%),
        linear-gradient(155deg, rgba(52, 18, 38, 0.88), rgba(26, 10, 20, 0.95));
    box-shadow:
        0 16px 28px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 213, 235, 0.08);
}

.classified-composer-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.classified-composer-copy h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2vw, 1.86rem);
    color: #ffeaf6;
}

.classified-composer-copy p {
    margin: 8px 0 0;
    color: #e8cddc;
    font-size: 0.92rem;
}

.classified-composer .ad-selector-wrap {
    margin-bottom: 0;
}

.classified-composer .ad-form {
    margin-top: 14px;
}

.classified-composer .modal-actions {
    margin-top: 2px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.agency-workspace {
    margin-bottom: 14px;
}

body.agency-workspace-open,
.site-body.agency-workspace-open {
    overflow-x: hidden;
}

.agency-workspace-close {
    position: static;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 10px;
    border-color: rgba(255, 188, 225, 0.42);
    background: rgba(27, 11, 20, 0.86);
    color: #ffd5e8;
}

.agency-workspace-close:hover {
    border-color: rgba(255, 208, 232, 0.62);
    background: rgba(38, 14, 27, 0.94);
    color: #ffe7f3;
}

.agency-workspace-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    width: 100%;
}

.agency-workspace-topbar {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
}

.agency-workspace-topbar-copy h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    color: #ffeaf6;
}

.agency-workspace-topbar-copy p {
    margin: 8px 0 0;
    color: #ddbccf;
    font-size: 0.9rem;
}

.agency-workspace-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.agency-workspace-main {
    display: grid;
    gap: 12px;
}

.agency-card {
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 176, 220, 0.24);
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 155, 213, 0.13), transparent 42%),
        linear-gradient(155deg, rgba(52, 18, 38, 0.88), rgba(26, 10, 20, 0.95));
    box-shadow:
        0 16px 28px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 213, 235, 0.08);
}

.agency-card-head h2 {
    margin: 0;
    font-size: clamp(1.25rem, 1.9vw, 1.66rem);
    color: #ffeaf6;
}

.agency-card-head p {
    margin: 8px 0 0;
    color: #ddbccf;
    font-size: 0.9rem;
}

.agency-card-head-inline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.agency-form {
    margin-top: 12px;
}

.site-body #agencyProfileForm #agencyProfileCountry,
.site-body #agencyProfileForm #agencyProfileCity {
    width: auto;
    min-width: 130px;
    max-width: 220px;
}

.agency-escort-form-layout {
    --auth-label-column: 170px;
    --auth-column-gap: 18px;
    --auth-rate-label-column: 132px;
}

.site-body .agency-escort-form-layout {
    max-width: 980px;
}

.site-body .agency-escort-form-layout .auth-field,
.site-body .agency-escort-form-layout .auth-select-field,
.site-body .agency-escort-form-layout .auth-row,
.site-body .agency-escort-form-layout .auth-check-group,
.site-body .agency-escort-form-layout .auth-radio-group {
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-bottom: 14px;
}

.site-body .agency-escort-form-layout .auth-field label,
.site-body .agency-escort-form-layout .auth-field small,
.site-body .agency-escort-form-layout .auth-select-field label,
.site-body .agency-escort-form-layout .auth-check-title,
.site-body .agency-escort-form-layout .auth-row-label,
.site-body .agency-escort-form-layout .auth-date-meta {
    grid-column: 1;
}

.site-body .agency-escort-form-layout .auth-field input,
.site-body .agency-escort-form-layout .auth-field textarea,
.site-body .agency-escort-form-layout .auth-field select,
.site-body .agency-escort-form-layout .auth-field .smart-select,
.site-body .agency-escort-form-layout .auth-select-field input,
.site-body .agency-escort-form-layout .auth-select-field select,
.site-body .agency-escort-form-layout .auth-select-field .smart-select,
.site-body .agency-escort-form-layout .auth-row-content {
    grid-column: 1;
    max-width: min(100%, 860px);
}

.site-body .agency-escort-form-layout .auth-name-field > .auth-field-meta,
.site-body .agency-escort-form-layout .auth-about-field > .auth-field-meta {
    padding-top: 0;
}

.site-body .agency-escort-form-layout .auth-lang-block .auth-row-content,
.site-body .agency-escort-form-layout .auth-rates-block .auth-row-content,
.site-body .agency-escort-form-layout .auth-row-content .auth-rates,
.site-body .agency-escort-form-layout .auth-row-content .auth-services-grid {
    max-width: min(100%, 860px);
}

.site-body .agency-escort-form-layout .auth-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.site-body .agency-escort-form-layout .auth-grid-2 .auth-select-field,
.site-body .agency-escort-form-layout .auth-grid-2 .auth-field {
    margin-bottom: 0;
}

.site-body .agency-escort-form-layout .auth-services-grid {
    gap: 10px 24px;
}

.site-body .agency-escort-form-layout .auth-check-list {
    gap: 10px 14px;
}

.site-body .agency-escort-form-layout .auth-services-grid .auth-check {
    display: inline-flex;
    grid-column: auto;
    align-items: center;
    gap: 8px;
}

.site-body .agency-escort-form-layout label.auth-check {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.site-body .agency-escort-form-layout label.auth-check span {
    display: inline;
    margin: 0;
}

.site-body .agency-escort-form-layout .auth-services-grid .auth-check input {
    margin-top: 0;
}

.agency-logo-grid {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.agency-logo-preview {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255, 184, 220, 0.36);
    background: linear-gradient(140deg, rgba(68, 20, 45, 0.86), rgba(39, 12, 27, 0.92));
}

.agency-logo-actions {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.agency-check-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.agency-check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    border: 1px solid rgba(255, 182, 221, 0.24);
    background: rgba(68, 20, 45, 0.45);
    color: #f6d9ea;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 0.84rem;
}

.agency-check input {
    accent-color: #ff62be;
}

.agency-birth-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.agency-language-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 8px;
}

.agency-rates-wrap {
    display: grid;
    gap: 10px;
}

.agency-rates-currency {
    display: grid;
    gap: 6px;
    max-width: 280px;
}

.agency-rates-grid {
    display: grid;
    grid-template-columns: 140px repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: center;
}

.agency-rates-grid > label {
    color: #edd0df;
    font-weight: 700;
    font-size: 0.88rem;
}

.agency-rates-head {
    margin: 0;
    color: #ffeaf6;
    font-weight: 800;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.agency-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.agency-status-legend {
    display: grid;
    gap: 6px;
    margin-top: 8px;
    color: #e8c9db;
    font-size: 0.85rem;
}

.agency-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-right: 6px;
}

.agency-dot-active {
    background: #5ae89b;
}

.agency-dot-private {
    background: #ff7f7f;
}

.agency-escorts-list {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.agency-escort-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 178, 220, 0.2);
    background: linear-gradient(145deg, rgba(63, 20, 42, 0.7), rgba(33, 12, 24, 0.82));
}

.agency-escort-main h4 {
    margin: 0;
    color: #ffeaf6;
    font-size: 1rem;
}

.agency-escort-main p {
    margin: 4px 0 0;
    color: #e6c7d8;
    font-size: 0.8rem;
}

.agency-escort-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.agency-status-btn.is-active {
    border-color: rgba(130, 238, 168, 0.4);
    color: #d5ffe4;
    background: rgba(44, 111, 62, 0.3);
}

.agency-status-btn.is-private {
    border-color: rgba(255, 142, 164, 0.36);
    color: #ffdfe7;
    background: rgba(122, 37, 61, 0.3);
}

.agency-delete-btn {
    color: #ffd0dc;
    border-color: rgba(255, 119, 153, 0.38);
}

.agency-workspace-side {
    display: none;
}

.agency-account-card {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 176, 220, 0.24);
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 155, 213, 0.13), transparent 42%),
        linear-gradient(155deg, rgba(52, 18, 38, 0.88), rgba(26, 10, 20, 0.95));
    box-shadow:
        0 16px 28px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 213, 235, 0.08);
    padding: 14px;
    display: grid;
    gap: 8px;
}

.agency-account-card h3 {
    margin: 0 0 2px;
    color: #ffeaf6;
    font-size: 1.04rem;
}

.agency-account-link {
    width: 100%;
    text-align: left;
    border-radius: 10px;
    border: 1px solid rgba(255, 184, 220, 0.28);
    background: linear-gradient(145deg, rgba(83, 26, 54, 0.72), rgba(50, 16, 34, 0.84));
    color: #ffe7f4;
    padding: 10px 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition:
        transform var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        background var(--dur-base) var(--ease-premium),
        border-color var(--dur-base) var(--ease-premium),
        color var(--dur-base) var(--ease-premium);
}

.agency-account-link:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 205, 232, 0.45);
    background: linear-gradient(145deg, rgba(98, 31, 64, 0.84), rgba(58, 19, 39, 0.92));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
    color: #fff5fb;
}

.agency-account-link.is-active {
    border-color: rgba(255, 160, 212, 0.66);
    background: linear-gradient(145deg, rgba(131, 36, 84, 0.9), rgba(74, 22, 48, 0.96));
    box-shadow:
        inset 0 0 0 1px rgba(255, 196, 230, 0.2),
        0 0 18px rgba(255, 102, 185, 0.18);
    color: #fff6fc;
}

.modal-actions-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-card-ad {
    width: min(920px, 100%);
    overflow: visible;
}

#adModal.modal {
    place-items: start center;
    overflow-y: auto;
}

#adModal .modal-card-ad {
    margin: 18px 0;
}

.ad-upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 2px;
}

.ad-upload-box {
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 176, 220, 0.2);
    background: linear-gradient(145deg, rgba(52, 18, 38, 0.76), rgba(36, 13, 26, 0.82));
}

.ad-upload-box label {
    margin-top: 0;
}

.ad-upload-note {
    margin-top: 7px;
    color: #d9bfd0;
    font-size: 0.8rem;
}

.ad-media-preview {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
}

.ad-media-empty {
    grid-column: 1 / -1;
    padding: 14px;
    border-radius: 12px;
    border: 1px dashed rgba(255, 180, 220, 0.32);
    color: #dfc2d3;
    text-align: center;
    background: rgba(69, 21, 45, 0.42);
}

.ad-media-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 180, 220, 0.2);
    background: rgba(43, 14, 30, 0.86);
}

.ad-media-thumb {
    display: block;
    width: 100%;
    height: 86px;
    object-fit: cover;
}

.ad-media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 205, 233, 0.58);
    display: grid;
    place-items: center;
    color: #fff3fa;
    font-size: 0.8rem;
    font-weight: 800;
    background: rgba(24, 8, 16, 0.72);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.ad-media-remove {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 177, 221, 0.62);
    background: rgba(24, 10, 18, 0.84);
    color: #ffeef8;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.34);
    z-index: 3;
}

.ad-media-remove:hover {
    background: rgba(255, 73, 165, 0.9);
    border-color: rgba(255, 224, 241, 0.94);
}

.ad-media-badge {
    position: absolute;
    left: 6px;
    bottom: 6px;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffeefa;
    background: rgba(35, 11, 23, 0.78);
    border: 1px solid rgba(255, 180, 220, 0.3);
}

.ad-video-saved {
    display: grid;
    place-items: center;
    height: 86px;
    padding: 8px;
    text-align: center;
    color: #f1d7e7;
    font-size: 0.76rem;
    font-weight: 700;
    background: linear-gradient(145deg, rgba(66, 20, 43, 0.84), rgba(38, 13, 27, 0.9));
}

.modal-card-ad-details {
    width: min(980px, 100%);
}

.ad-details-media {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.ad-details-media-item {
    flex: 0 0 min(420px, 86vw);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 177, 220, 0.28);
    background: rgba(44, 14, 30, 0.9);
    min-height: 200px;
}

.ad-details-media-photo,
.ad-details-media-video {
    display: block;
    width: 100%;
    max-height: 420px;
    min-height: 200px;
    object-fit: cover;
    background: #24101b;
}

.ad-details-video-loading,
.ad-details-empty {
    min-height: 200px;
    display: grid;
    place-items: center;
    color: #e5c7d8;
    text-align: center;
    padding: 12px;
}

.ad-details-body {
    margin-top: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 177, 220, 0.2);
    background: linear-gradient(145deg, rgba(58, 18, 38, 0.58), rgba(34, 12, 24, 0.66));
}

.ad-details-location {
    color: #ffd5e8;
    font-size: 0.9rem;
    font-weight: 800;
}

.ad-details-text {
    margin-top: 8px;
    color: #f0d9e7;
    line-height: 1.5;
    white-space: pre-wrap;
}

.modal-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.modal-actions-end {
    justify-content: flex-end;
}

.modal-actions-center {
    justify-content: center;
}

.modal-actions-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-message {
    margin-top: 10px;
    min-height: 20px;
    color: var(--text-soft);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.agency-profile-note {
    margin-top: 14px;
}

.profile-message.success {
    color: var(--success);
}

.profile-message.error {
    color: var(--danger);
}

@media (max-width: 1000px) {
    .topbar-nav {
        display: none;
    }

    .main-layout {
        grid-template-columns: 1fr;
    }

    .countries-panel {
        position: relative;
        top: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
        height: auto;
        max-height: min(56vh, 520px);
        overflow-y: auto;
    }

    .sidebar-animated {
        transform: translateY(-12px);
    }

    .sidebar-animated.sidebar-ready {
        transform: translateY(0);
    }

    .main-content {
        padding: 30px 20px;
    }

    .ads-layout {
        grid-template-columns: 1fr;
    }

    .agency-workspace-grid {
        grid-template-columns: 1fr;
    }

    .agency-services-grid {
        grid-template-columns: 1fr;
    }

    .agency-workspace-topbar {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 12px;
    }

    .agency-workspace-topbar-actions {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .agency-workspace-topbar-actions .btn {
        flex: 1 1 160px;
        text-align: center;
    }

    .ads-banner-column {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ad-banner-card {
        min-height: 160px;
    }

    .ads-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ad-page {
        padding: 30px 20px;
    }
}

@media (max-width: 1600px) {
    .ads-layout {
        grid-template-columns: minmax(0, 1fr) 250px;
    }

    .ads-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1001px) and (max-width: 1280px) {
    .ads-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1320px) {
    .topbar-tab {
        font-size: 0.96rem;
        padding: 7px 10px;
    }
}

@media (max-width: 760px) {
    .topbar {
        padding: 0 12px;
        gap: 8px;
        height: var(--topbar-height-mobile);
    }

    .brand-logo-img {
        transform: none;
    }

    .brand-logo-link {
        width: auto;
        height: 56px;
        border-radius: 0;
        margin-left: 2px;
    }

    .topbar-actions {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .topbar-contact-link {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .topbar-contact-link svg {
        width: 18px;
        height: 18px;
    }

    .contact-page {
        padding-top: 24px;
        padding-bottom: 34px;
    }

    .contact-hero {
        gap: 10px;
        margin-bottom: 20px;
    }

    .contact-hero-icon {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }

    .contact-hero-icon svg {
        width: 28px;
        height: 28px;
    }

    .contact-card {
        padding: 16px 14px;
    }

    .contact-field input,
    .contact-field textarea {
        border-radius: 12px;
        padding: 11px 12px;
    }

    .contact-field textarea {
        min-height: 150px;
    }

    .btn {
        padding: 9px 12px;
        font-size: 0.84rem;
    }

    .profile-trigger {
        padding: 5px 8px 5px 5px;
        min-height: 40px;
    }

    .top-avatar {
        width: 30px;
        height: 30px;
    }

    .user-chip {
        max-width: 96px;
    }

    .profile-dropdown {
        width: 252px;
    }

    .profile-dropdown-head {
        padding: 8px;
    }

    .dropdown-avatar {
        width: 40px;
        height: 40px;
    }

    .dropdown-email {
        font-size: 0.74rem;
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-analytics-custom {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .admin-analytics-custom .btn {
        width: 100%;
    }

    .admin-page {
        padding: 18px;
    }

    .admin-moderation-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-moderation-filters {
        grid-template-columns: 1fr;
    }

    .admin-moderation-filter-field--wide {
        grid-column: auto;
    }

    .admin-pending-ad-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-cover {
        height: 130px;
    }

    .profile-head {
        margin-top: -40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .profile-avatar-lg {
        width: 96px;
        height: 96px;
    }

    .profile-overview {
        flex-direction: column;
        align-items: flex-start;
    }

    .ads-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ad-page {
        padding: 24px 16px;
    }

    .ad-view-layout .ad-page {
        padding: 14px 12px 20px;
    }

    .ad-owner-tools {
        padding: 10px;
        gap: 10px;
    }

    .ad-owner-actions .profile-pill-btn {
        flex: 1 1 160px;
    }

    .ad-page-stage-image,
    .ad-page-stage-video,
    .ad-page-stage-loading,
    .ad-page-stage-empty {
        min-height: clamp(220px, 44vh, 420px);
        height: clamp(220px, 44vh, 420px);
    }

    .ad-page-stage-controls {
        gap: 8px;
    }

    .ad-page-stage-controls .btn {
        flex: 1;
    }

    .ad-player-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ad-player-seek,
    .ad-player-time {
        grid-column: 1 / -1;
    }

    .ad-page-counter {
        min-width: 58px;
        font-size: 0.88rem;
    }

    .ad-upload-grid {
        grid-template-columns: 1fr;
    }

    .ad-form-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ad-form-row > label {
        padding-top: 0;
    }

    .ad-form-inline-value {
        max-width: none;
    }

    .ad-location-grid {
        grid-template-columns: 1fr;
    }

    .agency-card {
        padding: 16px 12px;
    }

    .agency-card-head-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .agency-logo-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .agency-logo-actions {
        justify-items: stretch;
        width: 100%;
    }

    .agency-logo-actions .btn {
        width: 100%;
        text-align: center;
    }

    .agency-birth-grid,
    .agency-language-grid {
        grid-template-columns: 1fr;
    }

    .agency-rates-grid {
        grid-template-columns: 1fr;
    }

    .agency-rates-head:first-child {
        display: none;
    }

    .agency-escort-item {
        grid-template-columns: 1fr;
    }

    .agency-escort-actions {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .agency-escort-actions .btn {
        flex: 1 1 120px;
    }

    .classified-composer {
        padding: 18px 14px;
    }

    .classified-composer-head {
        flex-direction: column;
        align-items: stretch;
    }

    .classified-composer-head .btn {
        width: 100%;
    }

    .modal-actions-left {
        width: 100%;
    }

    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-actions-right {
        width: 100%;
    }

    .modal-actions-right .btn,
    .modal-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@keyframes dropdown-slide-in {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes background-flow {
    0% {
        background-position: 0% 0%, 100% 100%, 0% 50%;
    }
    50% {
        background-position: 26% 16%, 80% 74%, 52% 42%;
    }
    100% {
        background-position: 10% 6%, 90% 88%, 100% 50%;
    }
}

@keyframes glare-shift {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0.2;
    }
    50% {
        transform: translate3d(0, 6px, 0);
        opacity: 0.26;
    }
    100% {
        transform: translate3d(0, -2px, 0);
        opacity: 0.2;
    }
}

@keyframes veil-drift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-12px, 10px, 0) scale(1.04);
    }
    100% {
        transform: translate3d(10px, -4px, 0) scale(1);
    }
}

@keyframes line-pulse {
    0% {
        opacity: 0.24;
    }
    50% {
        opacity: 0.72;
    }
    100% {
        opacity: 0.24;
    }
}

@keyframes text-shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes section-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes panel-breathe {
    0% {
        box-shadow: var(--shadow-xl), 0 0 36px rgba(255, 47, 146, 0.16);
    }
    50% {
        box-shadow: var(--shadow-xl), 0 0 48px rgba(255, 47, 146, 0.24);
    }
    100% {
        box-shadow: var(--shadow-xl), 0 0 36px rgba(255, 47, 146, 0.16);
    }
}

@keyframes hero-glow-drift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.38;
    }
    50% {
        transform: translate(28px, 14px) scale(1.08);
        opacity: 0.58;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.38;
    }
}

@keyframes cover-flow {
    0% {
        background-position: 0% 40%;
    }
    50% {
        background-position: 100% 62%;
    }
    100% {
        background-position: 0% 40%;
    }
}

@keyframes dropdown-bloom {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(8px) scale(1.08);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
}

@keyframes profile-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes profile-shine {
    0% {
        transform: translateX(-135%);
    }
    100% {
        transform: translateX(135%);
    }
}

@keyframes modal-border-flow {
    0% {
        filter: hue-rotate(0deg);
        opacity: 0.8;
    }
    50% {
        filter: hue-rotate(20deg);
        opacity: 1;
    }
    100% {
        filter: hue-rotate(0deg);
        opacity: 0.8;
    }
}

@keyframes modal-light-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(28px, 14px) scale(1.08);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes orb-float {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -10px, 0) scale(1.04);
    }
    100% {
        transform: translate3d(0, 8px, 0) scale(1);
    }
}

@keyframes country-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes card-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple-grow {
    from {
        transform: scale(0);
        opacity: 0.55;
    }
    to {
        transform: scale(2.2);
        opacity: 0;
    }
}

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

/* View my profile page */
.profile-view-body {
    padding: 0 24px 24px;
    display: grid;
    gap: 14px;
}

.profile-role-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 188, 224, 0.4);
    background: linear-gradient(145deg, rgba(255, 123, 194, 0.2), rgba(92, 15, 49, 0.34));
    color: #ffeaf6;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.profile-state-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.profile-role-badge-soft {
    border-color: rgba(255, 176, 220, 0.28);
    background: linear-gradient(145deg, rgba(130, 34, 77, 0.32), rgba(61, 15, 38, 0.36));
}

.profile-identity-centered {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 8px;
}

.profile-online-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c7e2d4;
    font-weight: 800;
    font-size: 0.96rem;
}

.profile-online-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #26d461;
    box-shadow: 0 0 0 5px rgba(38, 212, 97, 0.2);
}

.profile-identity-meta {
    display: grid;
    gap: 2px;
}

.profile-identity-meta p {
    color: #ebc9db;
    font-size: 0.92rem;
}

.profile-view-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.viewp-column {
    display: grid;
    gap: 12px;
    align-content: start;
}

.profile-view-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.profile-info-card {
    border: 1px solid rgba(255, 178, 220, 0.24);
    border-radius: 16px;
    padding: 14px;
    background: linear-gradient(145deg, rgba(57, 19, 38, 0.86), rgba(34, 12, 24, 0.92));
    box-shadow: inset 0 0 22px rgba(255, 123, 194, 0.08);
}

.profile-info-card-wide {
    grid-column: 1 / -1;
}

.profile-info-card h3 {
    color: #ffe5f2;
    font-size: 1rem;
    margin-bottom: 8px;
}

.profile-kv-list {
    display: grid;
    gap: 6px;
}

.profile-kv-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px dashed rgba(255, 175, 218, 0.16);
    padding-bottom: 6px;
}

.profile-kv-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.profile-kv-key {
    color: #dbb4c8;
    font-size: 0.86rem;
}

.profile-kv-value {
    color: #fff0f8;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.profile-about-text,
.profile-note-text {
    color: #f2d7e6;
    line-height: 1.45;
    white-space: pre-wrap;
}

.profile-contact-actions {
    margin-top: 10px;
}

.profile-contact-links {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-pill-btn {
    border: 0;
    border-radius: 999px;
    min-height: 38px;
    padding: 8px 20px;
    font-size: 1.06rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    transition: transform var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium), opacity var(--dur-base) var(--ease-premium);
}

.profile-pill-btn:hover {
    transform: translateY(-1px);
}

.profile-pill-btn-pink {
    background: linear-gradient(180deg, #ff5ec4 0%, #d61a89 100%);
    box-shadow: 0 8px 20px rgba(239, 38, 149, 0.34);
}

.profile-pill-btn-red {
    background: linear-gradient(180deg, #ff5757 0%, #ff0f1f 100%);
    box-shadow: 0 8px 20px rgba(255, 38, 56, 0.34);
}

.profile-safety-note {
    margin-top: 12px;
    color: #4a2945;
    line-height: 1.34;
}

.profile-rating-box {
    text-align: center;
    padding: 8px 4px;
}

.profile-rating-stars {
    color: #35b7f2;
    font-size: 3rem;
    letter-spacing: 0.06em;
    line-height: 1;
}

.profile-rating-title {
    margin-top: 8px;
    color: #2a1832;
    font-size: 2rem;
    font-weight: 800;
}

.profile-service-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #2a1832;
    font-size: 1.03rem;
    margin: 3px 0;
}

.profile-service-check {
    color: #44af5a;
    font-weight: 900;
}

.profile-reviews-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
}

.profile-reviews-main .profile-note-text {
    color: #2f1c42;
    font-size: 1.05rem;
}

.profile-reviews-title {
    padding-left: 12px;
    border-left: 4px solid #f2128a;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #f2128a;
}

.profile-reviews-actions {
    display: grid;
    gap: 10px;
    justify-items: end;
}

.ad-reviews-list {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.ad-review-item {
    border: 1px solid rgba(255, 169, 212, 0.18);
    border-radius: 12px;
    padding: 8px 10px;
    background: linear-gradient(145deg, rgba(49, 16, 34, 0.72), rgba(29, 10, 20, 0.86));
}

.ad-review-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 5px;
}

.ad-review-item-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #eed2e3;
    font-weight: 700;
    font-size: 0.87rem;
}

.ad-review-item-date {
    color: #b997aa;
    font-size: 0.78rem;
}

.ad-review-item-text {
    margin: 0;
    color: #f8e8f1;
    font-size: 0.9rem;
    line-height: 1.45;
}

.ad-feedback-modal-card {
    width: min(660px, 100%);
}

.ad-feedback-form {
    display: grid;
    gap: 12px;
}

.ad-feedback-field {
    display: grid;
    gap: 6px;
}

.ad-feedback-field > span {
    color: #f2ddec;
    font-size: 0.88rem;
    font-weight: 700;
}

.ad-feedback-field input,
.ad-feedback-field select,
.ad-feedback-field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 176, 220, 0.28);
    background: linear-gradient(145deg, rgba(40, 16, 31, 0.92), rgba(30, 12, 23, 0.94));
    color: #fff3fa;
    padding: 10px 12px;
}

.ad-feedback-field textarea {
    resize: vertical;
    min-height: 112px;
}

.ad-feedback-field input::placeholder,
.ad-feedback-field textarea::placeholder {
    color: rgba(255, 219, 239, 0.62);
}

.ad-feedback-field select option {
    color: #151523;
    background: #ffffff;
}

.profile-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-tag {
    border: 1px solid rgba(255, 182, 221, 0.3);
    border-radius: 999px;
    padding: 4px 10px;
    background: linear-gradient(145deg, rgba(255, 137, 200, 0.16), rgba(84, 15, 47, 0.28));
    color: #ffe9f5;
    font-size: 0.83rem;
    font-weight: 700;
}

.profile-rates-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-rates-table th,
.profile-rates-table td {
    padding: 7px 8px;
    border-bottom: 1px solid rgba(255, 173, 215, 0.15);
}

.profile-rates-table th {
    text-align: left;
    color: #ebc6da;
    font-weight: 700;
}

.profile-rates-table th:first-child,
.profile-rates-table td:first-child {
    width: 44%;
}

.profile-rates-table td {
    color: #fff0f8;
}

.profile-rates-table td:nth-child(2),
.profile-rates-table td:nth-child(3),
.profile-rates-table th:nth-child(2),
.profile-rates-table th:nth-child(3) {
    text-align: right;
}

.profile-mini-ads {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.profile-mini-ad {
    border: 1px solid rgba(255, 178, 220, 0.22);
    border-radius: 12px;
    padding: 10px;
    background: linear-gradient(145deg, rgba(65, 20, 44, 0.84), rgba(37, 12, 25, 0.92));
    display: grid;
    gap: 6px;
}

.profile-mini-ad-title {
    color: #ffedf8;
    font-weight: 800;
}

.profile-mini-ad-meta {
    color: #ddb7ca;
    font-size: 0.84rem;
}

.profile-mini-ad-link {
    justify-self: start;
}

.profile-empty-note {
    color: #d8b6c8;
    font-size: 0.9rem;
}

.profile-empty-note.success {
    color: var(--success);
}

.profile-empty-note.error {
    color: var(--danger);
}

.profile-section-anchor {
    scroll-margin-top: calc(var(--topbar-height) + 2px);
}

.view-profile-page .profile-shell {
    background: #f4eaf0;
    border-color: rgba(236, 166, 208, 0.48);
}

.view-profile-page .profile-cover {
    height: 132px;
    background:
        radial-gradient(circle at 24% 16%, rgba(255, 165, 208, 0.52), transparent 44%),
        radial-gradient(circle at 84% 74%, rgba(234, 77, 153, 0.36), transparent 47%),
        linear-gradient(120deg, #5d1938 0%, #7e1f4a 44%, #4e1230 100%);
}

.view-profile-page .profile-identity h2 {
    color: #f04db0;
}

.view-profile-page .profile-identity-meta p {
    color: #4b2d45;
}

.view-profile-page .profile-info-card {
    background: #efefef;
    border-color: #edd3e2;
    box-shadow: none;
}

.view-profile-page .profile-info-card h3 {
    border-left: 4px solid #f2128a;
    padding-left: 12px;
    text-transform: uppercase;
    color: #f2128a;
    letter-spacing: 0.01em;
}

.view-profile-page .profile-kv-key {
    color: #2f1c42;
    font-weight: 800;
}

.view-profile-page .profile-kv-value {
    color: #d62085;
}

.view-profile-page .profile-tag-list {
    display: grid;
    gap: 4px;
}

.view-profile-page .profile-rates-table th {
    background: linear-gradient(180deg, #f253bf 0%, #e53cae 100%);
    color: #fff;
    text-align: center;
    border-bottom: 0;
}

.view-profile-page .profile-rates-table th:first-child {
    background: transparent;
    color: #f2128a;
}

.view-profile-page .profile-rates-table td {
    color: #2a1832;
}

.view-profile-page .countries-panel {
    padding: 18px 14px 18px 16px;
    top: 0;
    height: 100vh;
    max-height: 100vh;
}

.view-profile-page .countries-panel h2 {
    margin-bottom: 12px;
    color: #f0d5e4;
    font-size: 1.2rem;
}

.view-profile-page .countries-list {
    gap: 0;
}

.view-profile-page .country-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    animation: none;
    opacity: 1;
    transform: none;
}

.view-profile-page .country-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.view-profile-page .country-btn {
    background: transparent;
    border-bottom: 1px solid rgba(255, 180, 220, 0.22);
    color: #f5d8e8;
    padding: 9px 8px 9px 22px;
    font-weight: 700;
}

.view-profile-page .country-btn::after {
    content: "\25be";
    right: auto;
    left: 4px;
    opacity: 0.92;
    font-size: 0.76rem;
}

.view-profile-page .country-btn.open::after {
    transform: translateY(-50%) rotate(-180deg);
}

.view-profile-page .country-btn:hover,
.view-profile-page .country-btn.active {
    background: rgba(255, 130, 198, 0.1);
    color: #fff0f8;
}

.view-profile-page .cities {
    background: transparent;
}

.view-profile-page .city-item {
    padding: 7px 10px 7px 32px;
    border-top: 0;
    color: #eec8db;
}

.view-profile-page .city-item:hover,
.view-profile-page .city-item.active {
    background: rgba(255, 163, 214, 0.16);
}

.view-profile-layout {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) 250px;
    align-items: start;
}

.view-profile-main {
    padding: 22px 20px 30px;
}

.view-profile-rightbar {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 14px;
    align-self: start;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 22px 16px 20px 0;
}

.view-profile-status-card {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(176, 238, 146, 0.42);
    background: linear-gradient(160deg, rgba(92, 162, 57, 0.96), rgba(69, 134, 39, 0.98));
    color: #f4ffe7;
    font-weight: 800;
    line-height: 1.35;
    padding: 14px;
    text-align: center;
}

.view-profile-account-card {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(135, 215, 255, 0.44);
    background: linear-gradient(165deg, rgba(40, 153, 205, 0.96), rgba(22, 114, 169, 0.98));
    padding: 12px;
    display: grid;
    gap: 8px;
}

.view-profile-account-card h3 {
    color: #f0fbff;
    font-size: 1.56rem;
    margin-bottom: 2px;
}

.view-profile-account-card a {
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(212, 243, 255, 0.42);
    background: rgba(255, 255, 255, 0.92);
    color: #0f4e76;
    text-decoration: none;
    padding: 9px 10px;
    font-weight: 700;
    transition: transform var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium), background var(--dur-base) var(--ease-premium);
}

.view-profile-account-card a:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(10, 62, 98, 0.2);
    background: #fff;
}

.profile-sponsor-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
    padding: 12px 18px 8px;
}

.profile-sponsor-link {
    border: 1px solid rgba(255, 113, 188, 0.62);
    border-radius: 8px;
    background: linear-gradient(160deg, rgba(43, 11, 27, 0.95), rgba(25, 6, 16, 0.98));
    color: #ff5ab7;
    text-decoration: none;
    padding: 7px 12px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium), color var(--dur-base) var(--ease-premium);
}

.profile-sponsor-link:hover {
    transform: translateY(-1px);
    color: #ff8dce;
    box-shadow: 0 8px 16px rgba(255, 52, 163, 0.22);
}

.view-profile-head {
    margin-top: 4px;
    padding: 0 24px 8px;
    align-items: center;
    justify-content: center;
}

.profile-avatar-hidden {
    display: none;
}

.profile-identity-meta-compact {
    display: none;
}

.profile-quickbar {
    margin: 4px 24px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.profile-quick-stats {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(237, 172, 212, 0.72);
    border-radius: 10px;
    padding: 10px 12px;
}

.profile-quick-stat {
    min-width: 74px;
    text-align: center;
}

.profile-quick-stat span {
    display: block;
    color: #e53cae;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
}

.profile-quick-stat.is-empty span {
    color: #8a6f84;
    font-size: 1.2rem;
    font-weight: 700;
}

.profile-quick-stat small {
    color: #6d4f65;
    font-weight: 700;
    font-size: 1.2rem;
}

.profile-quick-call small {
    display: block;
    color: #6b4660;
    font-size: 1.3rem;
}

.profile-quick-call a {
    color: #d33da1;
    font-size: 1.9rem;
    font-weight: 900;
    text-decoration: none;
    line-height: 1.1;
}

.profile-quick-call.is-empty a {
    color: #7c5d74;
    font-size: 1.2rem;
    font-weight: 700;
    pointer-events: none;
}

.profile-upload-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0 24px 14px;
}

.profile-upload-box {
    border: 2px dashed rgba(72, 191, 247, 0.72);
    border-radius: 12px;
    background: rgba(237, 246, 251, 0.42);
    color: #4f6f88;
    text-align: center;
    padding: 16px 12px;
}

.profile-upload-box h4 {
    font-size: 1.2rem;
    line-height: 1.3;
}

.profile-upload-box p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #5f768b;
}

.profile-contact-links .profile-sponsor-link {
    padding: 7px 11px;
    font-size: 0.86rem;
}

.view-profile-page #aboutSummaryMeta {
    color: #2c1b3f;
    font-weight: 800;
}

.view-profile-page #escortReviewsCount {
    color: #2f1c42;
    font-style: italic;
}

@media (max-width: 1000px) {
    .profile-view-grid {
        grid-template-columns: 1fr;
    }

    .viewp-columns {
        grid-template-columns: 1fr;
    }

    .profile-reviews-layout {
        grid-template-columns: 1fr;
    }

    .profile-reviews-actions {
        justify-items: start;
    }

    .view-profile-layout {
        grid-template-columns: 1fr;
    }

    .view-profile-main {
        padding: 18px 14px 22px;
    }

    .view-profile-rightbar {
        position: static;
        max-height: none;
        padding: 0 14px 20px;
    }

    .view-profile-head {
        margin-top: 0;
        padding: 0 12px 8px;
    }

    .profile-quickbar {
        margin: 2px 12px 12px;
    }

    .profile-identity-meta-compact {
        display: grid;
        justify-items: center;
        gap: 1px;
    }

    .profile-quick-call a {
        font-size: 1.8rem;
    }

    .profile-upload-row {
        grid-template-columns: 1fr;
        padding: 0 12px 12px;
    }
}

@media (max-width: 1280px) {
    .view-profile-layout {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    }

    .view-profile-rightbar {
        position: static;
        max-height: none;
        padding: 0 20px 20px;
        grid-column: 2;
    }
}

/* View profile: reference-like layout */
.view-profile-layout {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) 290px;
    align-items: start;
}

.view-profile-main {
    padding: 18px 20px 28px;
}

.view-profile-rightbar {
    position: sticky;
    top: calc(var(--topbar-height) + 10px);
    align-self: start;
    display: grid;
    gap: 12px;
    max-height: calc(100vh - var(--topbar-height) - 18px);
    overflow-y: auto;
    padding: 18px 16px 18px 0;
}

.view-profile-page .countries-panel {
    top: var(--topbar-height);
    height: calc(100vh - var(--topbar-height));
    max-height: calc(100vh - var(--topbar-height));
    padding: 18px 16px 18px;
    border-right: 1px solid rgba(255, 166, 211, 0.24);
}

.view-profile-page .countries-panel h2 {
    color: #f0d4e3;
}

.view-profile-page .countries-list {
    gap: 0;
}

.view-profile-page .country-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.view-profile-page .country-btn {
    background: transparent;
    border-bottom: 1px solid rgba(255, 181, 221, 0.2);
    color: #f6d6e7;
    padding: 9px 8px 9px 22px;
    font-weight: 700;
}

.view-profile-page .country-btn::after {
    content: "\25be";
    left: 5px;
    right: auto;
    font-size: 0.76rem;
}

.view-profile-page .city-item {
    padding: 7px 10px 7px 32px;
    color: #efcce0;
}

.view-profile-page .profile-shell {
    background: #f2eaf0;
    border-color: #e8cbdc;
    box-shadow: none;
    animation: none;
}

.view-profile-page .profile-cover {
    height: 96px;
    background:
        radial-gradient(circle at 22% 24%, rgba(255, 147, 199, 0.42), transparent 42%),
        linear-gradient(120deg, #5e1637 0%, #7a1c46 50%, #4d1230 100%);
}

.profile-sponsor-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
    padding: 12px 18px 8px;
}

.profile-sponsor-link {
    border: 1px solid rgba(255, 45, 152, 0.9);
    border-radius: 0;
    background: #08060a;
    color: #ff4ab1;
    text-decoration: none;
    padding: 7px 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.view-profile-head {
    margin-top: 0;
    padding: 0 18px 8px;
}

.profile-identity h2 {
    font-size: clamp(2.1rem, 3vw, 3rem);
    color: #f241aa;
}

.profile-identity-meta-compact {
    display: none;
}

.profile-quickbar {
    margin: 2px 18px 12px;
    gap: 16px;
}

.profile-quick-stats {
    background: #ece6eb;
    border: 1px solid #dfc9d8;
}

.profile-quick-stat span {
    color: #ef49b2;
}

.profile-quick-stat small,
.profile-quick-call small {
    color: #6e5267;
}

.profile-quick-call a {
    color: #d3379b;
}

.profile-upload-row {
    padding: 0 18px 12px;
}

.profile-upload-box {
    border: 2px dashed #b8bec9;
    border-radius: 0;
    background: #ecebed;
    color: #6e7a8a;
}

.profile-upload-box p {
    color: #6e7a8a;
}

.profile-view-body {
    padding: 0 18px 18px;
    gap: 10px;
}

.viewp-columns {
    gap: 10px;
}

.view-profile-page .viewp-columns {
    align-items: start;
}

.view-profile-page .profile-info-card {
    background: #ecebed;
    border: 1px solid #e2d7df;
    box-shadow: none;
}

.view-profile-page .profile-info-card h3 {
    border-left: 4px solid #f01289;
    padding-left: 10px;
    color: #f01289;
    text-transform: uppercase;
}

.view-profile-page #aboutSummaryMeta {
    color: #2f2e4d;
    font-weight: 800;
}

.view-profile-page .profile-kv-key {
    color: #f249ad;
    font-weight: 800;
    text-transform: uppercase;
}

.view-profile-page .profile-kv-value,
.view-profile-page .profile-reviews-main .profile-note-text {
    color: #2b2242;
}

.view-profile-page .profile-service-row {
    color: #ffe9f7;
    font-size: 1.08rem;
    font-weight: 600;
}

.view-profile-page .profile-service-check {
    color: #40d86d;
}

.view-profile-page .profile-tag {
    border-color: #92c274;
    background: transparent;
    color: #2a2254;
}

.view-profile-page .profile-rates-table th {
    background: linear-gradient(180deg, #f253bf 0%, #e53cae 100%);
    color: #fff;
    text-align: center;
    border-bottom: 0;
}

.view-profile-page .profile-rates-table th:first-child {
    background: transparent;
    color: #f2128a;
}

.view-profile-page .profile-rates-table td {
    color: #2b2242;
}

.view-profile-page .viewp-column:last-child #ratesEmpty {
    margin-top: 8px;
}

.profile-reviews-layout {
    grid-template-columns: 1fr auto;
    align-items: end;
}

.profile-reviews-actions {
    justify-items: end;
}

.view-profile-status-card {
    border-radius: 0;
    border: 1px solid rgba(170, 239, 104, 0.36);
    background: linear-gradient(160deg, rgba(118, 186, 56, 0.94), rgba(86, 150, 34, 0.96));
    color: #f7ffe5;
    font-weight: 800;
    line-height: 1.35;
    padding: 14px 12px;
    text-align: center;
}

.view-profile-ad-card {
    min-height: 245px;
    border-radius: 0;
    border-color: rgba(255, 178, 220, 0.24);
}

@media (max-width: 1360px) {
    .view-profile-layout {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    }

    .view-profile-rightbar {
        display: none;
    }
}

@media (max-width: 1000px) {
    .view-profile-layout {
        grid-template-columns: 1fr;
    }

    .view-profile-main {
        padding: 14px 12px 20px;
    }

    .profile-sponsor-strip {
        justify-content: flex-start;
        padding: 10px 12px 8px;
    }

    .profile-upload-row {
        grid-template-columns: 1fr;
        padding: 0 12px 12px;
    }

    .profile-view-body {
        padding: 0 12px 12px;
    }

    .viewp-columns {
        grid-template-columns: 1fr;
    }

    .profile-reviews-layout {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .profile-reviews-actions {
        justify-items: start;
    }
}

/* View profile: dark style polish */
.view-profile-page #viewProfileVerifiedBadge,
.view-profile-page .profile-sponsor-strip,
.view-profile-page .view-profile-status-card {
    display: none !important;
}

@media (min-width: 1001px) {
    .view-profile-page .countries-panel {
        top: 0;
        height: 100vh;
        max-height: 100vh;
    }
}

@media (max-width: 1000px) {
    .view-profile-page .countries-panel {
        top: auto;
        height: auto;
        max-height: min(56vh, 520px);
    }
}

.view-profile-page .profile-shell {
    background: var(--card-gradient);
    border-color: rgba(255, 173, 216, 0.3);
    box-shadow: var(--shadow-xl), var(--shadow-pink);
}

.view-profile-page .profile-cover {
    display: none;
}

.view-profile-page .view-profile-head {
    padding-top: 16px;
}

.view-profile-page .profile-identity h2 {
    color: #ffeaf6;
}

.view-profile-page .profile-quickbar {
    margin: 4px 18px 14px;
}

.view-profile-page .profile-quick-stats {
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 166, 221, 0.22), transparent 50%),
        linear-gradient(145deg, rgba(96, 32, 68, 0.82), rgba(56, 20, 40, 0.9));
    border: 1px solid rgba(255, 164, 214, 0.42);
    border-radius: 10px;
    box-shadow:
        inset 0 0 16px rgba(255, 128, 197, 0.08),
        0 10px 22px rgba(10, 3, 8, 0.36);
}

.view-profile-page .profile-quick-stat span {
    color: #e53cae;
}

.view-profile-page .profile-quick-stat small,
.view-profile-page .profile-quick-call small {
    color: #d6b5c8;
}

.view-profile-page .profile-quick-call a {
    color: #ff59be;
}

.view-profile-page .profile-upload-box {
    border: 2px dashed rgba(255, 144, 208, 0.46);
    border-radius: 12px;
    background: rgba(70, 24, 47, 0.52);
    color: #e8c8da;
}

.view-profile-page .profile-upload-box p {
    color: #d9b6c8;
}

.view-profile-page .profile-info-card {
    border: 1px solid rgba(255, 178, 220, 0.24);
    background: linear-gradient(145deg, rgba(57, 19, 38, 0.86), rgba(34, 12, 24, 0.92));
    box-shadow: inset 0 0 22px rgba(255, 123, 194, 0.08);
}

.view-profile-page .profile-info-card h3 {
    border-left: 3px solid rgba(255, 106, 188, 0.9);
    color: #ffeaf6;
    text-transform: none;
    letter-spacing: 0;
}

.view-profile-page #aboutSummaryMeta {
    color: #e4c8d7;
}

.view-profile-page .profile-kv-key {
    color: #dbb4c8;
    text-transform: none;
}

.view-profile-page .profile-kv-value,
.view-profile-page .profile-reviews-main .profile-note-text,
.view-profile-page .profile-safety-note {
    color: #f5e5ef;
}

.view-profile-page .profile-service-row {
    color: #ffe9f7;
}

.view-profile-page .profile-service-check {
    color: #40d86d;
}

.view-profile-page .profile-tag {
    border-color: rgba(164, 236, 128, 0.46);
    background: rgba(54, 90, 33, 0.2);
    color: #dcf7cb;
}

.view-profile-page .profile-rates-table td {
    color: #f5e5ef;
}

.view-profile-page .view-profile-rightbar {
    top: 0;
    height: 100vh;
    max-height: 100vh;
    padding: 0;
}

.view-profile-page .view-profile-rightbar-scroll {
    display: grid;
    gap: 12px;
    height: 100vh;
    max-height: 100vh;
    overflow-y: scroll;
    overscroll-behavior: contain;
    padding: 10px 0 10px 0;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 146, 202, 0.76) rgba(46, 12, 30, 0.78);
}

.view-profile-page .view-profile-ad-card {
    min-height: 230px;
    margin-right: 10px;
}

.view-profile-page .view-profile-ad-card:first-of-type {
    min-height: 460px;
}

.view-profile-page .view-profile-rightbar-scroll::-webkit-scrollbar {
    width: 10px;
}

.view-profile-page .view-profile-rightbar-scroll::-webkit-scrollbar-track {
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(58, 16, 37, 0.88), rgba(36, 10, 24, 0.92));
    border: 1px solid rgba(255, 165, 210, 0.18);
}

.view-profile-page .view-profile-rightbar-scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 2px solid rgba(42, 12, 28, 0.92);
    background: linear-gradient(180deg, rgba(255, 166, 214, 0.9), rgba(206, 60, 129, 0.92));
    box-shadow: 0 0 10px rgba(255, 88, 173, 0.34);
}

.view-profile-page .view-profile-rightbar-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 190, 225, 0.94), rgba(228, 84, 151, 0.95));
}

.view-profile-page .view-profile-rightbar-scroll::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}

.view-profile-page .view-profile-rightbar-scroll::-webkit-scrollbar-corner {
    background: transparent;
}

/* === Premium dark homepage refresh === */
.site-body {
    --bg-main: #0f0f13;
    --bg-panel: #1c1c24;
    --bg-surface: #1c1c24;
    --bg-surface-strong: #24242f;
    --text-main: #ffffff;
    --text-soft: #c9c9d1;
    --text-muted: #a0a0a8;
    --accent: #e5093b;
    --accent-2: #ff2e63;
    --accent-3: #b3072f;
    --premium: #c89b3c;
    --line: rgba(255, 255, 255, 0.08);
    --line-soft: rgba(255, 255, 255, 0.05);
    --shadow-xl: 0 26px 66px rgba(0, 0, 0, 0.6);
    --shadow-pink: 0 0 36px rgba(229, 9, 59, 0.22);
    --radius-sm: 12px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --card-gradient:
        radial-gradient(circle at 14% 12%, rgba(229, 9, 59, 0.12), transparent 45%),
        linear-gradient(160deg, #1c1c24, #15151c);
    color: var(--text-main);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.site-body {
    background:
        radial-gradient(1100px circle at 22% 14%, rgba(145, 73, 106, 0.34), transparent 42%),
        radial-gradient(920px circle at 82% 86%, rgba(162, 133, 94, 0.26), transparent 44%),
        radial-gradient(860px circle at 58% 34%, rgba(30, 50, 104, 0.23), transparent 48%),
        linear-gradient(132deg, #212533 0%, #171b2b 36%, #131726 64%, #232630 100%);
    background-size: 140% 140%, 140% 140%, 140% 140%, 140% 140%;
    animation: background-flow 26s ease-in-out infinite alternate;
}

body.site-body::before {
    opacity: 0.14;
    background:
        radial-gradient(ellipse at 16% 20%, rgba(255, 215, 232, 0.13), transparent 40%),
        radial-gradient(ellipse at 78% 18%, rgba(207, 214, 255, 0.09), transparent 38%),
        radial-gradient(ellipse at 72% 74%, rgba(255, 226, 176, 0.1), transparent 42%);
    animation: glare-shift 22s ease-in-out infinite;
}

body.site-body::after {
    opacity: 0.16;
    background:
        radial-gradient(circle at 50% 0%, rgba(8, 9, 14, 0.4), transparent 44%),
        radial-gradient(circle at 48% 100%, rgba(5, 6, 10, 0.64), transparent 62%);
    mix-blend-mode: multiply;
    animation: veil-drift 26s ease-in-out infinite;
}

.site-body .orb-a {
    background: #b44f7f;
    opacity: 0.24;
}

.site-body .orb-b {
    background: #b59567;
    opacity: 0.2;
}

.site-body .orb-c {
    background: #2b468f;
    opacity: 0.2;
}

.site-body .topbar {
    background: linear-gradient(180deg, rgba(22, 22, 30, 0.94), rgba(15, 15, 19, 0.96));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.6),
        0 1px 0 rgba(255, 255, 255, 0.02) inset;
    padding: 0 26px;
    gap: 18px;
    height: auto;
    min-height: var(--topbar-height);
    overflow: visible;
}

.site-body .topbar::after {
    background: linear-gradient(90deg, transparent, rgba(229, 9, 59, 0.5), transparent);
    opacity: 0.7;
}

.site-body .brand {
    background: linear-gradient(120deg, #ffffff, #f3f3f7 35%, #e5093b 70%, #c89b3c 100%);
    text-shadow: 0 0 18px rgba(229, 9, 59, 0.2);
}

.site-body .brand-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    width: auto;
    aspect-ratio: 1013 / 840;
    padding: 0;
    margin-left: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.site-body .brand-logo-img {
    width: auto;
    height: 100%;
    object-position: 50% 48%;
    filter:
        drop-shadow(0 0 16px rgba(229, 9, 59, 0.32))
        drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}

.site-body .topbar-nav {
    margin-left: 12px;
    gap: 6px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 6px 0;
    position: relative;
}

.site-body .topbar-tab {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(28, 28, 36, 0.85);
    color: var(--text-main);
    padding: 9px 14px;
    line-height: 1;
    min-height: 34px;
    transition:
        transform var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        background var(--dur-base) var(--ease-premium),
        border-color var(--dur-base) var(--ease-premium),
        color var(--dur-base) var(--ease-premium);
}

.site-body .topbar-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 38%, transparent 62%, rgba(255, 255, 255, 0.2));
    opacity: 0;
    transform: translateX(-35%);
    transition: opacity var(--dur-base) ease, transform 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.site-body .topbar-tab:hover,
.site-body .topbar-tab:focus-visible,
.site-body .topbar-tab:active {
    transform: translateY(-2px) scale(1.01);
    background: rgba(35, 35, 45, 0.95);
    border-color: rgba(229, 9, 59, 0.45);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
    color: var(--text-main);
}

.site-body .topbar-tab.active {
    border-color: rgba(229, 9, 59, 0.6);
    box-shadow: 0 0 0 2px rgba(229, 9, 59, 0.18);
    background: rgba(229, 9, 59, 0.08);
    color: var(--text-main);
}

.site-body .topbar-tab:hover::before,
.site-body .topbar-tab:focus-visible::before {
    opacity: 1;
    transform: translateX(8%);
}

.site-body .topbar-tab:hover,
.site-body .topbar-tab:focus-visible,
.site-body .topbar-tab.active {
    filter: none;
}

/* removed glow pseudo-element; glow now follows pill via box-shadow */

.site-body .btn {
    border-radius: var(--radius-sm);
}

.site-body .btn::before {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 38%, transparent 62%, rgba(255, 255, 255, 0.12));
}

.site-body .btn-primary {
    border-color: rgba(229, 9, 59, 0.6);
    background: linear-gradient(135deg, #e5093b, #b70730);
    box-shadow:
        0 12px 26px rgba(229, 9, 59, 0.32),
        0 0 26px rgba(229, 9, 59, 0.22);
}

.site-body .btn-primary:hover {
    background: linear-gradient(135deg, #ff2e63, #c10a35);
    box-shadow:
        0 18px 36px rgba(255, 46, 99, 0.45),
        0 0 32px rgba(255, 46, 99, 0.3);
}

.site-body .btn-ghost {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(28, 28, 36, 0.85);
    color: var(--text-main);
}

.site-body .btn-ghost:hover {
    border-color: rgba(229, 9, 59, 0.45);
    background: rgba(35, 35, 45, 0.95);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

.site-body .profile-trigger {
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, #1c1c24, #14141b);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.55),
        0 0 22px rgba(229, 9, 59, 0.18);
}

.site-body .profile-trigger::before {
    background: linear-gradient(118deg, transparent 32%, rgba(255, 255, 255, 0.2) 50%, transparent 66%);
    opacity: 0.28;
}

.site-body .profile-trigger:hover {
    border-color: rgba(229, 9, 59, 0.65);
    box-shadow:
        0 18px 40px rgba(229, 9, 59, 0.32),
        0 0 32px rgba(229, 9, 59, 0.24);
}

.site-body .top-avatar {
    border-color: rgba(229, 9, 59, 0.7);
    background: #1c1c24;
    box-shadow:
        0 0 0 2px rgba(229, 9, 59, 0.25),
        0 0 18px rgba(229, 9, 59, 0.25);
}

.site-body .user-chip {
    color: #ffffff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.site-body .profile-dropdown {
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(28, 28, 36, 0.98), rgba(18, 18, 24, 0.98));
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.site-body .profile-dropdown::before {
    background: radial-gradient(circle, rgba(229, 9, 59, 0.18), transparent 72%);
}

.site-body .profile-dropdown-head {
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, rgba(229, 9, 59, 0.12), rgba(28, 28, 36, 0.9));
}

.site-body .dropdown-avatar {
    border-color: rgba(255, 255, 255, 0.2);
    background: #1c1c24;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

.site-body .dropdown-nickname {
    color: #ffffff;
}

.site-body .dropdown-email {
    color: var(--text-muted);
}

.site-body .dropdown-item {
    color: var(--text-main);
}

.site-body .dropdown-item:hover {
    background: rgba(229, 9, 59, 0.12);
    color: var(--text-main);
}

.site-body .dropdown-item-premium {
    border-color: rgba(200, 155, 60, 0.55);
    background: linear-gradient(125deg, rgba(200, 155, 60, 0.25), rgba(120, 90, 30, 0.35));
    color: #f7edd0;
}

.site-body .dropdown-item-premium:hover {
    background: linear-gradient(125deg, rgba(200, 155, 60, 0.35), rgba(120, 90, 30, 0.45));
}

.site-body .dropdown-divider {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.site-body .dropdown-item-danger {
    color: #ff9bb5;
}

.site-body .dropdown-item-danger:hover {
    background: rgba(229, 9, 59, 0.18);
}

.site-body .dropdown-item:focus-visible,
.site-body .country-btn:focus-visible,
.site-body .profile-trigger:focus-visible,
.site-body .tabs button:focus-visible,
.site-body .icon-btn:focus-visible,
.site-body .btn:focus-visible {
    box-shadow:
        0 0 0 3px rgba(229, 9, 59, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.site-body .main-layout {
    column-gap: 16px;
}

.site-body .main-content {
    position: relative;
    padding: 40px 34px;
    border-radius: var(--radius-lg);
}

.site-body .main-content::before {
    display: none;
}

.site-body .main-content > * {
    position: relative;
    z-index: 1;
}

.site-body .main-content h1 {
    text-shadow:
        0 0 24px rgba(229, 9, 59, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.6);
}

.site-body .main-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.site-body .ads-layout {
    gap: 20px;
}

.site-body .ads-banner-column {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    overflow-x: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.site-body .ads-banner-column > * {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.site-body .ads-banner-column img,
.site-body .ads-banner-column video,
.site-body .ads-banner-column iframe,
.site-body .ads-banner-column embed,
.site-body .ads-banner-column object,
.site-body .ads-banner-column canvas {
    display: block;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 1000px) {
    .site-body .ads-banner-column {
        overflow-x: visible;
    }
}

.site-body .ads-section-head {
    margin-bottom: 22px;
}

.site-body .ads-section-head p {
    color: var(--text-muted);
}

.site-body .ads-grid {
    gap: 16px;
}

.site-body .ad-banner-card {
    border-radius: var(--radius-md);
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(32, 32, 42, 0.94), rgba(18, 18, 24, 0.98));
    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(229, 9, 59, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform var(--dur-base) var(--ease-premium), box-shadow var(--dur-base) var(--ease-premium);
}

.site-body .ad-banner-card:hover {
    transform: translateY(-2px);
    box-shadow:
        0 20px 36px rgba(0, 0, 0, 0.58),
        0 0 26px rgba(229, 9, 59, 0.24);
}

.site-body .ad-banner-title {
    color: #ffffff;
}

.site-body .ad-banner-size {
    color: var(--text-muted);
}

.site-body .ads-empty {
    border-color: rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 18% 12%, rgba(229, 9, 59, 0.08), transparent 48%),
        linear-gradient(160deg, rgba(30, 30, 40, 0.72), rgba(18, 18, 24, 0.9));
    color: var(--text-soft);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 20px rgba(0, 0, 0, 0.35);
}

.site-body .ad-card {
    border-color: rgba(255, 255, 255, 0.08);
    background: var(--card-gradient);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.45),
        0 0 22px rgba(229, 9, 59, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-body .ad-card-premium {
    border-color: rgba(200, 155, 60, 0.55);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.45),
        0 0 28px rgba(200, 155, 60, 0.28);
}

.site-body .ad-card:hover {
    border-color: rgba(229, 9, 59, 0.45);
    box-shadow:
        0 26px 46px rgba(0, 0, 0, 0.55),
        0 0 26px rgba(229, 9, 59, 0.24);
}

.site-body .ad-cover-wrap {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.site-body .ad-badge-premium {
    border-color: rgba(200, 155, 60, 0.7);
    background: linear-gradient(135deg, #c89b3c, #a9791f 60%, #8d6518 100%);
    color: #1a1206;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(200, 155, 60, 0.45);
}

.site-body .ad-badge-new {
    border-color: rgba(229, 9, 59, 0.7);
    background: linear-gradient(135deg, #e5093b, #ff2e63 60%, #c10a35 100%);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(229, 9, 59, 0.45);
}

.site-body .ad-cover-placeholder {
    color: var(--text-muted);
    background: linear-gradient(145deg, rgba(28, 28, 36, 0.9), rgba(16, 16, 20, 0.96));
}

.site-body .ad-owner-name {
    color: #ffffff;
}

.site-body .ad-location {
    color: var(--text-muted);
}

.site-body .ad-page-state {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(28, 28, 36, 0.92);
    color: var(--text-soft);
}

.site-body .ad-owner-tools {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(26, 26, 34, 0.86);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-body .ad-owner-status {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(28, 28, 36, 0.9);
    color: #f8f2f6;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.site-body .ad-owner-status.is-private {
    border-color: rgba(229, 9, 59, 0.62);
    background: linear-gradient(145deg, rgba(138, 15, 45, 0.9), rgba(84, 10, 31, 0.94));
}

.site-body .ad-owner-status.is-active {
    border-color: rgba(77, 189, 133, 0.58);
    background: linear-gradient(145deg, rgba(26, 99, 70, 0.86), rgba(17, 63, 47, 0.92));
}

.site-body .ad-owner-status-text {
    color: rgba(255, 255, 255, 0.86);
}

.site-body .ad-owner-action-message {
    color: var(--text-soft);
}

.site-body .ad-owner-action-message.error {
    color: #ff99aa;
}

.site-body .ad-owner-action-message.success {
    color: #95ddb8;
}

.site-body .ad-page-media-shell {
    border-color: rgba(255, 255, 255, 0.08);
    background: var(--card-gradient);
    box-shadow: var(--shadow-xl);
}

.site-body .ad-page-stage {
    border-color: rgba(255, 255, 255, 0.08);
    background: #14141b;
}

.site-body .ad-page-stage-image,
.site-body .ad-page-stage-video {
    background: #0f0f13;
}

.site-body .ad-page-stage-loading,
.site-body .ad-page-stage-empty {
    color: var(--text-soft);
}

.site-body .ad-player-bar {
    border-color: rgba(255, 255, 255, 0.08);
    background: #1c1c24;
}

.site-body .ad-player-seek,
.site-body .ad-player-volume {
    accent-color: var(--accent);
}

.site-body .ad-page-thumb {
    border-color: rgba(255, 255, 255, 0.08);
    background: #1c1c24;
}

.site-body .ad-page-thumb:hover {
    border-color: rgba(229, 9, 59, 0.45);
}

.site-body .ad-page-thumb.active {
    border-color: rgba(229, 9, 59, 0.65);
    box-shadow: 0 0 0 2px rgba(229, 9, 59, 0.2);
}

.site-body .countries-panel {
    background: linear-gradient(180deg, rgba(28, 28, 36, 0.92), rgba(18, 18, 24, 0.96));
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 12px 0 28px rgba(0, 0, 0, 0.4);
    scrollbar-color: rgba(229, 9, 59, 0.55) rgba(20, 20, 26, 0.8);
    backdrop-filter: blur(16px);
}

.site-body .countries-panel::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.site-body .countries-panel::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(22, 22, 30, 0.9), rgba(16, 16, 22, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-body .countries-panel::-webkit-scrollbar-thumb {
    border: 2px solid rgba(20, 20, 26, 0.9);
    background: linear-gradient(180deg, rgba(229, 9, 59, 0.85), rgba(144, 7, 34, 0.92));
    box-shadow: 0 0 10px rgba(229, 9, 59, 0.24);
}

.site-body .countries-panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 46, 99, 0.9), rgba(176, 9, 45, 0.95));
}

.site-body .countries-panel h2 {
    color: #ffffff;
    letter-spacing: 0.2px;
}

.site-body .sidebar-reset-btn.active {
    border-color: rgba(229, 9, 59, 0.6);
    box-shadow: 0 0 0 2px rgba(229, 9, 59, 0.18);
    background: rgba(229, 9, 59, 0.08);
}

.site-body .country-card {
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(160deg, rgba(32, 32, 42, 0.96), rgba(18, 18, 24, 0.98));
    box-shadow:
        0 12px 22px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-body .country-card:hover {
    border-color: rgba(229, 9, 59, 0.45);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.45);
}

.site-body .country-btn {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
}

.site-body .country-btn:hover,
.site-body .country-btn.active {
    background: rgba(229, 9, 59, 0.12);
    color: var(--text-main);
}

.site-body .city-item {
    color: var(--text-muted);
}

.site-body .city-item:hover,
.site-body .city-item.active {
    background: rgba(229, 9, 59, 0.12);
    color: var(--text-main);
}

.site-body .modal {
    background:
        radial-gradient(circle at 20% 10%, rgba(229, 9, 59, 0.12), transparent 35%),
        radial-gradient(circle at 80% 90%, rgba(200, 155, 60, 0.12), transparent 38%),
        rgba(10, 10, 14, 0.82);
}

.site-body .modal-card {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-xl);
}

.site-body .modal-card-premium {
    background: linear-gradient(160deg, rgba(28, 28, 36, 0.98), rgba(18, 18, 24, 0.98));
}

.site-body .modal-card-premium::before {
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.08), rgba(229, 9, 59, 0.4), rgba(200, 155, 60, 0.45));
    opacity: 0.65;
}

.site-body .modal-card-premium::after {
    background: radial-gradient(circle, rgba(229, 9, 59, 0.2), transparent 74%);
}

.site-body .modal-head h3 {
    color: #ffffff;
    text-shadow: 0 1px 12px rgba(229, 9, 59, 0.25);
}

.site-body .icon-btn {
    border-color: rgba(255, 255, 255, 0.08);
    background: #1c1c24;
}

.site-body .icon-btn:hover {
    border-color: rgba(229, 9, 59, 0.5);
    box-shadow: 0 8px 16px rgba(229, 9, 59, 0.2);
}

.site-body .profile-overview {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(28, 28, 36, 0.8);
    box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.2);
}

.site-body .overview-name {
    color: #ffffff;
}

.site-body .overview-email,
.site-body .overview-role {
    color: var(--text-muted);
}

.site-body .profile-preview {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(28, 28, 36, 0.6);
}

.site-body .profile-preview-title {
    color: #ffffff;
}

.site-body .profile-preview-subtitle {
    color: var(--text-muted);
}

.site-body .profile-form label {
    color: var(--text-soft);
}

.site-body .profile-form input[type="text"],
.site-body .profile-form input[type="email"],
.site-body .profile-form input[type="tel"],
.site-body .profile-form input[type="url"],
.site-body .profile-form input[type="number"],
.site-body .profile-form input[type="password"],
.site-body .profile-form input[type="file"],
.site-body .profile-form select,
.site-body .profile-form textarea {
    border-color: rgba(255, 255, 255, 0.1);
    background: #15151c;
    color: #ffffff;
}

.site-body .profile-form input::placeholder,
.site-body .profile-form textarea::placeholder {
    color: var(--text-muted);
}

.site-body .profile-form input[type="text"]:focus,
.site-body .profile-form input[type="email"]:focus,
.site-body .profile-form input[type="tel"]:focus,
.site-body .profile-form input[type="url"]:focus,
.site-body .profile-form input[type="number"]:focus,
.site-body .profile-form input[type="password"]:focus,
.site-body .profile-form input[type="file"]:focus,
.site-body .profile-form select:focus,
.site-body .profile-form textarea:focus {
    border-color: rgba(229, 9, 59, 0.7);
    box-shadow: 0 0 0 3px rgba(229, 9, 59, 0.2);
    background: #191922;
}

.site-body .profile-form input[type="file"]::file-selector-button,
.site-body .profile-form input[type="file"]::-webkit-file-upload-button {
    border-color: rgba(229, 9, 59, 0.5);
    background: linear-gradient(135deg, rgba(229, 9, 59, 0.32), rgba(60, 12, 24, 0.7));
    color: #ffffff;
}

.site-body .profile-form input[type="file"]:hover::file-selector-button,
.site-body .profile-form input[type="file"]:hover::-webkit-file-upload-button {
    border-color: rgba(255, 46, 99, 0.8);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.site-body .profile-form select {
    background-image:
        linear-gradient(145deg, #15151c, #15151c),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23a0a0a8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
}

.site-body .profile-form select:focus {
    background-image:
        linear-gradient(145deg, #191922, #191922),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
}

.site-body .auth-box select:disabled,
.site-body .profile-form select:disabled {
    color: var(--text-muted);
}

.site-body .auth-box select option,
.site-body .profile-form select option {
    color: #111116;
    background: #f4f4f7;
}

.site-body .admin-moderation-note {
    color: var(--text-muted);
}

.site-body .admin-pending-ad {
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(150deg, rgba(30, 30, 38, 0.96), rgba(18, 18, 24, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-body .admin-pending-ad-head h4 {
    color: #ffffff;
}

.site-body .admin-pending-ad-date,
.site-body .admin-pending-ad-meta,
.site-body .admin-pending-ads-empty {
    color: var(--text-muted);
}

.site-body .admin-pending-ad-email,
.site-body .admin-pending-ad-text {
    color: var(--text-soft);
}

.site-body .admin-pending-ad-status.is-active {
    background: rgba(25, 139, 100, 0.24);
    border-color: rgba(86, 237, 189, 0.45);
    color: #c7ffed;
}

.site-body .admin-pending-ad-status.is-private {
    background: rgba(123, 56, 86, 0.24);
    border-color: rgba(248, 168, 208, 0.45);
    color: #ffe3f1;
}

.site-body .ad-upload-box {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(28, 28, 36, 0.7);
}

.site-body .ad-location-grid > div {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(28, 28, 36, 0.7);
}

.site-body .classified-composer {
    border-color: rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 14% 12%, rgba(229, 9, 59, 0.1), transparent 52%),
        linear-gradient(160deg, rgba(32, 32, 42, 0.96), rgba(16, 16, 22, 0.99));
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.56),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-body .classified-composer-copy h2 {
    color: #ffffff;
}

.site-body .classified-composer-copy p {
    color: var(--text-muted);
}

.site-body .ad-selector-wrap {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(28, 28, 36, 0.75);
}

.site-body .ad-moderation-notice {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(28, 28, 36, 0.9);
    color: #f7f3f6;
}

.site-body .ad-moderation-notice.is-private {
    border-color: rgba(229, 9, 59, 0.62);
    background: linear-gradient(145deg, rgba(138, 15, 45, 0.9), rgba(84, 10, 31, 0.94));
}

.site-body .ad-moderation-notice.is-active {
    border-color: rgba(77, 189, 133, 0.58);
    background: linear-gradient(145deg, rgba(26, 99, 70, 0.86), rgba(17, 63, 47, 0.92));
}

.site-body .ad-form-required-note,
.site-body .ad-form-help {
    color: var(--text-muted);
}

.site-body .ad-form-section-note,
.site-body .ad-form-inline-prefix {
    color: var(--text-soft);
}

.site-body .ad-upload-note {
    color: var(--text-muted);
}

.site-footer {
    position: relative;
    z-index: 5;
    padding: 12px 24px 16px;
    background: linear-gradient(180deg, rgba(15, 15, 19, 0.98), rgba(12, 12, 16, 0.98));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer::before {
    display: none;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 6px;
}

.footer-disclaimer {
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.74rem;
    line-height: 1.5;
    box-shadow: none;
}

.footer-disclaimer p {
    margin: 0;
}

.footer-copy {
    margin-top: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2px;
}

@media (max-width: 760px) {
    .site-footer {
        padding: 10px 14px 14px;
    }

    .footer-inner {
        max-width: none;
    }

    .footer-disclaimer {
        font-size: 0.7rem;
    }
}

@media (max-width: 760px) {
    .site-body .topbar {
        padding: 0 14px;
        gap: 10px;
        min-height: var(--topbar-height-mobile);
    }

    .site-body .brand-logo-link {
        height: 56px;
        padding: 0;
        border-radius: 0;
    }

    .site-body .topbar-nav {
        margin-left: 8px;
        gap: 4px;
    }
}

/* Harmonized Palette + Animated Background Sheen */
.site-body {
    --accent: #cf3f79;
    --accent-2: #e86a9a;
    --accent-3: #7e3357;
    --accent-rgb: 207, 63, 121;
    --glow-blue-rgb: 69, 99, 191;
    --glow-gold-rgb: 168, 132, 90;
    background:
        radial-gradient(1200px circle at 15% 18%, rgba(188, 110, 145, 0.3), transparent 43%),
        radial-gradient(980px circle at 84% 78%, rgba(var(--glow-gold-rgb), 0.24), transparent 45%),
        radial-gradient(900px circle at 62% 34%, rgba(var(--glow-blue-rgb), 0.28), transparent 50%),
        linear-gradient(134deg, #1f2434 0%, #161b2d 38%, #121727 68%, #202531 100%);
    background-size: 150% 150%, 150% 150%, 150% 150%, 150% 150%;
    animation: noir-bg-pan 30s ease-in-out infinite alternate;
}

body.site-body::before {
    opacity: 0.17;
    background:
        radial-gradient(ellipse at 12% 22%, rgba(255, 218, 234, 0.16), transparent 42%),
        radial-gradient(ellipse at 78% 18%, rgba(194, 209, 255, 0.14), transparent 40%),
        radial-gradient(ellipse at 72% 78%, rgba(255, 231, 182, 0.11), transparent 44%);
    mix-blend-mode: screen;
    animation: noir-bg-aura 24s ease-in-out infinite;
}

body.site-body::after {
    opacity: 0.2;
    background:
        linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.11) 50%, transparent 70%),
        radial-gradient(circle at 48% 100%, rgba(5, 6, 10, 0.62), transparent 62%);
    background-size: 220% 220%, 100% 100%;
    background-position: -180% 0, 50% 100%;
    mix-blend-mode: soft-light;
    animation:
        noir-bg-sheen 13s linear infinite,
        veil-drift 24s ease-in-out infinite;
}

.site-body .orb-a {
    background: #bf5f8c;
    opacity: 0.26;
    animation-duration: 18s;
}

.site-body .orb-b {
    background: #a98760;
    opacity: 0.21;
    animation-duration: 20s;
}

.site-body .orb-c {
    background: #3b5aa7;
    opacity: 0.21;
    animation-duration: 16s;
}

.site-body .topbar::after {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--accent-rgb), 0.64),
        rgba(var(--glow-blue-rgb), 0.52),
        transparent
    );
}

.site-body .topbar-tab:hover,
.site-body .topbar-tab:focus-visible,
.site-body .topbar-tab:active {
    border-color: rgba(var(--accent-rgb), 0.44);
}

.site-body .topbar-tab.active {
    border-color: rgba(var(--accent-rgb), 0.62);
    box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.2);
    background: rgba(var(--accent-rgb), 0.1);
}

.site-body .btn-primary {
    border-color: rgba(var(--accent-rgb), 0.66);
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    box-shadow:
        0 12px 26px rgba(var(--accent-rgb), 0.32),
        0 0 26px rgba(var(--accent-rgb), 0.24);
}

.site-body .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-2), #b94a78);
    box-shadow:
        0 18px 36px rgba(var(--accent-rgb), 0.42),
        0 0 30px rgba(var(--accent-rgb), 0.28);
}

.site-body .btn-ghost:hover {
    border-color: rgba(var(--accent-rgb), 0.4);
}

.site-body .profile-trigger:hover {
    border-color: rgba(var(--accent-rgb), 0.6);
    box-shadow:
        0 18px 40px rgba(var(--accent-rgb), 0.3),
        0 0 30px rgba(var(--accent-rgb), 0.22);
}

.site-body .dropdown-item:hover {
    background: rgba(var(--accent-rgb), 0.13);
}

.site-body .dropdown-item-danger:hover {
    background: rgba(var(--accent-rgb), 0.2);
}

.site-body .dropdown-item:focus-visible,
.site-body .country-btn:focus-visible,
.site-body .profile-trigger:focus-visible,
.site-body .tabs button:focus-visible,
.site-body .icon-btn:focus-visible,
.site-body .btn:focus-visible {
    box-shadow:
        0 0 0 3px rgba(var(--accent-rgb), 0.34),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.site-body .ad-banner-card {
    background:
        radial-gradient(circle at 74% 18%, rgba(var(--glow-blue-rgb), 0.16), transparent 46%),
        radial-gradient(circle at 16% 82%, rgba(var(--accent-rgb), 0.1), transparent 40%),
        linear-gradient(160deg, rgba(32, 34, 48, 0.95), rgba(16, 18, 28, 0.98));
}

.site-body .ads-empty {
    background:
        radial-gradient(circle at 18% 16%, rgba(var(--accent-rgb), 0.12), transparent 48%),
        radial-gradient(circle at 84% 26%, rgba(var(--glow-blue-rgb), 0.12), transparent 46%),
        linear-gradient(160deg, rgba(28, 30, 42, 0.78), rgba(16, 18, 28, 0.92));
}

.site-body .ad-card:hover {
    border-color: rgba(var(--accent-rgb), 0.48);
    box-shadow:
        0 26px 46px rgba(0, 0, 0, 0.55),
        0 0 28px rgba(var(--accent-rgb), 0.24);
}

.site-body .ad-page-thumb:hover {
    border-color: rgba(var(--accent-rgb), 0.48);
}

.site-body .ad-page-thumb.active {
    border-color: rgba(var(--accent-rgb), 0.64);
    box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.2);
}

.site-body .countries-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.84), rgba(110, 48, 86, 0.92));
    box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.28);
}

.site-body .countries-panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.94), rgba(138, 58, 104, 0.95));
}

.site-body .sidebar-reset-btn.active,
.site-body .country-btn:hover,
.site-body .country-btn.active,
.site-body .city-item:hover,
.site-body .city-item.active {
    background: rgba(var(--accent-rgb), 0.14);
}

.site-body .country-card:hover {
    border-color: rgba(var(--accent-rgb), 0.44);
}

.site-body .icon-btn:hover {
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow: 0 8px 16px rgba(var(--accent-rgb), 0.2);
}

@keyframes noir-bg-pan {
    0% {
        background-position: 6% 10%, 84% 86%, 64% 34%, 0% 50%;
    }
    50% {
        background-position: 24% 18%, 74% 72%, 56% 42%, 52% 46%;
    }
    100% {
        background-position: 12% 14%, 90% 92%, 66% 28%, 100% 54%;
    }
}

@keyframes noir-bg-aura {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.13;
    }
    50% {
        transform: translate3d(-10px, 8px, 0) scale(1.03);
        opacity: 0.2;
    }
    100% {
        transform: translate3d(8px, -6px, 0) scale(1);
        opacity: 0.14;
    }
}

@keyframes noir-bg-sheen {
    0% {
        background-position: -180% 0, 50% 100%;
    }
    100% {
        background-position: 220% 0, 50% 100%;
    }
}

/* Perfect Polish: Topbar + Countries Panel */
.site-body .topbar {
    position: relative;
    background: linear-gradient(180deg, rgba(23, 26, 39, 0.94), rgba(14, 17, 28, 0.97));
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.36),
        0 1px 0 rgba(255, 255, 255, 0.03) inset;
    backdrop-filter: blur(16px);
}

.site-body .topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 9% 0%, rgba(var(--accent-rgb), 0.22), transparent 36%),
        radial-gradient(circle at 74% 100%, rgba(var(--glow-blue-rgb), 0.18), transparent 40%);
    opacity: 0.56;
}

.site-body .topbar > * {
    position: relative;
    z-index: 1;
}

.site-body .topbar-nav {
    gap: 7px;
    padding: 7px 0;
}

.site-body .topbar-tab {
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.24);
    letter-spacing: 0.15px;
    font-weight: 700;
}

.site-body .topbar-tab::before {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 36%, transparent 64%, rgba(255, 255, 255, 0.18));
}

.site-body .topbar-tab:hover,
.site-body .topbar-tab:focus-visible,
.site-body .topbar-tab:active {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb), 0.55);
    background: linear-gradient(165deg, rgba(var(--accent-rgb), 0.2), rgba(32, 24, 37, 0.9));
    box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.4),
        0 0 22px rgba(var(--accent-rgb), 0.2);
}

.site-body .topbar-tab.active {
    border-color: rgba(var(--accent-rgb), 0.74);
    background: linear-gradient(155deg, rgba(var(--accent-rgb), 0.24), rgba(48, 25, 42, 0.94));
    box-shadow:
        0 0 0 2px rgba(var(--accent-rgb), 0.2),
        0 0 24px rgba(var(--accent-rgb), 0.22);
}

.site-body .countries-panel {
    position: sticky;
    top: 0;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 121, 179, 0.72) rgba(18, 23, 38, 0.64);
    background:
        linear-gradient(180deg, rgba(24, 27, 40, 0.94), rgba(13, 16, 26, 0.97));
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        10px 0 22px rgba(0, 0, 0, 0.28),
        inset -1px 0 0 rgba(255, 255, 255, 0.02);
}

.site-body .countries-panel::-webkit-scrollbar {
    width: 9px;
}

.site-body .countries-panel::-webkit-scrollbar-track {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(18, 23, 38, 0.88), rgba(11, 15, 27, 0.92));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.site-body .countries-panel::-webkit-scrollbar-thumb {
    border-radius: 12px;
    border: 2px solid rgba(14, 18, 30, 0.94);
    background:
        linear-gradient(180deg, rgba(255, 104, 167, 0.92), rgba(121, 78, 191, 0.9));
    box-shadow:
        0 4px 12px rgba(255, 84, 160, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.site-body .countries-panel::-webkit-scrollbar-thumb:hover {
    background:
        linear-gradient(180deg, rgba(255, 131, 186, 0.96), rgba(140, 95, 215, 0.94));
    box-shadow:
        0 8px 16px rgba(255, 102, 174, 0.34),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.site-body .countries-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 8%, rgba(var(--accent-rgb), 0.16), transparent 32%),
        radial-gradient(circle at 86% 78%, rgba(var(--glow-blue-rgb), 0.16), transparent 38%);
}

.site-body .countries-panel > * {
    position: relative;
    z-index: 1;
}

.site-body .countries-panel h2 {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e6ebfd;
    font-size: 0.95rem;
    font-weight: 760;
    letter-spacing: 0.48px;
    line-height: 1.1;
    text-transform: uppercase;
}

.site-body .countries-panel h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.34), rgba(var(--glow-blue-rgb), 0.3), transparent);
}

.site-body .sidebar-reset-btn {
    border-color: rgba(var(--accent-rgb), 0.55);
    background: linear-gradient(140deg, rgba(var(--accent-rgb), 0.26), rgba(49, 24, 41, 0.94));
    color: #ffffff;
    box-shadow:
        0 10px 18px rgba(var(--accent-rgb), 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-body .sidebar-reset-btn:hover {
    border-color: rgba(var(--accent-rgb), 0.72);
    background: linear-gradient(140deg, rgba(var(--accent-rgb), 0.34), rgba(63, 29, 53, 0.98));
}

.site-body .sidebar-reset-btn.active {
    box-shadow:
        0 0 0 2px rgba(var(--accent-rgb), 0.24),
        0 12px 24px rgba(var(--accent-rgb), 0.22);
}

.site-body .country-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: linear-gradient(165deg, rgba(33, 36, 52, 0.96), rgba(17, 20, 30, 0.98));
    box-shadow:
        0 12px 22px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-body .country-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 12%, rgba(var(--glow-blue-rgb), 0.16), transparent 40%),
        radial-gradient(circle at 88% 88%, rgba(var(--accent-rgb), 0.14), transparent 42%);
    opacity: 0.8;
}

.site-body .country-card > * {
    position: relative;
    z-index: 1;
}

.site-body .country-card:hover {
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.4),
        0 0 22px rgba(var(--accent-rgb), 0.2);
}

.site-body .country-btn {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    color: #f4f7ff;
    padding: 12px 40px 12px 14px;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.16px;
}

.site-body .country-btn::after {
    right: 12px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.92rem;
    line-height: 1;
    opacity: 0.95;
    transition:
        transform 0.34s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        color 0.28s ease;
}

.site-body .country-btn:hover,
.site-body .country-btn.active {
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.2), rgba(44, 24, 40, 0.9));
}

.site-body .country-btn:hover::after,
.site-body .country-btn.active::after,
.site-body .country-btn.open::after {
    border-color: rgba(var(--accent-rgb), 0.66);
    background: rgba(var(--accent-rgb), 0.2);
    color: #ffd9e8;
}

.site-body .cities {
    background: linear-gradient(180deg, rgba(14, 17, 28, 0.98), rgba(10, 12, 20, 0.99));
}

.site-body .city-item {
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    color: #aeb3ca;
    font-weight: 600;
    letter-spacing: 0.1px;
    padding-left: 16px;
}

.site-body .city-item:hover,
.site-body .city-item.active {
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.18), rgba(var(--glow-blue-rgb), 0.08));
    color: #ffffff;
}

@media (max-width: 760px) {
    .site-body .topbar-tab {
        border-radius: 11px;
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .site-body .countries-panel h2 {
        font-size: 0.92rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 1000px) {
    .site-body .topbar-nav {
        display: none;
    }

    .site-body .countries-panel {
        position: relative;
        top: auto;
        height: auto;
        max-height: none;
        overflow: visible;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        scrollbar-gutter: auto;
    }

    .site-body .countries-panel::before {
        display: none;
    }
}

/* Geometric refinement (less rounded) */
.site-body {
    --radius-sm: 10px;
    --radius-md: 10px;
    --radius-lg: 12px;
}

.site-body .topbar-tab {
    border-radius: 8px;
}

.site-body .btn,
.site-body .profile-trigger,
.site-body .country-card,
.site-body .ad-banner-card,
.site-body .ads-empty,
.site-body .ad-card {
    border-radius: 10px;
}

.site-body .country-btn {
    border-radius: 9px;
}

/* Footer facelift */
.site-body .site-footer {
    position: relative;
    margin-top: 0;
    padding: 10px 18px 12px;
    background: linear-gradient(180deg, rgba(9, 12, 19, 0.9), rgba(7, 9, 14, 0.96));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 -10px 20px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-body .site-footer::before {
    display: block;
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--accent-rgb), 0.7),
        rgba(var(--glow-blue-rgb), 0.52),
        transparent
    );
    opacity: 0.68;
}

.site-body .site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(720px circle at 78% -28%, rgba(var(--glow-blue-rgb), 0.1), transparent 60%),
        radial-gradient(520px circle at 16% -18%, rgba(var(--accent-rgb), 0.1), transparent 58%);
    opacity: 0.58;
}

.site-body .footer-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: block;
}

.site-body .footer-disclaimer {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 0 8px;
    border-left: 0;
    color: #c4cbe0;
    font-size: 0.84rem;
    line-height: 1.56;
    text-wrap: pretty;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: left;
}

.site-body .footer-copy {
    margin-top: 0;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #e2e8f8;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.16px;
    white-space: normal;
}

@media (max-width: 760px) {
    .site-body .topbar-tab {
        border-radius: 7px;
    }

    .site-body .btn,
    .site-body .profile-trigger,
    .site-body .country-card,
    .site-body .ad-banner-card,
    .site-body .ads-empty,
    .site-body .ad-card {
        border-radius: 9px;
    }

    .site-body .site-footer {
        margin-top: 0;
        padding: 9px 10px 10px;
    }

    .site-body .footer-inner {
        display: block;
    }

    .site-body .footer-disclaimer {
        max-width: none;
        font-size: 0.76rem;
        line-height: 1.44;
        padding-bottom: 7px;
    }

    .site-body .footer-copy {
        text-align: center;
        font-size: 0.78rem;
        white-space: normal;
        padding-top: 7px;
    }
}

/* Seam fix between countries panel and footer */
.site-body .main-layout {
    margin-bottom: 0;
}

/* Plaques v2: clean premium refinement */
.site-body .topbar-nav {
    gap: 10px;
}

.site-body .topbar-tab {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 12px;
    border: 1px solid rgba(199, 214, 255, 0.22);
    background:
        radial-gradient(circle at 84% 18%, rgba(96, 125, 255, 0.2), transparent 42%),
        radial-gradient(circle at 14% 82%, rgba(233, 70, 128, 0.15), transparent 44%),
        linear-gradient(160deg, rgba(27, 32, 51, 0.95), rgba(16, 20, 34, 0.98));
    color: #f3f6ff;
    font-weight: 720;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        inset 0 -14px 22px rgba(6, 8, 16, 0.24),
        0 7px 14px rgba(0, 0, 0, 0.22);
    transition:
        transform var(--dur-base) var(--ease-premium),
        border-color var(--dur-base) var(--ease-premium),
        background var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        color var(--dur-base) var(--ease-premium),
        filter var(--dur-base) var(--ease-premium);
}

.site-body .topbar-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(112deg, transparent 14%, rgba(255, 255, 255, 0.2) 34%, transparent 58%);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.65s ease, opacity 0.45s ease;
    pointer-events: none;
    z-index: 0;
}

.site-body .topbar-tab > * {
    position: relative;
    z-index: 1;
}

.site-body .topbar-tab::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 2px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--accent-rgb), 0.86),
        rgba(var(--glow-blue-rgb), 0.76),
        transparent
    );
    opacity: 0;
    transition: opacity var(--dur-base) var(--ease-premium);
}

.site-body .topbar-tab:hover,
.site-body .topbar-tab:focus-visible {
    transform: translateY(-2px) scale(1.01);
    border-color: rgba(var(--accent-rgb), 0.55);
    background:
        radial-gradient(circle at 84% 18%, rgba(103, 132, 255, 0.27), transparent 42%),
        radial-gradient(circle at 14% 82%, rgba(var(--accent-rgb), 0.23), transparent 46%),
        linear-gradient(160deg, rgba(34, 29, 48, 0.97), rgba(21, 21, 35, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -16px 24px rgba(8, 9, 18, 0.25),
        0 10px 18px rgba(0, 0, 0, 0.3),
        0 0 14px rgba(var(--accent-rgb), 0.19);
    color: #ffffff;
}

.site-body .topbar-tab:hover::before,
.site-body .topbar-tab:focus-visible::before {
    opacity: 0.95;
    transform: translateX(118%);
}

.site-body .topbar-tab:hover::after,
.site-body .topbar-tab:focus-visible::after,
.site-body .topbar-tab.active::after {
    opacity: 1;
}

.site-body .topbar-tab.active {
    border-color: rgba(var(--accent-rgb), 0.74);
    background:
        radial-gradient(circle at 84% 18%, rgba(118, 144, 255, 0.3), transparent 42%),
        radial-gradient(circle at 14% 82%, rgba(var(--accent-rgb), 0.26), transparent 45%),
        linear-gradient(160deg, rgba(42, 32, 53, 0.98), rgba(22, 19, 33, 0.99));
    box-shadow:
        inset 2px 0 0 rgba(var(--accent-rgb), 0.96),
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        0 0 0 1px rgba(var(--accent-rgb), 0.2),
        0 0 18px rgba(var(--accent-rgb), 0.24),
        0 8px 18px rgba(0, 0, 0, 0.28);
    color: #ffffff;
}

.site-body .topbar-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    line-height: 1.05;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.16px;
    -webkit-tap-highlight-color: transparent;
    transition:
        background var(--dur-base) var(--ease-premium),
        border-color var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        color var(--dur-base) var(--ease-premium);
}

.site-body .topbar-actions .btn::before {
    display: none;
}

.site-body .topbar-actions .btn:hover,
.site-body .topbar-actions .btn:focus-visible {
    transform: translateY(-1px);
}

.site-body .topbar-actions .btn:active {
    transform: translateY(0);
}

.site-body .topbar-actions .btn:focus {
    outline: none;
}

.site-body .topbar-actions .btn-ghost {
    position: relative;
    overflow: hidden;
    border-color: rgba(197, 210, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
        linear-gradient(150deg, rgba(25, 30, 47, 0.92), rgba(16, 20, 33, 0.96));
    color: #ecf1ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.2);
}

.site-body .topbar-actions .btn-ghost::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 2px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--accent-rgb), 0.86),
        rgba(var(--glow-blue-rgb), 0.76),
        transparent
    );
    opacity: 0;
    transition: opacity var(--dur-base) var(--ease-premium);
    pointer-events: none;
}

.site-body .topbar-actions .btn-ghost:hover,
.site-body .topbar-actions .btn-ghost:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(var(--accent-rgb), 0.42);
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.14), rgba(var(--glow-blue-rgb), 0.07)),
        linear-gradient(150deg, rgba(31, 27, 43, 0.94), rgba(20, 21, 34, 0.97));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 16px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(var(--accent-rgb), 0.16);
}

.site-body .topbar-actions .btn-ghost:hover::after,
.site-body .topbar-actions .btn-ghost:focus-visible::after {
    opacity: 1;
}

.site-body .topbar-actions .btn-ghost:active {
    transform: translateY(0);
}

.site-body .topbar-actions .btn-ghost:focus-visible {
    border-color: rgba(197, 210, 255, 0.26);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
        linear-gradient(150deg, rgba(25, 30, 47, 0.92), rgba(16, 20, 33, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(var(--accent-rgb), 0.18);
}

.site-body .topbar-actions .btn-ghost:focus-visible::after,
.site-body .topbar-actions .btn-ghost:active::after {
    opacity: 0;
}

.site-body .btn-ghost {
    border-color: rgba(197, 210, 255, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        linear-gradient(150deg, rgba(25, 30, 47, 0.92), rgba(16, 20, 33, 0.96));
    color: #ecf1ff;
}

.site-body .btn-ghost:hover {
    border-color: rgba(var(--accent-rgb), 0.48);
}

.site-body .btn-primary {
    border-color: rgba(var(--accent-rgb), 0.76);
    background: linear-gradient(135deg, #cf3f79, #a33f6f 52%, #7f3357 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 12px 22px rgba(var(--accent-rgb), 0.3),
        0 0 18px rgba(var(--accent-rgb), 0.2);
}

.site-body .btn-primary:hover {
    background: linear-gradient(135deg, #e66897, #b34a7a 54%, #8a3b61 100%);
}

.site-body .topbar-actions .btn-primary {
    border-color: rgba(var(--accent-rgb), 0.74);
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 255, 255, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.28), rgba(94, 32, 74, 0.86)),
        linear-gradient(150deg, rgba(54, 24, 45, 0.98), rgba(40, 20, 34, 0.99));
    color: #fff6fb;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 8px rgba(52, 16, 39, 0.44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 8px 14px rgba(var(--accent-rgb), 0.22),
        0 0 10px rgba(var(--accent-rgb), 0.16);
}

.site-body .topbar-actions .btn-primary::before {
    display: none;
}

.site-body .topbar-actions .btn-primary::after {
    display: none;
}

.site-body .topbar-actions .btn-primary:hover,
.site-body .topbar-actions .btn-primary:focus-visible {
    border-color: rgba(var(--accent-rgb), 0.88);
    background:
        radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.2), transparent 46%),
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.38), rgba(116, 38, 90, 0.88)),
        linear-gradient(150deg, rgba(65, 28, 53, 1), rgba(49, 24, 41, 1));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 10px 18px rgba(var(--accent-rgb), 0.28),
        0 0 14px rgba(var(--accent-rgb), 0.22);
}

.site-body .topbar-actions .btn-primary:hover::before,
.site-body .topbar-actions .btn-primary:focus-visible::before {
    display: none;
}

.site-body .topbar-actions .btn-primary:active {
    transform: translateY(0) scale(1);
}

.site-body .topbar-actions .btn,
.site-body .topbar-actions .btn:hover,
.site-body .topbar-actions .btn:focus-visible,
.site-body .topbar-actions .btn:active {
    transform: none;
}

.site-body .sidebar-reset-btn {
    min-height: 42px;
    border-radius: 10px;
    border-color: rgba(var(--accent-rgb), 0.5);
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.18), rgba(var(--glow-blue-rgb), 0.07)),
        linear-gradient(150deg, rgba(34, 27, 43, 0.95), rgba(22, 19, 31, 0.97));
    color: #eff3ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 7px 14px rgba(0, 0, 0, 0.24);
}

.site-body .sidebar-reset-btn:hover {
    border-color: rgba(var(--accent-rgb), 0.62);
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.24), rgba(var(--glow-blue-rgb), 0.1)),
        linear-gradient(150deg, rgba(39, 31, 49, 0.97), rgba(25, 22, 36, 0.98));
}

.site-body .sidebar-reset-btn.active {
    border-color: rgba(var(--accent-rgb), 0.76);
    box-shadow:
        inset 2px 0 0 rgba(var(--accent-rgb), 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 18px rgba(var(--accent-rgb), 0.22);
}

.site-body .country-card {
    border-radius: 10px;
    border: 1px solid rgba(193, 206, 255, 0.13);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
        linear-gradient(150deg, rgba(24, 30, 48, 0.94), rgba(15, 19, 31, 0.97));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 8px 14px rgba(0, 0, 0, 0.22);
}

.site-body .country-card::before {
    opacity: 0.42;
    background:
        radial-gradient(circle at 11% 12%, rgba(var(--glow-blue-rgb), 0.18), transparent 42%),
        radial-gradient(circle at 86% 84%, rgba(var(--accent-rgb), 0.16), transparent 44%);
}

.site-body .country-card:hover {
    border-color: rgba(var(--accent-rgb), 0.38);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 12px 20px rgba(0, 0, 0, 0.28),
        0 0 12px rgba(var(--accent-rgb), 0.14);
}

.site-body .country-btn {
    position: relative;
    min-height: 42px;
    padding: 0 42px 0 14px;
    border-radius: 10px;
    background: transparent;
    color: #e6ecfb;
    font-size: 0.96rem;
    font-weight: 680;
    letter-spacing: 0.1px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.26);
}

.site-body .country-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    bottom: 7px;
    width: 1.5px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.82), rgba(var(--glow-blue-rgb), 0.7));
    opacity: 0;
    transform: scaleY(0.64);
    transition:
        opacity var(--dur-base) var(--ease-premium),
        transform var(--dur-base) var(--ease-premium);
}

.site-body .country-btn:hover,
.site-body .country-btn.active,
.site-body .country-btn.open {
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.12), rgba(var(--glow-blue-rgb), 0.07));
}

.site-body .country-btn.active,
.site-body .country-btn.open {
    box-shadow: inset 2px 0 0 rgba(var(--accent-rgb), 0.88);
}

.site-body .country-btn:hover::before,
.site-body .country-btn.active::before {
    opacity: 0.78;
    transform: scaleY(1);
}

.site-body .country-btn.active::before,
.site-body .country-btn.open::before {
    opacity: 1;
}

.site-body .country-btn::after {
    border-color: rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-body .country-btn:hover::after,
.site-body .country-btn.active::after,
.site-body .country-btn.open::after {
    border-color: rgba(var(--accent-rgb), 0.72);
    background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.2), rgba(var(--glow-blue-rgb), 0.08));
}

.site-body .city-item {
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    color: #9ea9c3;
    font-weight: 560;
}

.site-body .city-item:hover,
.site-body .city-item.active {
    color: #ecf1ff;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.16), rgba(var(--glow-blue-rgb), 0.07));
}

.site-body .ad-banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(193, 206, 255, 0.14);
    background:
        radial-gradient(circle at 82% 16%, rgba(var(--glow-blue-rgb), 0.13), transparent 46%),
        radial-gradient(circle at 14% 84%, rgba(var(--accent-rgb), 0.12), transparent 42%),
        linear-gradient(160deg, rgba(25, 30, 47, 0.95), rgba(15, 19, 31, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -18px 28px rgba(6, 9, 16, 0.22),
        0 14px 24px rgba(0, 0, 0, 0.34);
}

.site-body .ad-banner-card:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -20px 30px rgba(6, 9, 16, 0.24),
        0 16px 28px rgba(0, 0, 0, 0.38),
        0 0 14px rgba(var(--accent-rgb), 0.14);
}

.site-body .ad-banner-title {
    color: #dbe3fd;
    font-weight: 760;
    letter-spacing: 0.08px;
}

.site-body .ad-banner-size {
    color: #9ea9c3;
    letter-spacing: 0.24px;
}

@media (max-width: 760px) {
    .site-body .topbar-tab {
        border-radius: 8px;
        font-size: 0.88rem;
    }

    .site-body .topbar-actions .btn {
        height: 38px;
        border-radius: 8px;
    }
}

/* Auth Unified Theme */
.auth-page-body {
    --accent-rgb: 207, 63, 121;
    --glow-blue-rgb: 69, 99, 191;
    min-height: 100vh;
    display: grid;
    place-items: start center;
    padding: 24px;
    background:
        radial-gradient(1200px circle at 14% 20%, rgba(188, 110, 145, 0.28), transparent 44%),
        radial-gradient(920px circle at 84% 78%, rgba(166, 129, 89, 0.22), transparent 46%),
        radial-gradient(900px circle at 62% 34%, rgba(var(--glow-blue-rgb), 0.26), transparent 52%),
        linear-gradient(134deg, #1f2434 0%, #161b2d 38%, #121727 68%, #202531 100%);
    background-size: 150% 150%, 150% 150%, 150% 150%, 150% 150%;
    animation: noir-bg-pan 30s ease-in-out infinite alternate;
}

.auth-page-body::before {
    opacity: 0.15;
    background:
        radial-gradient(ellipse at 14% 22%, rgba(255, 218, 234, 0.16), transparent 42%),
        radial-gradient(ellipse at 80% 18%, rgba(194, 209, 255, 0.13), transparent 40%),
        radial-gradient(ellipse at 72% 78%, rgba(255, 231, 182, 0.1), transparent 44%);
}

.auth-page-body::after {
    opacity: 0.18;
    background:
        linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%),
        radial-gradient(circle at 48% 100%, rgba(5, 6, 10, 0.62), transparent 62%);
    background-size: 220% 220%, 100% 100%;
    background-position: -180% 0, 50% 100%;
    animation:
        noir-bg-sheen 13s linear infinite,
        veil-drift 24s ease-in-out infinite;
}

.auth-page-body .orb-a {
    background: #bf5f8c;
    opacity: 0.24;
}

.auth-page-body .orb-b {
    background: #3b5aa7;
    opacity: 0.2;
}

.auth-wrapper {
    width: min(980px, 100%);
    max-width: 980px;
}

.back-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid rgba(197, 210, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
        linear-gradient(150deg, rgba(25, 30, 47, 0.92), rgba(16, 20, 33, 0.96));
    color: #ecf1ff;
    font-weight: 700;
    letter-spacing: 0.15px;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.2);
}

.back-home:hover {
    border-color: rgba(var(--accent-rgb), 0.46);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 16px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(var(--accent-rgb), 0.16);
}

.auth-box {
    border: 1px solid rgba(193, 206, 255, 0.16);
    border-radius: 12px;
    padding: 28px;
    background:
        radial-gradient(circle at 84% 16%, rgba(var(--glow-blue-rgb), 0.12), transparent 46%),
        radial-gradient(circle at 14% 84%, rgba(var(--accent-rgb), 0.12), transparent 42%),
        linear-gradient(160deg, rgba(25, 30, 47, 0.94), rgba(15, 19, 31, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 34px rgba(0, 0, 0, 0.34);
    animation: none;
}

.auth-box::after {
    display: none;
}

.auth-box h2 {
    margin-bottom: 18px;
    color: #ecf1ff;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 14px rgba(20, 26, 44, 0.45);
}

.tabs button {
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(197, 210, 255, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        linear-gradient(150deg, rgba(25, 30, 47, 0.92), rgba(16, 20, 33, 0.96));
    color: #ecf1ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 6px 12px rgba(0, 0, 0, 0.2);
}

.tabs button:hover {
    border-color: rgba(var(--accent-rgb), 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 16px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(var(--accent-rgb), 0.16);
}

.tabs .active {
    border-color: rgba(var(--accent-rgb), 0.78);
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.3), rgba(116, 38, 90, 0.9)),
        linear-gradient(150deg, rgba(65, 28, 53, 1), rgba(49, 24, 41, 1));
    box-shadow:
        inset 2px 0 0 rgba(var(--accent-rgb), 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 18px rgba(var(--accent-rgb), 0.24);
}

#loginForm input,
.auth-box input,
.auth-box select,
.auth-textarea {
    border: 1px solid rgba(193, 206, 255, 0.18);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(150deg, rgba(22, 28, 45, 0.95), rgba(14, 18, 30, 0.97));
    color: #ecf1ff;
}

.auth-box input::placeholder,
.auth-box textarea::placeholder {
    color: #9ea9c3;
}

.auth-box select {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(150deg, rgba(22, 28, 45, 0.95), rgba(14, 18, 30, 0.97)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23d6dff9' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, center, right 12px center;
    background-size: 100% 100%, 100% 100%, 11px 11px;
}

.auth-box select option {
    color: #e8eeff;
    background: #1a2237;
}

.auth-box input:focus,
.auth-box select:focus,
.auth-textarea:focus {
    border-color: rgba(var(--accent-rgb), 0.72);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        linear-gradient(150deg, rgba(24, 30, 49, 0.96), rgba(15, 20, 34, 0.98));
    outline: none;
}

.auth-box select:focus {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        linear-gradient(150deg, rgba(24, 30, 49, 0.96), rgba(15, 20, 34, 0.98)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23eef3ff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, center, right 12px center;
    background-size: 100% 100%, 100% 100%, 11px 11px;
}

.auth-field label,
.auth-select-field label,
.auth-row-label,
.auth-date-meta label,
.auth-check-title,
.auth-rate-currency label {
    color: #dbe3fd;
}

.auth-field small,
.auth-row-label-with-help small,
.auth-date-meta small,
.auth-lang-head span {
    color: #9ea9c3;
}

.required-star {
    color: #ff6fae;
}

.auth-check {
    color: #dbe3fd;
}

.auth-check input[type="checkbox"] {
    border-color: rgba(193, 206, 255, 0.3);
    border-radius: 6px;
    background: linear-gradient(145deg, rgba(26, 33, 53, 0.95), rgba(16, 22, 38, 0.98));
}

.auth-check input[type="checkbox"]:checked {
    border-color: rgba(var(--accent-rgb), 0.86);
    background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.92), rgba(116, 38, 90, 0.96));
    box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.2);
}

.auth-check input[type="radio"] {
    accent-color: rgb(var(--accent-rgb));
}

.auth-lang-block .auth-row-content,
.auth-rates-block .auth-row-content {
    border: 1px solid rgba(193, 206, 255, 0.14);
    background: linear-gradient(145deg, rgba(20, 26, 42, 0.72), rgba(14, 18, 30, 0.8));
}

.auth-rate-row span {
    color: #c4cee8;
}

.auth-box button[type="submit"] {
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(var(--accent-rgb), 0.74);
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.3), rgba(116, 38, 90, 0.9)),
        linear-gradient(150deg, rgba(65, 28, 53, 1), rgba(49, 24, 41, 1));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 10px 18px rgba(var(--accent-rgb), 0.24);
}

.auth-box button[type="submit"]:hover {
    transform: none;
    border-color: rgba(var(--accent-rgb), 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 12px 22px rgba(var(--accent-rgb), 0.3);
}

#authMessage {
    color: #9ea9c3;
}

.auth-resend {
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(197, 210, 255, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        linear-gradient(150deg, rgba(25, 30, 47, 0.92), rgba(16, 20, 33, 0.96));
    color: #ecf1ff;
}

.auth-resend:hover {
    transform: none;
    border-color: rgba(var(--accent-rgb), 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 16px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(var(--accent-rgb), 0.16);
}

@media (max-width: 980px) {
    .auth-page-body {
        padding: 16px;
    }

    .auth-wrapper {
        max-width: 860px;
    }
}

@media (max-width: 760px) {
    .auth-box {
        padding: 18px;
    }

    .auth-field,
    .auth-select-field,
    .auth-row,
    .auth-check-group,
    .auth-radio-group {
        grid-template-columns: 1fr;
        row-gap: 8px;
    }

    .auth-field label,
    .auth-field small,
    .auth-select-field label,
    .auth-check-title,
    .auth-row-label,
    .auth-date-meta {
        grid-column: 1;
    }

    .auth-field input,
    .auth-field textarea,
    .auth-field select,
    .auth-field .smart-select,
    .auth-select-field input,
    .auth-select-field select,
    .auth-select-field .smart-select,
    .auth-row-content {
        grid-column: 1;
        max-width: 100%;
    }

    .auth-lang-head,
    .auth-lang-item {
        grid-template-columns: 1fr;
    }

    .auth-rate-head,
    .auth-rate-row {
        grid-template-columns: 1fr;
    }

    .auth-rate-row span {
        text-align: left;
    }

    .auth-services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Auth Refinement v2: clean layout + dropdowns */
.auth-page-body .auth-field,
.auth-page-body .auth-select-field,
.auth-page-body .auth-row,
.auth-page-body .auth-check-group,
.auth-page-body .auth-radio-group {
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-bottom: 14px;
}

.auth-page-body .auth-field label,
.auth-page-body .auth-field small,
.auth-page-body .auth-select-field label,
.auth-page-body .auth-check-title,
.auth-page-body .auth-row-label,
.auth-page-body .auth-date-meta {
    grid-column: 1;
}

.auth-page-body .auth-field input,
.auth-page-body .auth-field textarea,
.auth-page-body .auth-field select,
.auth-page-body .auth-field .smart-select,
.auth-page-body .auth-select-field input,
.auth-page-body .auth-select-field select,
.auth-page-body .auth-select-field .smart-select,
.auth-page-body .auth-row-content {
    grid-column: 1;
    max-width: 100%;
}

.auth-page-body .auth-name-field > .auth-field-meta,
.auth-page-body .auth-about-field > .auth-field-meta {
    padding-top: 0;
}

.auth-page-body .auth-row-content .auth-rates,
.auth-page-body .auth-row-content .auth-services-grid,
.auth-page-body .auth-lang-block .auth-row-content,
.auth-page-body .auth-rates-block .auth-row-content {
    max-width: 100%;
}

.auth-page-body .auth-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.auth-page-body .auth-grid-2 .auth-select-field,
.auth-page-body .auth-grid-2 .auth-field {
    margin-bottom: 0;
}

.auth-page-body .smart-select {
    z-index: 6;
}

.auth-page-body .smart-select-trigger {
    min-height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(193, 206, 255, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(150deg, rgba(22, 28, 45, 0.95), rgba(14, 18, 30, 0.97));
    color: #ecf1ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    transform: none;
}

.auth-page-body .smart-select-trigger:hover {
    transform: none;
    border-color: rgba(var(--accent-rgb), 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 8px 14px rgba(0, 0, 0, 0.24);
}

.auth-page-body .smart-select.open .smart-select-trigger {
    border-color: rgba(var(--accent-rgb), 0.7);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 3px rgba(var(--accent-rgb), 0.18);
}

.auth-page-body .smart-select-arrow {
    color: #d3dcf8;
}

.auth-page-body .smart-select-menu {
    top: calc(100% + 6px);
    max-height: 260px;
    border-radius: 10px;
    border: 1px solid rgba(193, 206, 255, 0.2);
    background:
        radial-gradient(circle at 12% 10%, rgba(var(--accent-rgb), 0.12), transparent 42%),
        radial-gradient(circle at 88% 90%, rgba(var(--glow-blue-rgb), 0.14), transparent 44%),
        linear-gradient(160deg, rgba(21, 27, 43, 0.98), rgba(12, 17, 29, 0.99));
    box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 6px;
}

.auth-page-body .smart-select-option {
    border-radius: 8px;
    padding: 9px 10px;
    color: #dbe3fd;
    transform: none;
}

.auth-page-body .smart-select-option:hover {
    background: rgba(var(--accent-rgb), 0.16);
    color: #f3f6ff;
    transform: none;
}

.auth-page-body .smart-select-option.active {
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.24), rgba(var(--glow-blue-rgb), 0.12));
    color: #ffffff;
}

.auth-page-body .smart-select-empty {
    color: #9ea9c3;
}

.auth-page-body .register-role-picker {
    margin: 0 0 18px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(193, 206, 255, 0.18);
    background:
        radial-gradient(circle at 80% 16%, rgba(var(--glow-blue-rgb), 0.14), transparent 48%),
        radial-gradient(circle at 16% 84%, rgba(var(--accent-rgb), 0.14), transparent 44%),
        linear-gradient(160deg, rgba(21, 27, 43, 0.92), rgba(12, 17, 29, 0.96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 22px rgba(0, 0, 0, 0.28);
}

.auth-page-body .register-role-picker__head {
    margin-bottom: 10px;
    color: #dbe3fd;
    font-size: 0.84rem;
    font-weight: 760;
    letter-spacing: 0.24px;
    text-transform: uppercase;
}

.auth-page-body .register-role-picker__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.auth-page-body .register-role-card {
    width: 100%;
    display: grid;
    gap: 5px;
    text-align: left;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(193, 206, 255, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(150deg, rgba(20, 26, 43, 0.95), rgba(13, 18, 31, 0.97));
    color: #cbd7f7;
    font: inherit;
    cursor: pointer;
    transition:
        border-color var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        background var(--dur-base) var(--ease-premium),
        transform var(--dur-base) var(--ease-premium),
        color var(--dur-base) var(--ease-premium);
}

.auth-page-body .register-role-card:hover {
    border-color: rgba(var(--accent-rgb), 0.5);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 18px rgba(0, 0, 0, 0.28);
    transform: translateY(-1px);
}

.auth-page-body .register-role-card.is-active {
    border-color: rgba(var(--accent-rgb), 0.8);
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.3), rgba(116, 38, 90, 0.9)),
        linear-gradient(150deg, rgba(65, 28, 53, 1), rgba(49, 24, 41, 1));
    color: #ffffff;
    box-shadow:
        inset 2px 0 0 rgba(var(--accent-rgb), 0.92),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 12px 22px rgba(var(--accent-rgb), 0.24);
}

.auth-page-body .register-role-card__title {
    color: inherit;
    font-size: 0.95rem;
    font-weight: 780;
    line-height: 1.15;
}

.auth-page-body .register-role-card__point {
    position: relative;
    padding-left: 14px;
    color: inherit;
    font-size: 0.74rem;
    line-height: 1.4;
    opacity: 0.9;
}

.auth-page-body .register-role-card__point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(166, 186, 246, 0.82);
    transform: translateY(-50%);
}

.auth-page-body .register-role-card.is-active .register-role-card__point::before {
    background: rgba(255, 255, 255, 0.96);
}

@media (max-width: 980px) {
    .auth-page-body .register-role-picker__grid {
        grid-template-columns: 1fr;
    }

    .auth-page-body .auth-grid-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Homepage ad promos */
.site-body .ad-promo {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 16px;
}

.site-body .ad-promo:hover {
    text-decoration: none;
}

.site-body .ad-promo--of {
    min-height: 600px;
    background:
        radial-gradient(circle at 84% 18%, rgba(0, 175, 240, 0.2), transparent 44%),
        radial-gradient(circle at 14% 86%, rgba(var(--accent-rgb), 0.16), transparent 44%),
        linear-gradient(160deg, rgba(18, 28, 45, 0.96), rgba(10, 16, 30, 0.98));
}

.site-body .ad-promo--ph {
    min-height: 250px;
    background:
        radial-gradient(circle at 86% 16%, rgba(255, 157, 0, 0.22), transparent 46%),
        radial-gradient(circle at 14% 86%, rgba(var(--accent-rgb), 0.14), transparent 44%),
        linear-gradient(160deg, rgba(28, 26, 34, 0.96), rgba(15, 15, 22, 0.98));
}

.site-body .ad-promo-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.site-body .ad-promo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #edf2ff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16px;
    text-transform: uppercase;
}

.site-body .ad-promo-brand {
    color: #edf2ff;
    font-size: 0.94rem;
    font-weight: 780;
    letter-spacing: 0.2px;
}

.site-body .ad-promo-title {
    margin: 2px 0 0;
    color: #ffffff;
    font-size: 1.34rem;
    font-weight: 800;
    line-height: 1.06;
}

.site-body .ad-promo-copy {
    margin: 0;
    color: #bdc8e6;
    font-size: 0.9rem;
    line-height: 1.45;
}

.site-body .ad-promo-profiles {
    width: 100%;
    display: grid;
    gap: 8px;
    margin-top: 2px;
}

.site-body .ad-model {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 8px;
    border: 1px solid rgba(193, 206, 255, 0.14);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        linear-gradient(150deg, rgba(21, 26, 42, 0.9), rgba(13, 18, 31, 0.96));
}

.site-body .ad-model-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.26);
}

.site-body .ad-model-avatar--1 {
    background: linear-gradient(140deg, #f58fb7, #3b5aa7);
}

.site-body .ad-model-avatar--2 {
    background: linear-gradient(140deg, #f2a86f, #8a3b61);
}

.site-body .ad-model-avatar--3 {
    background: linear-gradient(140deg, #6dc5ff, #6e4ed1);
}

.site-body .ad-model-avatar--4 {
    background: linear-gradient(140deg, #ffd275, #c34f7e);
}

.site-body .ad-model-body {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.site-body .ad-model-name {
    margin: 0;
    color: #f3f7ff;
    font-size: 0.93rem;
    font-weight: 760;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.site-body .ad-model-meta {
    margin: 0;
    color: #9ea9c3;
    font-size: 0.77rem;
    font-weight: 620;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-body .ad-model-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18px;
    text-transform: uppercase;
    flex: 0 0 auto;
}

.site-body .ad-model-status--free {
    border: 1px solid rgba(93, 221, 154, 0.56);
    background: rgba(37, 155, 93, 0.22);
    color: #9df4c8;
}

.site-body .ad-model-status--online {
    border: 1px solid rgba(86, 206, 255, 0.56);
    background: rgba(50, 129, 214, 0.24);
    color: #afe8ff;
}

.site-body .ad-promo-list {
    margin: 4px 0 0;
    padding-left: 16px;
    display: grid;
    gap: 5px;
    color: #d9e2fb;
    font-size: 0.82rem;
    font-weight: 620;
}

.site-body .ad-promo-list li::marker {
    color: rgba(var(--accent-rgb), 0.92);
}

.site-body .ad-promo-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(var(--accent-rgb), 0.58);
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.22), rgba(var(--glow-blue-rgb), 0.1)),
        linear-gradient(150deg, rgba(40, 31, 56, 0.95), rgba(23, 22, 35, 0.98));
    color: #f4f7ff;
    font-size: 0.82rem;
    font-weight: 780;
    letter-spacing: 0.22px;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 14px rgba(0, 0, 0, 0.24);
}

.site-body .ad-promo-cta--full {
    width: 100%;
    justify-content: center;
}

.site-body .ad-promo--ph .ad-promo-cta {
    border-color: rgba(255, 157, 0, 0.66);
    background:
        linear-gradient(180deg, rgba(255, 157, 0, 0.26), rgba(150, 90, 8, 0.36)),
        linear-gradient(150deg, rgba(43, 34, 29, 0.95), rgba(26, 23, 20, 0.98));
}

.site-body .ad-promo .ad-banner-size {
    margin-top: 8px;
    color: #93a0c4;
    font-size: 0.78rem;
}

.site-body .ad-sale-card {
    min-height: 0;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 320px;
    justify-self: center;
    padding: 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    background:
        radial-gradient(circle at 82% 12%, rgba(var(--glow-blue-rgb), 0.18), transparent 48%),
        radial-gradient(circle at 12% 90%, rgba(var(--accent-rgb), 0.16), transparent 44%),
        linear-gradient(160deg, rgba(30, 30, 40, 0.95), rgba(18, 18, 24, 0.99));
}

.site-body .ad-sale-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #edf2ff;
    font-size: 0.73rem;
    font-weight: 780;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.site-body .ad-sale-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.12;
}

.site-body .ad-sale-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.42;
}

.site-body .ad-sale-btn {
    margin-top: auto;
    min-height: 38px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(var(--accent-rgb), 0.58);
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb), 0.24), rgba(var(--glow-blue-rgb), 0.12)),
        linear-gradient(150deg, rgba(42, 31, 56, 0.95), rgba(25, 23, 36, 0.98));
    color: #f7f9ff;
    font-size: 0.84rem;
    font-weight: 780;
    letter-spacing: 0.22px;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 8px 16px rgba(0, 0, 0, 0.3);
    opacity: 1;
    cursor: default;
}

.site-body .ad-sale-btn:disabled {
    opacity: 1;
    cursor: not-allowed;
}

.site-body .ads-banner-column--sale {
    grid-template-columns: 1fr;
}

@media (max-width: 1600px) {
    .site-body .ad-promo--of {
        min-height: 520px;
    }
}

@media (max-width: 1000px) {
    .site-body .ad-promo--of,
    .site-body .ad-promo--ph {
        min-height: 200px;
    }
}



/* Edit profile: aligned to main site neon-noir palette */
.profile-edit-page.site-body {
    animation: none;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 102, 178, 0.18), transparent 34%),
        linear-gradient(140deg, #141925 0%, #1b2031 45%, #171b2a 100%);
}

.profile-edit-page.site-body::before,
.profile-edit-page.site-body::after {
    content: none;
    animation: none;
}

.profile-edit-page .orb {
    display: none;
}

.profile-edit-page .topbar {
    backdrop-filter: none;
}

.profile-edit-page .profile-shell {
    border-color: rgba(193, 206, 255, 0.16);
    background:
        radial-gradient(circle at 14% 10%, rgba(var(--accent-rgb, 207, 63, 121), 0.12), transparent 38%),
        radial-gradient(circle at 86% 84%, rgba(var(--glow-blue-rgb, 69, 99, 191), 0.12), transparent 42%),
        linear-gradient(150deg, rgba(24, 30, 48, 0.94), rgba(15, 19, 31, 0.97));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 34px rgba(0, 0, 0, 0.34),
        0 0 18px rgba(var(--accent-rgb, 207, 63, 121), 0.12);
}

.profile-edit-page .profile-cover {
    position: relative;
    height: 214px;
    background:
        radial-gradient(circle at 18% 24%, rgba(var(--accent-rgb, 207, 63, 121), 0.42), transparent 42%),
        radial-gradient(circle at 78% 22%, rgba(var(--glow-blue-rgb, 69, 99, 191), 0.34), transparent 46%),
        linear-gradient(125deg, #1f2332 0%, #20263b 42%, #171c2d 100%);
}

.profile-edit-page .profile-cover::after {
    display: none;
}

/* Topbar stability guard:
   keeps header elements from overlapping when locale/buttons are long */
.site-body .topbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 14px;
    row-gap: 0;
    height: auto;
    min-height: var(--topbar-height);
    padding-top: 8px;
    padding-bottom: 8px;
}

.site-body .brand-link {
    min-width: 0;
}

.site-body .topbar-nav {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.site-body .topbar-nav::-webkit-scrollbar {
    display: none;
}

.site-body .topbar-actions {
    min-width: 0;
    margin-left: 0;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
}

.site-body .topbar-actions > * {
    flex: 0 0 auto;
}

.site-body .topbar-tab {
    font-size: clamp(0.88rem, 0.18vw + 0.82rem, 0.98rem);
    padding-inline: clamp(10px, 0.9vw, 17px);
}

.site-body .topbar-actions .btn {
    font-size: clamp(0.88rem, 0.2vw + 0.8rem, 1rem);
    padding-inline: clamp(10px, 1vw, 16px);
}

@media (max-width: 1000px) {
    .site-body .topbar {
        grid-template-columns: auto 1fr;
        min-height: var(--topbar-height-mobile);
        row-gap: 0;
    }

    .site-body .topbar-actions {
        overflow: visible;
        padding-bottom: 0;
    }
}

.profile-edit-page .profile-edit-head {
    margin-top: -114px;
    padding: 0 24px 6px;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    transform: translateY(-54px);
}

.profile-edit-page .avatar-edit-btn {
    bottom: 6px;
    border-color: rgba(197, 210, 255, 0.26);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(150deg, rgba(25, 30, 47, 0.94), rgba(16, 20, 33, 0.97));
    color: #ecf1ff;
}

.profile-edit-page .avatar-edit-btn:hover {
    border-color: rgba(var(--accent-rgb, 207, 63, 121), 0.55);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.34),
        0 0 12px rgba(var(--accent-rgb, 207, 63, 121), 0.22);
}

.profile-edit-page .profile-edit-quickbar {
    margin: 2px 18px 16px;
    display: grid;
    grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.profile-edit-page .profile-quick-stats {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(193, 206, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        linear-gradient(150deg, rgba(25, 30, 47, 0.94), rgba(16, 20, 33, 0.97));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.26);
    padding: 14px 16px;
    gap: 14px;
}

.profile-edit-page .profile-quick-stats::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 2px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--accent-rgb, 207, 63, 121), 0.8),
        rgba(var(--glow-blue-rgb, 69, 99, 191), 0.7),
        transparent
    );
    opacity: 0.7;
}

.profile-edit-page .profile-quick-stat {
    min-width: 106px;
}

.profile-edit-page .profile-quick-stat span {
    color: #ff80c1;
    font-size: clamp(1.92rem, 2.6vw, 2.45rem);
    letter-spacing: 0.02em;
    text-shadow: 0 0 12px rgba(var(--accent-rgb, 207, 63, 121), 0.34);
}

.profile-edit-page .profile-quick-stat small {
    margin-top: 2px;
    color: #a8b3cf;
    font-size: 0.92rem;
    font-weight: 760;
    letter-spacing: 0.04em;
    text-transform: lowercase;
}

.profile-edit-page .profile-quick-call {
    display: grid;
    gap: 2px;
    justify-items: start;
}

.profile-edit-page .profile-quick-call small {
    color: #96a5c8;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: lowercase;
}

.profile-edit-page .profile-quick-call a {
    color: #ff67b2;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    text-shadow: 0 0 15px rgba(var(--accent-rgb, 207, 63, 121), 0.28);
}

.profile-edit-page .profile-quick-call.is-empty a {
    color: #8e9ab9;
    font-size: 1.15rem;
    font-weight: 700;
}

.profile-edit-page .profile-edit-upload-row {
    margin: 0 18px 14px;
    padding: 0;
    gap: 12px;
}

.profile-edit-page .profile-edit-upload-box {
    position: relative;
    overflow: hidden;
    text-align: left;
    border: 1px solid rgba(193, 206, 255, 0.14);
    border-radius: 14px;
    background:
        radial-gradient(circle at 12% 10%, rgba(var(--accent-rgb, 207, 63, 121), 0.14), transparent 44%),
        radial-gradient(circle at 88% 86%, rgba(var(--glow-blue-rgb, 69, 99, 191), 0.12), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
        linear-gradient(150deg, rgba(24, 30, 48, 0.94), rgba(15, 19, 31, 0.97));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.24);
    color: #a8b3cf;
    padding: 16px 16px 14px;
}

.profile-edit-page .profile-edit-upload-box h4 {
    color: #e8eefc;
    font-size: 1.62rem;
    line-height: 1.14;
    font-weight: 780;
}

.profile-edit-page .profile-edit-upload-box p {
    margin-top: 8px;
    color: #9aa6c5;
    font-size: 0.98rem;
}

.profile-edit-page .profile-edit-upload-box p b {
    color: #ff73b9;
}

.profile-edit-page .profile-edit-upload-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.profile-edit-page .profile-edit-upload-actions .btn {
    min-height: 42px;
    border-radius: 10px;
    padding: 0 18px;
    border: 1px solid rgba(197, 210, 255, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        linear-gradient(150deg, rgba(25, 30, 47, 0.92), rgba(16, 20, 33, 0.96));
    color: #ecf1ff;
    font-size: 1rem;
    font-weight: 760;
    letter-spacing: 0.16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 7px 14px rgba(0, 0, 0, 0.24);
}

.profile-edit-page .profile-edit-upload-actions .btn:hover {
    border-color: rgba(var(--accent-rgb, 207, 63, 121), 0.5);
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb, 207, 63, 121), 0.14), rgba(var(--glow-blue-rgb, 69, 99, 191), 0.07)),
        linear-gradient(150deg, rgba(31, 27, 43, 0.94), rgba(20, 21, 34, 0.97));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 10px 16px rgba(0, 0, 0, 0.3),
        0 0 12px rgba(var(--accent-rgb, 207, 63, 121), 0.16);
}

.profile-edit-page .profile-edit-upload-actions .btn + .btn {
    color: #cdd8f5;
}

.profile-edit-page .profile-upload-count {
    margin-left: auto;
    color: #d698bd;
    font-size: 0.97rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.profile-edit-page .profile-media-preview {
    margin-top: 14px;
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
}

.profile-edit-page .ad-media-empty {
    min-height: 64px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(var(--accent-rgb, 207, 63, 121), 0.35);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(var(--accent-rgb, 207, 63, 121), 0.16), rgba(var(--glow-blue-rgb, 69, 99, 191), 0.09)),
        linear-gradient(150deg, rgba(34, 27, 43, 0.95), rgba(22, 19, 31, 0.97));
    color: #dfdff1;
    text-align: center;
    font-weight: 620;
    font-size: 1rem;
}

.profile-edit-page .ad-media-tile.profile-media-tile {
    min-height: 102px;
    border-radius: 12px;
    border-color: rgba(197, 210, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
        linear-gradient(150deg, rgba(21, 24, 35, 0.94), rgba(14, 16, 25, 0.98));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.profile-edit-page .ad-media-thumb,
.profile-edit-page .ad-video-saved {
    height: 102px;
}

.profile-edit-page .profile-media-remove {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb, 207, 63, 121), 0.62);
    background: rgba(18, 15, 28, 0.84);
    color: #ffd9ec;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.32);
}

.profile-edit-page .profile-media-remove:hover {
    background: rgba(var(--accent-rgb, 207, 63, 121), 0.88);
    border-color: rgba(255, 222, 240, 0.96);
}

.profile-edit-page .profile-edit-view-body {
    padding: 0 18px 18px;
}

.profile-edit-page .profile-edit-form .profile-info-card {
    border: 1px solid rgba(193, 206, 255, 0.14);
    background:
        radial-gradient(circle at 12% 10%, rgba(var(--accent-rgb, 207, 63, 121), 0.1), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
        linear-gradient(150deg, rgba(24, 30, 48, 0.94), rgba(15, 19, 31, 0.97));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 8px 14px rgba(0, 0, 0, 0.22);
    content-visibility: visible;
    contain: none;
    contain-intrinsic-size: auto;
}

.profile-edit-page .profile-edit-form .auth-grid-2,
.profile-edit-page .profile-edit-form .auth-select-field,
.profile-edit-page .profile-edit-form .smart-select {
    overflow: visible;
}

.profile-edit-page .profile-edit-form .auth-select-field {
    position: relative;
    z-index: 4;
}

.profile-edit-page .profile-edit-form .auth-select-field:focus-within,
.profile-edit-page .profile-edit-form .auth-select-field:has(.smart-select.open) {
    z-index: 26000;
}

.profile-edit-page .profile-edit-form .smart-select.open {
    z-index: 26010;
}

.profile-edit-page .profile-edit-form .smart-select.open .smart-select-menu {
    z-index: 26020;
}

.profile-edit-page .profile-edit-form .profile-info-card h3 {
    border-left: 3px solid rgba(var(--accent-rgb, 207, 63, 121), 0.86);
    padding-left: 10px;
    color: #eff3ff;
}

.profile-edit-page .profile-edit-save-card {
    margin-top: 0;
}

@media (max-width: 1240px) {
    .profile-edit-page .profile-edit-quickbar {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 8px;
    }
}

@media (max-width: 1000px) {
    .profile-edit-page .profile-edit-head {
        margin-top: -72px;
        padding: 0 12px 8px;
        align-items: flex-start;
        transform: translateY(-24px);
    }

    .profile-edit-page .profile-edit-quickbar {
        margin: 2px 12px 12px;
    }

    .profile-edit-page .profile-edit-upload-row {
        margin: 0 12px 12px;
    }

    .profile-edit-page .profile-edit-upload-box {
        padding: 14px 12px 12px;
    }

    .profile-edit-page .profile-edit-upload-box h4 {
        font-size: 1.42rem;
    }

    .profile-edit-page .profile-edit-upload-actions .btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.95rem;
    }

    .profile-edit-page .profile-upload-count {
        margin-left: 0;
    }

    .profile-edit-page .profile-edit-view-body {
        padding: 0 12px 12px;
    }
}

/* Edit profile: layout stabilization and consistent form grid */
.profile-edit-page .profile-page {
    max-width: 1120px;
}

.profile-edit-page .main-content.profile-page {
    padding-top: 28px;
    padding-bottom: 28px;
}

.profile-edit-page .profile-edit-form {
    --auth-label-column: 170px;
    --auth-column-gap: 18px;
    --auth-rate-label-column: 132px;
}

.profile-edit-page .profile-edit-form .auth-field,
.profile-edit-page .profile-edit-form .auth-select-field,
.profile-edit-page .profile-edit-form .auth-row,
.profile-edit-page .profile-edit-form .auth-check-group,
.profile-edit-page .profile-edit-form .auth-radio-group {
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-bottom: 14px;
}

.profile-edit-page .profile-edit-form .auth-field label,
.profile-edit-page .profile-edit-form .auth-field small,
.profile-edit-page .profile-edit-form .auth-select-field label,
.profile-edit-page .profile-edit-form .auth-check-title,
.profile-edit-page .profile-edit-form .auth-row-label,
.profile-edit-page .profile-edit-form .auth-date-meta {
    grid-column: 1;
}

.profile-edit-page .profile-edit-form .auth-field input,
.profile-edit-page .profile-edit-form .auth-field textarea,
.profile-edit-page .profile-edit-form .auth-field select,
.profile-edit-page .profile-edit-form .auth-field .smart-select,
.profile-edit-page .profile-edit-form .auth-select-field input,
.profile-edit-page .profile-edit-form .auth-select-field select,
.profile-edit-page .profile-edit-form .auth-select-field .smart-select,
.profile-edit-page .profile-edit-form .auth-row-content {
    grid-column: 1;
    max-width: 100%;
}

.profile-edit-page .profile-edit-form .auth-name-field > .auth-field-meta,
.profile-edit-page .profile-edit-form .auth-about-field > .auth-field-meta {
    padding-top: 0;
}

.profile-edit-page .profile-edit-form .auth-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.profile-edit-page .profile-edit-form .auth-grid-2 .auth-select-field,
.profile-edit-page .profile-edit-form .auth-grid-2 .auth-field {
    margin-bottom: 0;
}

.profile-edit-page .profile-edit-form .auth-row-content .auth-rates,
.profile-edit-page .profile-edit-form .auth-row-content .auth-services-grid,
.profile-edit-page .profile-edit-form .auth-lang-block .auth-row-content,
.profile-edit-page .profile-edit-form .auth-rates-block .auth-row-content {
    max-width: 100%;
}

.profile-edit-page .profile-edit-form .auth-lang-block .auth-row-content,
.profile-edit-page .profile-edit-form .auth-rates-block .auth-row-content {
    padding: 12px;
}

.profile-edit-page .profile-edit-form .auth-lang-head {
    grid-template-columns: 1fr 160px;
}

.profile-edit-page .profile-edit-form .auth-lang-item {
    grid-template-columns: minmax(0, 1fr) 160px;
}

.profile-edit-page .profile-edit-form .auth-rate-head,
.profile-edit-page .profile-edit-form .auth-rate-row {
    grid-template-columns: minmax(86px, 0.9fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
}

.profile-edit-page .profile-edit-form .auth-rate-head span {
    font-size: 0.84rem;
    letter-spacing: 0.02em;
}

.profile-edit-page .profile-edit-form .auth-rate-row span {
    text-align: left;
    padding-right: 0;
    color: #bfc9e5;
    font-size: 0.82rem;
}

.profile-edit-page .profile-edit-form .auth-services-grid {
    display: block;
    column-count: 2;
    column-gap: 14px;
    margin-bottom: 10px;
}

.profile-edit-page .profile-edit-form .auth-services-grid .auth-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    width: 100%;
    margin: 0 0 8px;
    break-inside: avoid;
    padding: 7px 9px;
    border: 1px solid rgba(193, 206, 255, 0.14);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
        linear-gradient(150deg, rgba(21, 27, 43, 0.9), rgba(14, 18, 30, 0.94));
    font-size: 0.84rem;
    line-height: 1.25;
}

.profile-edit-page .profile-edit-form .auth-services-grid .auth-check span {
    color: #d9e2fb;
}

.profile-edit-page .profile-edit-form .auth-services-grid .auth-check input:checked + span {
    color: #ffe1f0;
    font-weight: 700;
}

.profile-edit-page .profile-edit-form .auth-services-grid .auth-check input {
    width: 15px;
    height: 15px;
    margin-top: 1px;
}

.profile-edit-page .profile-edit-save-card .modal-actions {
    justify-content: space-between;
}

@media (max-width: 1120px) {
    .profile-edit-page .profile-page {
        max-width: 980px;
    }
}

@media (max-width: 980px) {
    .profile-edit-page .profile-page {
        max-width: 100%;
    }

    .profile-edit-page .profile-edit-form .auth-grid-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .profile-edit-page .profile-edit-form .auth-lang-head,
    .profile-edit-page .profile-edit-form .auth-lang-item {
        grid-template-columns: 1fr;
    }

    .profile-edit-page .profile-edit-form .auth-rate-head,
    .profile-edit-page .profile-edit-form .auth-rate-row {
        grid-template-columns: 1fr;
    }

    .profile-edit-page .profile-edit-form .auth-rate-row span {
        text-align: left;
        font-size: 0.86rem;
    }

    .profile-edit-page .profile-edit-form .auth-services-grid {
        column-count: 1;
    }
}

/* View profile: agency mode */
.view-profile-page .agency-private-notice {
    margin: 0 0 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 129, 129, 0.52);
    background: linear-gradient(180deg, rgba(255, 96, 111, 0.94), rgba(226, 25, 40, 0.95));
    color: #fff4f4;
    font-size: 0.78rem;
    font-weight: 760;
    line-height: 1.25;
    text-align: center;
    box-shadow: 0 8px 18px rgba(128, 18, 32, 0.28);
    width: fit-content;
}

.view-profile-page.view-profile-agency .view-profile-head {
    margin-top: 0;
    padding: 16px 24px 10px;
    justify-content: center;
}

.view-profile-page.view-profile-agency .profile-identity {
    align-items: center;
    text-align: center;
}

.view-profile-page.view-profile-agency .profile-state-badges,
.view-profile-page.view-profile-agency .profile-identity-meta,
.view-profile-page.view-profile-agency .profile-quickbar {
    display: none !important;
}

.view-profile-page.view-profile-agency .profile-identity h2 {
    margin-bottom: 2px;
}

.view-profile-page.view-profile-agency .profile-online-status {
    justify-content: center;
}

.view-profile-page.view-profile-agency .agency-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 24px;
    align-items: start;
}

.view-profile-page.view-profile-agency .agency-overview-about h3,
.view-profile-page.view-profile-agency .agency-overview-details h3 {
    margin-top: 0;
}

.view-profile-page.view-profile-agency .agency-overview-about .profile-about-text {
    min-height: 120px;
}

.view-profile-page.view-profile-agency .agency-overview-details {
    justify-self: end;
    width: min(100%, 360px);
}

.view-profile-page.view-profile-agency .agency-overview-details .profile-kv-list {
    gap: 8px;
}

.view-profile-page.view-profile-agency .agency-overview-details .profile-kv-row {
    align-items: center;
}

.view-profile-page.view-profile-agency .agency-overview-details .profile-kv-key {
    color: #f249ad;
    font-weight: 800;
    min-width: 84px;
}

.view-profile-page.view-profile-agency .agency-overview-details .profile-kv-value {
    color: #f5e5ef;
}

.view-profile-page.view-profile-agency .agency-overview-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.view-profile-page.view-profile-agency .agency-overview-actions .profile-pill-btn {
    min-width: 154px;
}

.view-profile-page .agency-added-list {
    display: grid;
    gap: 8px;
}

.view-profile-page .agency-added-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 180, 220, 0.24);
}

.view-profile-page .agency-added-item:last-child {
    border-bottom: 0;
}

.view-profile-page .agency-added-status {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.28);
}

.view-profile-page .agency-added-status-active {
    background: #40d86d;
}

.view-profile-page .agency-added-status-private {
    background: #ff6f7f;
}

.view-profile-page .agency-added-name {
    margin: 0;
    color: #ffeaf6;
    font-weight: 760;
}

.view-profile-page .agency-added-meta {
    margin: 2px 0 0;
    color: #dcb8cb;
    font-size: 0.88rem;
}

.view-profile-page.view-profile-agency .view-profile-status-card,
.view-profile-page.view-profile-agency .view-profile-account-card {
    display: grid !important;
}

.view-profile-page.view-profile-agency .view-profile-account-card h3 {
    margin: 0;
    font-size: 1.74rem;
}

.view-profile-page.view-profile-agency .view-profile-account-card a {
    background: rgba(255, 255, 255, 0.92);
    color: #0e4f77;
}

.view-profile-page.view-profile-agency #reviewsCard .profile-reviews-layout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
}

.view-profile-page.view-profile-agency #reviewsCard .profile-reviews-actions {
    justify-items: end;
}

@media (max-width: 1100px) {
    .view-profile-page.view-profile-agency .agency-overview-grid {
        grid-template-columns: 1fr;
    }

    .view-profile-page.view-profile-agency .agency-overview-details {
        justify-self: stretch;
        width: auto;
    }

    .view-profile-page.view-profile-agency .agency-overview-actions {
        justify-content: flex-start;
    }
}

/* Dynamic ad banners rail (admin-managed image+link banners) */
.site-body .ads-layout {
    --ads-rail-width: clamp(196px, 18vw, 260px);
    grid-template-columns: minmax(0, 1fr) var(--ads-rail-width);
    column-gap: clamp(12px, 1.4vw, 24px);
}

.site-body .ads-layout--no-banners {
    grid-template-columns: minmax(0, 1fr);
}

.site-body .ads-layout--no-banners .ads-banner-column {
    display: none !important;
}

.site-body .ads-banner-column {
    position: sticky;
    top: calc(var(--topbar-height) + 12px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-width: 0;
    max-width: 100%;
    padding-left: clamp(8px, 0.8vw, 14px);
    border-left: 1px solid rgba(255, 159, 210, 0.24);
    align-self: start;
}

.site-body .site-banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
    border-radius: 16px;
    border: 1px solid rgba(255, 178, 221, 0.24);
    background:
        radial-gradient(circle at 14% 10%, rgba(255, 170, 220, 0.12), transparent 46%),
        linear-gradient(160deg, rgba(44, 14, 30, 0.94), rgba(22, 9, 18, 0.98));
    box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 90, 175, 0.14);
    overflow: hidden;
    transition:
        transform var(--dur-base) var(--ease-premium),
        box-shadow var(--dur-base) var(--ease-premium),
        border-color var(--dur-fast) var(--ease-premium);
}

.site-body .site-banner-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 208, 234, 0.48);
    box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.46),
        0 0 24px rgba(255, 95, 176, 0.22);
}

.site-body .site-banner-link:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 102, 183, 0.26),
        0 0 0 1px rgba(255, 214, 237, 0.56),
        0 16px 28px rgba(0, 0, 0, 0.44);
}

.site-body .site-banner-tile {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.site-body .site-banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.view-profile-page .view-profile-rightbar {
    border-left: 1px solid rgba(255, 166, 214, 0.2);
    padding-left: 10px;
}

.view-profile-page .view-profile-rightbar-scroll[data-ad-banners-rail] {
    grid-template-columns: 1fr;
    gap: 12px;
}

.view-profile-page .view-profile-rightbar-scroll[data-ad-banners-rail] .site-banner-link {
    margin-right: 10px;
}

.admin-banner-form {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.admin-banner-form label {
    color: #ffeaf6;
    font-weight: 700;
}

.admin-banner-form input {
    border-radius: 12px;
    border: 1px solid rgba(255, 179, 223, 0.24);
    background: linear-gradient(150deg, rgba(35, 11, 24, 0.9), rgba(24, 9, 18, 0.95));
    color: #fff5fb;
    font: inherit;
    padding: 10px 12px;
}

.admin-banner-form input[type="file"] {
    padding: 8px 10px;
}

.admin-banner-form input:focus {
    outline: none;
    border-color: rgba(255, 211, 236, 0.62);
    box-shadow:
        0 0 0 3px rgba(255, 99, 182, 0.18),
        0 8px 16px rgba(0, 0, 0, 0.28);
}

.admin-banners-list {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.admin-banner-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 175, 220, 0.2);
    background:
        radial-gradient(circle at 14% 10%, rgba(255, 172, 220, 0.1), transparent 46%),
        linear-gradient(150deg, rgba(42, 14, 29, 0.92), rgba(23, 9, 18, 0.97));
    padding: 10px;
}

.admin-banner-preview {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 189, 227, 0.26);
    background: rgba(18, 8, 14, 0.8);
}

.admin-banner-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-banner-meta {
    min-width: 0;
    display: grid;
    gap: 6px;
    align-content: start;
}

.admin-banner-title {
    margin: 0;
    color: #fff4fa;
    font-weight: 800;
}

.admin-banner-link {
    color: #ffd8ec;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.admin-banner-link:hover {
    text-decoration: underline;
}

.admin-banner-status {
    margin: 0;
    color: #e9bed7;
    font-size: 0.9rem;
}

.admin-banner-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 1600px) {
    .site-body .ads-layout {
        --ads-rail-width: clamp(186px, 17vw, 236px);
    }
}

@media (max-width: 1000px) {
    .site-body .ads-layout {
        grid-template-columns: 1fr;
    }

    .site-body .ads-banner-column {
        position: static;
        top: auto;
        border-left: 0;
        padding-left: 0;
        margin-top: 10px;
        max-width: min(100%, 420px);
    }

    .site-body .site-banner-link {
        max-width: 100%;
    }

    .admin-banner-item {
        grid-template-columns: 1fr;
    }

    .admin-banner-preview {
        max-width: 180px;
    }
}
