/* /Components/Chat/ChatConversationView.razor.rz.scp.css */
@keyframes chat-in-b-ehykntjzcc {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat[b-ehykntjzcc] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

/* virtualized scroll container; newest at the bottom, older paged in on scroll up. */
.chat-body[b-ehykntjzcc] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 10px 10px 12px;
    min-height: 0;
    position: relative;
}

.chat-loading[b-ehykntjzcc],
.chat-empty[b-ehykntjzcc] {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--mud-palette-text-secondary);
    text-align: center;
}

.chat-empty[b-ehykntjzcc]  .mud-icon-root {
    color: var(--mud-palette-primary);
    opacity: .6;
}

.chat-row[b-ehykntjzcc] {
    display: flex;
    margin-bottom: 8px;
    animation: chat-in-b-ehykntjzcc .28s cubic-bezier(.22, .61, .36, 1) both;
}

/* skeleton shown by the virtualizer for rows not yet fetched */
.chat-bubble--ghost[b-ehykntjzcc] {
    width: 55%;
    height: 36px;
    background: rgba(159, 63, 108, .08);
    box-shadow: none;
    animation: chat-ghost-pulse-b-ehykntjzcc 1.2s ease-in-out infinite;
}

@keyframes chat-ghost-pulse-b-ehykntjzcc {
    0%, 100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}

.chat-row--mine[b-ehykntjzcc] {
    justify-content: flex-end;
}

.chat-row--theirs[b-ehykntjzcc] {
    justify-content: flex-start;
}

.chat-bubble[b-ehykntjzcc] {
    max-width: 80%;
    padding: 9px 13px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.chat-row--theirs .chat-bubble[b-ehykntjzcc] {
    background: rgba(159, 63, 108, .10);
    border: 1px solid rgba(159, 63, 108, .22);
    border-bottom-left-radius: 5px;
    color: var(--mud-palette-text-primary);
}

.chat-row--mine .chat-bubble[b-ehykntjzcc] {
    background: linear-gradient(135deg, var(--mud-palette-primary), #9f3f6c);
    border-bottom-right-radius: 5px;
    color: #fff;
}

.chat-bubble__author[b-ehykntjzcc] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--mud-palette-primary);
    margin-bottom: 2px;
}

/* ===== admin (verified) message ===== */
@keyframes chat-admin-glow-b-ehykntjzcc {
    0%, 100% {
        box-shadow: 0 3px 14px rgba(47, 124, 246, .40);
    }

    50% {
        box-shadow: 0 5px 22px rgba(47, 124, 246, .70);
    }
}

.chat-bubble--admin[b-ehykntjzcc] {
    background: linear-gradient(135deg, #3b8bff, #1b5fd0) !important;
    border: none !important;
    color: #fff !important;
    animation: chat-admin-glow-b-ehykntjzcc 3s ease-in-out infinite;
}

.chat-bubble--admin .chat-bubble__author[b-ehykntjzcc],
.chat-bubble--admin .chat-bubble__time[b-ehykntjzcc] {
    color: rgba(255, 255, 255, .92) !important;
}

.chat-bubble__badge[b-ehykntjzcc] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 1px 8px 1px 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .24);
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.chat-bubble__badge[b-ehykntjzcc]  .mud-icon-root {
    font-size: .9rem;
    color: #fff;
}

.chat-bubble__text[b-ehykntjzcc] {
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.4;
    font-size: .9rem;
}

.chat-bubble__time[b-ehykntjzcc] {
    font-size: .65rem;
    opacity: .7;
    text-align: right;
    margin-top: 3px;
}

.chat-row--mine .chat-bubble__time[b-ehykntjzcc] {
    color: rgba(255, 255, 255, .85);
}

/* ===== input row ===== */
.chat-input[b-ehykntjzcc] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-top: 1px solid var(--mud-palette-lines-default);
}

.chat-input__field[b-ehykntjzcc] {
    flex: 1 1 auto;
}

[b-ehykntjzcc] .chat-send {
    flex: 0 0 auto;
    transition: transform .15s ease, box-shadow .15s ease;
}

[b-ehykntjzcc] .chat-send:not(:disabled):hover {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(159, 63, 108, .5);
}
/* /Components/Chat/ChatLauncher.razor.rz.scp.css */
@keyframes chat-panel-in-b-0z2tetac56 {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.92);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes chat-panel-out-b-0z2tetac56 {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(24px) scale(.92);
    }
}

/* ===== floating launcher button =====
   Positioned via a wrapper div we own, so the fixed positioning actually applies
   (a ::deep selector onto MudFab can't anchor without a scoped ancestor). */
.chat-fab-dock[b-0z2tetac56] {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1402;
    transition: transform .18s ease;
}

.chat-fab-dock:hover[b-0z2tetac56] {
    transform: scale(1.08);
}

.chat-fab-dock[b-0z2tetac56]  .mud-fab {
    box-shadow: 0 8px 24px rgba(159, 63, 108, .45);
}

/* pulse ring when a new message arrives while the launcher is closed */
@keyframes chat-fab-ring-b-0z2tetac56 {
    0% {
        transform: scale(1);
        opacity: .65;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

.chat-fab-dock--pulse[b-0z2tetac56]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--mud-palette-error);
    z-index: -1;
    animation: chat-fab-ring-b-0z2tetac56 .9s ease-out 2;
    pointer-events: none;
}

.chat-fab-dock[b-0z2tetac56]  .mud-icon-root {
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}

.chat-fab-dock:active[b-0z2tetac56]  .mud-icon-root {
    transform: rotate(90deg);
}

/* ===== docked panel ===== */
.chat-panel[b-0z2tetac56] {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 1401;
    width: 370px;
    max-width: calc(100vw - 32px);
    height: min(70vh, 560px);
    display: flex;
    flex-direction: column;
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
    transform-origin: bottom right;
    animation: chat-panel-in-b-0z2tetac56 .3s cubic-bezier(.34, 1.56, .64, 1) both;
}

/* Exit animation while the panel is being unmounted. */
.chat-panel--closing[b-0z2tetac56] {
    animation: chat-panel-out-b-0z2tetac56 .22s cubic-bezier(.4, 0, 1, 1) both;
    pointer-events: none;
}

.chat-panel__header[b-0z2tetac56] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--mud-palette-primary), #9f3f6c);
    flex: 0 0 auto;
}

.chat-panel__heading[b-0z2tetac56] {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-panel__title[b-0z2tetac56] {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* The presence label sits on the coloured header gradient — keep it legible. */
[b-0z2tetac56] .chat-panel__heading .presence__label {
    color: rgba(255, 255, 255, .85);
}

[b-0z2tetac56] .chat-panel__heading .presence--online .presence__label {
    color: #fff;
}

[b-0z2tetac56] .chat-panel__header .mud-icon-button {
    color: #fff;
}

.chat-panel__body[b-0z2tetac56] {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.chat-panel__loading[b-0z2tetac56],
.chat-panel__empty[b-0z2tetac56] {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--mud-palette-text-secondary);
    text-align: center;
    padding: 24px;
}

.chat-panel__empty[b-0z2tetac56]  .mud-icon-root {
    color: var(--mud-palette-primary);
    opacity: .6;
}

/* ===== search ===== */
.chat-search[b-0z2tetac56] {
    flex: 0 0 auto;
    padding: 10px 12px 6px;
}

/* ===== conversation list ===== */
.chat-list[b-0z2tetac56] {
    flex: 1 1 auto;
    overflow-y: auto;
    position: relative;
}

/* skeleton lines shown by the virtualizer for rows not yet fetched */
.chat-list__ghost-line[b-0z2tetac56] {
    height: 12px;
    width: 70%;
    margin: 6px 0;
    border-radius: 6px;
    background: rgba(159, 63, 108, .10);
    animation: chat-list-ghost-b-0z2tetac56 1.2s ease-in-out infinite;
}

.chat-list__ghost-line--short[b-0z2tetac56] {
    width: 45%;
}

@keyframes chat-list-ghost-b-0z2tetac56 {
    0%, 100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}

.chat-list__item[b-0z2tetac56] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background .15s ease;
}

.chat-list__item:hover[b-0z2tetac56] {
    background: var(--mud-palette-action-default-hover);
}

/* unread conversation: tinted row + emphasized preview */
.chat-list__item--unread[b-0z2tetac56] {
    background: rgba(159, 63, 108, .06);
}

.chat-list__item--unread .chat-list__preview[b-0z2tetac56] {
    color: var(--mud-palette-text-primary);
    font-weight: 600;
}

.chat-list__unread[b-0z2tetac56] {
    flex: 0 0 auto;
    align-self: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 99px;
    background: var(--mud-palette-error);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

.chat-list__cover[b-0z2tetac56] {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 auto;
}

.chat-list__cover--empty[b-0z2tetac56] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mud-palette-action-disabled-background);
}

.chat-list__body[b-0z2tetac56] {
    flex: 1 1 auto;
    min-width: 0;
}

.chat-list__head[b-0z2tetac56] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.chat-list__name[b-0z2tetac56] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* admin (verified) sender stands out in the inbox list */
.chat-list__name--admin[b-0z2tetac56] {
    color: #1b5fd0;
}

.chat-list__name--admin[b-0z2tetac56]  .chat-list__verified {
    font-size: 1rem;
    color: #3b8bff;
    flex: 0 0 auto;
}

.chat-list__time[b-0z2tetac56] {
    font-size: .72rem;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
}

.chat-list__subject[b-0z2tetac56] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .78rem;
    color: var(--mud-palette-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-list__subject[b-0z2tetac56]  .chat-list__subject-icon {
    font-size: .95rem;
}

.chat-list__preview[b-0z2tetac56] {
    font-size: .82rem;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    .chat-panel[b-0z2tetac56] {
        right: 12px;
        left: 12px;
        bottom: 84px;
        width: auto;
        height: min(72vh, 560px);
    }

    .chat-fab-dock[b-0z2tetac56] {
        right: 16px;
        bottom: 16px;
    }
}
/* /Components/Common/AgeGate.razor.rz.scp.css */
@keyframes agegate-fade-b-wdb2jq0cyy {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes agegate-rise-b-wdb2jq0cyy {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.96);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes agegate-pulse-b-wdb2jq0cyy {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 16px 36px -10px rgba(225, 48, 108, .85);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 20px 46px -8px rgba(225, 48, 108, .95);
    }
}

.agegate-backdrop[b-wdb2jq0cyy] {
    animation: agegate-fade-b-wdb2jq0cyy .3s ease forwards;
}

.agegate-card[b-wdb2jq0cyy] {
    animation: agegate-rise-b-wdb2jq0cyy .45s cubic-bezier(.22, .61, .36, 1) forwards;
}

.agegate-card button[b-wdb2jq0cyy] {
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.agegate-card button:hover[b-wdb2jq0cyy] {
    transform: translateY(-2px);
}

.agegate-badge[b-wdb2jq0cyy] {
    animation: agegate-pulse-b-wdb2jq0cyy 2.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .agegate-backdrop[b-wdb2jq0cyy],
    .agegate-card[b-wdb2jq0cyy],
    .agegate-badge[b-wdb2jq0cyy] {
        animation: none;
    }
}
/* /Components/Dialogs/BoostAdvertisementDialog.razor.rz.scp.css */
@keyframes boost-pop-b-7b2mdtdwvg {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* ===== header ===== */
.boost-head[b-7b2mdtdwvg] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.boost-head__icon[b-7b2mdtdwvg] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #7e57c2, #5e35b1);
    box-shadow: 0 6px 16px rgba(94, 53, 177, .4);
    flex: 0 0 auto;
}

.boost-head__title[b-7b2mdtdwvg] {
    font-weight: 700;
    line-height: 1.1;
}

.boost-loading[b-7b2mdtdwvg] {
    display: flex;
    justify-content: center;
    padding: 28px 0;
}

/* ===== tier cards ===== */
.boost-tiers[b-7b2mdtdwvg] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.boost-card[b-7b2mdtdwvg] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 2px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-surface);
    cursor: pointer;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
    animation: boost-pop-b-7b2mdtdwvg .3s ease both;
}

.boost-card:hover[b-7b2mdtdwvg] {
    transform: translateY(-2px);
    border-color: var(--mud-palette-primary);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
}

.boost-card--active[b-7b2mdtdwvg] {
    border-color: var(--mud-palette-primary);
    background: var(--mud-palette-primary-hover);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* ===== rank badge ===== */
.boost-card__rank[b-7b2mdtdwvg] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    flex: 0 0 auto;
    background: var(--mud-palette-text-secondary);
}

.boost-card__rank.rank-1[b-7b2mdtdwvg] {
    background: linear-gradient(135deg, #f6c945, #e0a528);
    box-shadow: 0 4px 12px rgba(224, 165, 40, .5);
}

.boost-card__rank.rank-2[b-7b2mdtdwvg] {
    background: linear-gradient(135deg, #bfc6d0, #9aa6b4);
}

.boost-card__rank.rank-3[b-7b2mdtdwvg] {
    background: linear-gradient(135deg, #d2a079, #b07c4f);
}

/* Top1 gets a subtle golden ring on its card */
.boost-card--best[b-7b2mdtdwvg] {
    border-color: rgba(224, 165, 40, .55);
}

.boost-card--best.boost-card--active[b-7b2mdtdwvg] {
    border-color: #e0a528;
}

/* ===== info + chance bar ===== */
.boost-card__info[b-7b2mdtdwvg] {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.boost-card__name[b-7b2mdtdwvg] {
    font-weight: 700;
}

.boost-card__chance[b-7b2mdtdwvg] {
    font-size: .78rem;
    color: var(--mud-palette-text-secondary);
}

.boost-bar[b-7b2mdtdwvg] {
    height: 5px;
    border-radius: 99px;
    background: var(--mud-palette-action-disabled-background);
    overflow: hidden;
    margin-top: 2px;
}

.boost-bar__fill[b-7b2mdtdwvg] {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--mud-palette-primary), #9575cd);
    transition: width .4s ease;
}

/* ===== right side ===== */
.boost-card__right[b-7b2mdtdwvg] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.boost-card__price[b-7b2mdtdwvg] {
    font-weight: 700;
    color: var(--mud-palette-primary);
}

.boost-card__check[b-7b2mdtdwvg] {
    color: var(--mud-palette-text-disabled);
    transition: color .18s ease;
}

.boost-card--active .boost-card__check[b-7b2mdtdwvg]  .mud-icon-root,
.boost-card--active .boost-card__check[b-7b2mdtdwvg] {
    color: var(--mud-palette-primary);
}

/* ===== summary ===== */
.boost-summary[b-7b2mdtdwvg] {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--mud-palette-background-grey);
}

.boost-summary__row[b-7b2mdtdwvg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    color: var(--mud-palette-text-secondary);
}

.boost-summary__row--total[b-7b2mdtdwvg] {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px dashed var(--mud-palette-lines-default);
    font-size: 1rem;
    color: var(--mud-palette-text-primary);
}

.boost-amount[b-7b2mdtdwvg] {
    font-weight: 800;
    color: var(--mud-palette-primary);
}

.boost-amount--error[b-7b2mdtdwvg] {
    font-weight: 800;
    color: var(--mud-palette-error);
}
/* /Components/Layout/AppChrome.razor.rz.scp.css */
[b-zmlmhh681u] .main-appbar {
    padding: 0 max(20px, calc((100vw - 1280px) / 2));
    color: var(--mud-palette-text-primary);
    background: rgba(26, 26, 39, .86);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    backdrop-filter: blur(16px);
}

[b-zmlmhh681u] .brand {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .08em;
    height: 100%;
    align-items: center;
}

[b-zmlmhh681u] .brand span {
    color: var(--mud-palette-primary);
}

[b-zmlmhh681u] .nav-ads {
    letter-spacing: .015em;
    overflow: hidden;
    transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

[b-zmlmhh681u] .nav-ads:hover {
    transform: translateY(-1px);
    color: #ff7a5c;
    background-color: rgba(255, 94, 98, .12);
}

.nav-ads-text[b-zmlmhh681u] {
    position: relative;
    display: inline-block;
}

.nav-ads-text[b-zmlmhh681u]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff9a5a, #ff5e62, #e1306c);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .28s ease;
}

.nav-ads:hover .nav-ads-text[b-zmlmhh681u]::after,
.nav-ads-text:hover[b-zmlmhh681u]::after {
    transform: scaleX(1);
}

[b-zmlmhh681u] .logout-button {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.65rem 1rem;
    border: none;
    background: transparent;
    color: var(--mud-palette-text-primary);
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
}

[b-zmlmhh681u] .logout-button:hover {
    background: var(--mud-palette-action-default-hover);
}

/* Header action cluster: even spacing and vertical centering for all controls. */
.appbar-actions[b-zmlmhh681u] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Keep the primary "add ad" call-to-action from stretching too tall next to the icons. */
.appbar-cta[b-zmlmhh681u] {
    white-space: nowrap;
}

/* ===== Mobile (phones): the action cluster + nav link + CTA text don't fit ~360px.
   The nav link and the CTA's text label are hidden below the `sm` breakpoint via MudBlazor's
   global `d-none d-sm-*` utilities (scoped `::deep` does NOT reach into MudAppBar's subtree,
   so utilities are used there instead). This rule only tightens the literal actions div. ===== */
@media (max-width: 600px) {
    .appbar-actions[b-zmlmhh681u] {
        gap: 4px;
    }
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.site-footer[b-l8jd8xydym] {
    margin-top: auto;
    border-top: 1px solid var(--mud-palette-lines-default);
    background: linear-gradient(180deg, transparent, rgba(225, 48, 108, .04));
    padding: 28px 0;
}

.site-footer__inner[b-l8jd8xydym] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__brand[b-l8jd8xydym] {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.site-footer__logo[b-l8jd8xydym] {
    font-weight: 800;
    letter-spacing: -.02em;
    font-size: 1.1rem;
}

.site-footer__logo span[b-l8jd8xydym] {
    color: var(--mud-palette-primary);
}

.site-footer__copy[b-l8jd8xydym] {
    color: var(--mud-palette-text-secondary);
    font-size: .85rem;
}

.site-footer__links[b-l8jd8xydym] {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
/* /Components/Layout/LanguageSwitcher.razor.rz.scp.css */
.lang-switch[b-advzl6so1z] {
    position: relative;
    display: inline-flex;
}

/* Trigger styled like a MudBlazor icon button (circular, inherits the appbar text colour). */
.lang-switch__trigger[b-advzl6so1z] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: inherit;
    list-style: none;
    user-select: none;
    transition: background-color 150ms ease;
}

/* Remove the default disclosure triangle in every browser. */
.lang-switch__trigger[b-advzl6so1z]::-webkit-details-marker {
    display: none;
}

.lang-switch__trigger[b-advzl6so1z]::marker {
    content: "";
}

.lang-switch__trigger:hover[b-advzl6so1z] {
    background-color: rgba(0, 0, 0, 0.06);
}

.lang-switch__trigger svg[b-advzl6so1z] {
    width: 24px;
    height: 24px;
}

/* Dropdown panel — mirrors MudBlazor's elevated paper menu. */
.lang-switch__menu[b-advzl6so1z] {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 1300;
    min-width: 180px;
    padding: 6px 0;
    background-color: var(--mud-palette-surface, #fff);
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.lang-switch__item[b-advzl6so1z] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: var(--mud-palette-text-primary, rgba(0, 0, 0, 0.87));
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background-color 120ms ease;
}

.lang-switch__item:hover[b-advzl6so1z] {
    background-color: rgba(0, 0, 0, 0.06);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.body[b-yqesdb8hdr] {
    padding-top: 64px;
    padding-bottom: 4rem;
    min-height: 100vh;
}
/* /Components/Notifications/NotificationBell.razor.rz.scp.css */
.notif-panel[b-zd3ut8pba7] {
    width: 340px;
    max-width: 92vw;
}

.notif-head[b-zd3ut8pba7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.notif-head__title[b-zd3ut8pba7] {
    font-weight: 700;
}

.notif-empty[b-zd3ut8pba7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 28px 16px;
    color: var(--mud-palette-text-secondary);
}

.notif-empty[b-zd3ut8pba7]  .mud-icon-root {
    color: var(--mud-palette-primary);
    opacity: .55;
}

.notif-list[b-zd3ut8pba7] {
    max-height: 60vh;
    overflow-y: auto;
}

.notif-item[b-zd3ut8pba7] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background .15s ease;
}

.notif-item:hover[b-zd3ut8pba7] {
    background: var(--mud-palette-action-default-hover);
}

.notif-item--unread[b-zd3ut8pba7] {
    background: rgba(159, 63, 108, .07);
}

.notif-item__icon[b-zd3ut8pba7] {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--mud-palette-primary);
}

.notif-item__body[b-zd3ut8pba7] {
    flex: 1 1 auto;
    min-width: 0;
}

.notif-item__text[b-zd3ut8pba7] {
    font-size: .86rem;
    line-height: 1.35;
}

.notif-item--unread .notif-item__text[b-zd3ut8pba7] {
    font-weight: 600;
}

.notif-item__time[b-zd3ut8pba7] {
    margin-top: 2px;
    font-size: .72rem;
    color: var(--mud-palette-text-secondary);
}

.notif-ghost-line[b-zd3ut8pba7] {
    height: 11px;
    width: 75%;
    margin: 5px 0;
    border-radius: 6px;
    background: rgba(159, 63, 108, .10);
    animation: notif-ghost-b-zd3ut8pba7 1.2s ease-in-out infinite;
}

.notif-ghost-line--short[b-zd3ut8pba7] {
    width: 45%;
}

@keyframes notif-ghost-b-zd3ut8pba7 {
    0%, 100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}

.notif-item__dot[b-zd3ut8pba7] {
    flex: 0 0 auto;
    align-self: center;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mud-palette-error);
}
/* /Components/Pages/AdvertisementDetails.razor.rz.scp.css */
/* ===== entrance animations ===== */
@keyframes ad-fade-up-b-xucun1bu8y {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@keyframes ad-hero-in-b-xucun1bu8y {
    from {
        opacity: 0;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ad-img-in-b-xucun1bu8y {
    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ad-reveal-b-xucun1bu8y {
    from {
        opacity: 0;
        transform: translateY(-8px);
        max-height: 0;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 600px;
    }
}

.ad-anim[b-xucun1bu8y] {
    opacity: 0;
    animation: ad-fade-up-b-xucun1bu8y .55s cubic-bezier(.22, .61, .36, 1) forwards;
    animation-delay: var(--d, 0s);
}

/* ===== hero ===== */
.ad-hero[b-xucun1bu8y] {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-start;
    background-size: cover;
    background-position: center;
    background-color: var(--mud-palette-primary);
    animation: ad-hero-in-b-xucun1bu8y .7s ease forwards;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.ad-hero__scrim[b-xucun1bu8y] {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, .05) 100%);
}

/* ===== promoted hero ===== */
@keyframes ad-promo-glow-b-xucun1bu8y {
    0%, 100% {
        box-shadow: 0 14px 40px rgba(224, 165, 40, .35);
    }

    50% {
        box-shadow: 0 18px 54px rgba(224, 165, 40, .65);
    }
}

.ad-hero--promoted[b-xucun1bu8y] {
    border: 3px solid #e0a528;
    animation: ad-hero-in-b-xucun1bu8y .7s ease forwards, ad-promo-glow-b-xucun1bu8y 4s ease-in-out infinite;
}

/* gold "promoted" chip inside the hero badge cluster */
[b-xucun1bu8y] .promoted-chip {
    background: linear-gradient(135deg, #f6c945, #e0a528) !important;
    color: #3a2a05 !important;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(224, 165, 40, .5);
}

[b-xucun1bu8y] .promoted-chip .mud-icon-root {
    color: #3a2a05 !important;
}

.ad-hero__content[b-xucun1bu8y] {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 30px;
    width: 100%;
}

.ad-hero__badges[b-xucun1bu8y] {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.ad-hero__name[b-xucun1bu8y] {
    color: #fff;
    font-weight: 800;
    line-height: 1.05;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}

.ad-hero__location[b-xucun1bu8y] {
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

/* ===== panels ===== */
.ad-panel[b-xucun1bu8y] {
    border-radius: 18px;
    border: 1px solid var(--mud-palette-lines-default);
    transition: box-shadow .25s ease, transform .25s ease;
}

.ad-panel:hover[b-xucun1bu8y] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}

.ad-section-title[b-xucun1bu8y] {
    font-weight: 700;
    margin-bottom: 14px;
}

.ad-description[b-xucun1bu8y] {
    white-space: pre-wrap;
    line-height: 1.7;
    color: var(--mud-palette-text-primary);
}

.ad-chips[b-xucun1bu8y] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== services with prices ===== */
.ad-services[b-xucun1bu8y] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ad-service[b-xucun1bu8y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 11px 15px;
    border-radius: 12px;
    background: var(--mud-palette-background-grey);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ad-service:hover[b-xucun1bu8y] {
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

.ad-service__name[b-xucun1bu8y] {
    font-weight: 600;
}

.ad-service__price[b-xucun1bu8y] {
    font-weight: 700;
    color: var(--mud-palette-primary);
    white-space: nowrap;
}

/* ===== gallery ===== */
.ad-gallery__main[b-xucun1bu8y] {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--mud-palette-action-disabled-background);
}

/* Horizontal scroll-snap track filling the 4:3 frame: one slide per photo, native swipe + snap.
   The arrows/counter overlay it (higher z-index); the scrollbar is hidden on all engines. */
.ad-gallery__track[b-xucun1bu8y] {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.ad-gallery__track[b-xucun1bu8y]::-webkit-scrollbar {
    display: none;
}

.ad-gallery__slide[b-xucun1bu8y] {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.ad-gallery__img[b-xucun1bu8y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ad-gallery__nav[b-xucun1bu8y] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease, background .2s ease;
}

.ad-gallery__main:hover .ad-gallery__nav[b-xucun1bu8y] {
    opacity: 1;
}

.ad-gallery__nav:hover[b-xucun1bu8y] {
    background: rgba(0, 0, 0, .7);
}

.ad-gallery__nav--prev[b-xucun1bu8y] {
    left: 12px;
}

.ad-gallery__nav--next[b-xucun1bu8y] {
    right: 12px;
}

.ad-gallery__counter[b-xucun1bu8y] {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: .78rem;
    padding: 3px 10px;
    border-radius: 99px;
}

.ad-gallery__thumbs[b-xucun1bu8y] {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.ad-gallery__thumb[b-xucun1bu8y] {
    width: 78px;
    height: 60px;
    object-fit: cover;
    border-radius: 9px;
    cursor: pointer;
    opacity: .6;
    flex: 0 0 auto;
    border: 2px solid transparent;
    transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.ad-gallery__thumb:hover[b-xucun1bu8y] {
    opacity: 1;
    transform: translateY(-2px);
}

.ad-gallery__thumb--active[b-xucun1bu8y] {
    opacity: 1;
    border-color: var(--mud-palette-primary);
}

/* ===== stats ===== */
.ad-stats[b-xucun1bu8y] {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ad-stat[b-xucun1bu8y] {
    flex: 1 1 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 16px 10px;
    border-radius: 14px;
    background: var(--mud-palette-background-grey);
    transition: transform .2s ease;
}

.ad-stat:hover[b-xucun1bu8y] {
    transform: translateY(-3px);
}

.ad-stat[b-xucun1bu8y]  .mud-icon-root {
    color: var(--mud-palette-primary);
    margin-bottom: 4px;
}

.ad-stat__value[b-xucun1bu8y] {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.ad-stat__label[b-xucun1bu8y] {
    font-size: .8rem;
    color: var(--mud-palette-text-secondary);
}

/* ===== booking / sticky ===== */
.ad-sticky[b-xucun1bu8y] {
    position: sticky;
    top: 90px;
}

.ad-booking[b-xucun1bu8y] {
    background: linear-gradient(165deg, var(--mud-palette-surface), var(--mud-palette-background-grey));
}

.ad-booking__price[b-xucun1bu8y] {
    font-weight: 800;
    line-height: 1;
    margin-top: 2px;
}

.ad-prices[b-xucun1bu8y] {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ad-price-row[b-xucun1bu8y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--mud-palette-background-grey);
    font-size: .92rem;
}

.ad-price-row__amount[b-xucun1bu8y] {
    font-weight: 700;
    color: var(--mud-palette-primary);
}

/* ===== contacts reveal ===== */
.ad-contacts[b-xucun1bu8y] {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    animation: ad-reveal-b-xucun1bu8y .4s ease forwards;
}

.ad-contact[b-xucun1bu8y] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--mud-palette-background-grey);
    color: var(--mud-palette-text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}

.ad-contact:hover[b-xucun1bu8y] {
    background: var(--mud-palette-action-default-hover);
    transform: translateX(3px);
}

.ad-contact[b-xucun1bu8y]  .mud-icon-root {
    color: var(--mud-palette-primary);
}

/* ===== schedule ===== */
.ad-schedule[b-xucun1bu8y] {
    display: flex;
    flex-direction: column;
}

.ad-schedule__row[b-xucun1bu8y] {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.ad-schedule__row:last-child[b-xucun1bu8y] {
    border-bottom: none;
}

.ad-schedule__day[b-xucun1bu8y] {
    font-weight: 600;
}

.ad-schedule__time[b-xucun1bu8y] {
    color: var(--mud-palette-text-secondary);
}

/* ===== comments ===== */
.ad-comment-form[b-xucun1bu8y] {
    padding: 4px 0 8px;
}

.ad-comments[b-xucun1bu8y] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ad-comment[b-xucun1bu8y] {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--mud-palette-background-grey);
}

.ad-comment__avatar[b-xucun1bu8y] {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    font-weight: 700;
    background: var(--mud-palette-primary);
    color: #fff;
}

.ad-comment__body[b-xucun1bu8y] {
    flex: 1 1 auto;
    min-width: 0;
}

.ad-comment__head[b-xucun1bu8y] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.ad-comment__author[b-xucun1bu8y] {
    font-weight: 700;
}

.ad-comment__date[b-xucun1bu8y] {
    font-size: .8rem;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
}

.ad-comment__text[b-xucun1bu8y] {
    white-space: pre-wrap;
    line-height: 1.55;
    word-break: break-word;
}

.ad-unavailable[b-xucun1bu8y] {
    border-radius: 18px;
    border-style: dashed;
}

@media (max-width: 960px) {
    .ad-sticky[b-xucun1bu8y] {
        position: static;
    }

    .ad-hero__name[b-xucun1bu8y] {
        font-size: 2rem;
    }
}

/* Advertiser online status row in the booking panel */
.ad-advertiser-status[b-xucun1bu8y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--mud-palette-background-grey);
}

.ad-advertiser-status__label[b-xucun1bu8y] {
    font-size: .82rem;
    color: var(--mud-palette-text-secondary);
}

/* ===== Hidden (paywalled) photo overlay ===== */
.ad-gallery__main[b-xucun1bu8y] {
    position: relative;
}

.ad-locked-overlay[b-xucun1bu8y] {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 1rem;
    color: #fff;
    background: rgba(20, 16, 28, .35);
    /* Let clicks pass through the overlay backdrop to the carousel arrows beneath; only the
       overlay's own buttons stay interactive. */
    pointer-events: none;
}

.ad-locked-overlay[b-xucun1bu8y]  button,
.ad-locked-overlay[b-xucun1bu8y]  .mud-button-root {
    pointer-events: auto;
}

/* Carousel arrows sit above the locked overlay so they remain clickable on blurred photos. */
.ad-gallery__nav[b-xucun1bu8y] {
    z-index: 3;
}

.ad-locked-overlay .mud-icon-root[b-xucun1bu8y] {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .6));
}

.ad-locked-overlay__title[b-xucun1bu8y] {
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
}

.ad-locked-overlay__hint[b-xucun1bu8y] {
    max-width: 30rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 1px 6px rgba(0, 0, 0, .8);
}

.ad-gallery__thumb-wrap[b-xucun1bu8y] {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.ad-gallery__thumb-lock[b-xucun1bu8y] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    color: #fff;
    background: rgba(20, 16, 28, .55);
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    pointer-events: none;
}

.ad-gallery__thumb-lock[b-xucun1bu8y]  .mud-icon-root {
    font-size: 1.05rem;
}
/* /Components/Pages/AdvertisementStatistics.razor.rz.scp.css */
/* Gradient icon badge in the page header. */
.stats-page-badge[b-adop799u50] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #ff9a5a, #ff5e62 55%, #e1306c);
    box-shadow: 0 12px 26px -10px rgba(225, 48, 108, .8);
}

.stats-page-badge[b-adop799u50]  .mud-icon-root {
    font-size: 1.7rem;
}

.stats-page-title[b-adop799u50] {
    font-weight: 800;
    letter-spacing: -1px;
}
