.profile-page {
    background: var(--color-bg);
    flex: 1 1 auto;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.profile-page--own {
    margin: -0.75rem;
    padding: 0.75rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    min-height: calc(100% + 1.5rem);
    flex: 1 1 auto;
    box-sizing: border-box;
}

.profile-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 8px 0 20px;
}

.profile-page--own .profile-hero {
    align-items: center;
    text-align: center;
}

.profile-page--own .profile-hero__tags {
    justify-content: center;
}

.profile-page--own .profile-gallery {
    justify-content: center;
    width: 100%;
}

.profile-page--own .profile-social {
    justify-content: center;
}

.profile-page--own .profile-hero__about {
    text-align: center;
}

.profile-menu__item--hidden {
    display: none !important;
}

.profile-hero__name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    margin: 12px 0 6px;
}

.profile-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.profile-rating__star {
    color: var(--color-star);
}

.profile-hero__meta {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.profile-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
    margin-top: 12px;
}

.profile-hero__about {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--color-text-secondary);
    text-align: left;
    max-width: 100%;
}

.profile-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.profile-gallery__item {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    scroll-snap-align: start;
    box-shadow: inset 0 0 0 1px rgba(26, 26, 46, 0.08);
}

.profile-gallery__item--primary {
    width: 88px;
    height: 88px;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.profile-gallery__placeholder {
    flex: 0 0 auto;
    width: 88px;
    height: 88px;
    border-radius: 22px;
    background: linear-gradient(135deg, #e07a5f, #5b4fc7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.profile-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    margin-top: 14px;
}

.profile-social__btn {
    border: none;
    border-radius: var(--radius-pill);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.profile-social__btn--vk {
    background: #0077ff;
}

.profile-social__btn--tg {
    background: #2aabee;
}

.profile-social__btn--max {
    background: #5b4fc7;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.profile-menu {
    margin-top: 16px;
}

.profile-menu__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    text-align: left;
    font-size: 16px;
    color: var(--color-text);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.profile-menu__item:last-child {
    border-bottom: none;
}

.profile-account-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 24px;
    padding: 4px 0 12px;
}

.profile-account-actions__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md);
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.profile-account-actions__btn:disabled {
    opacity: 0.55;
    cursor: default;
}

.profile-account-actions__btn--danger {
    color: #c43d5c;
}

.profile-account-actions__btn--danger:active:not(:disabled) {
    background: rgba(196, 61, 92, 0.1);
}

.profile-account-actions__btn--logout {
    color: var(--color-text-secondary);
    font-weight: 500;
}

.profile-account-actions__btn--logout:active:not(:disabled) {
    background: rgba(26, 26, 46, 0.06);
}

.profile-other-cover {
    position: relative;
    min-height: 180px;
    padding: 12px 16px 24px;
    background: linear-gradient(160deg, #5b4fc7 0%, #e07a5f 100%);
    color: #fff;
}

.profile-other-cover .profile-back {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

.profile-other-body {
    padding: 0 16px 24px;
    margin-top: -28px;
}

.profile-other-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 18px 16px;
}

.profile-back {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-tertiary);
    margin: 20px 0 10px;
}

.profile-meet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-meet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    text-align: left;
}

.profile-meet-item:last-child {
    border-bottom: none;
}

.profile-meet-item__logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--color-primary-subtle);
}

.profile-meet-item__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-word;
}

.profile-meet-item__sub {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.profile-edit {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 100%;
    margin: -0.75rem;
    padding: 0;
    background: var(--color-bg);
}

.profile-edit__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-text);
    flex-shrink: 0;
}

.profile-edit__header h1 {
    color: var(--color-text);
}

.profile-edit > .px-3,
.profile-edit__body {
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
}

.profile-edit-loading {
    min-height: 160px;
}

.profile-edit-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.profile-edit-photo {
    position: relative;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid var(--color-border);
    background: var(--color-bg);
}

.profile-edit-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-edit-photo--primary {
    border-color: var(--color-primary);
}

.profile-edit-photo--pending {
    border-color: var(--color-primary);
    border-style: dashed;
}

.profile-edit-photo__uploading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--color-bg) 45%, transparent);
}

.profile-edit-photo__actions {
    position: absolute;
    inset: auto 4px 4px 4px;
    display: flex;
    gap: 4px;
    container-type: inline-size;
}

.profile-edit-photo__btn {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 4px;
    font-size: 12px;
    font-weight: 700;
    background: var(--color-surface-glass);
    color: var(--color-text);
}

.profile-edit-add--busy {
    cursor: default;
    pointer-events: none;
}

.profile-edit-gallery-status {
    margin-top: -8px;
}

.profile-edit-add {
    aspect-ratio: 1;
    border-radius: 14px;
    border: 2px dashed var(--color-border);
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-text-tertiary);
    position: relative;
    width: 100%;
    padding: 0;
    cursor: pointer;
}

.history-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    text-align: left;
}

.history-item__logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--color-primary-subtle);
}

.history-item__body {
    flex: 1;
    min-width: 0;
}

.history-item__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.history-item__sub {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.history-item__actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.history-item__rate {
    border: none;
    border-radius: var(--radius-pill);
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    white-space: nowrap;
}

.star-rating-input {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.star-rating-input__star {
    border: none;
    background: transparent;
    font-size: 44px;
    line-height: 1;
    color: #d8d4de;
    padding: 0;
}

.star-rating-input__star--filled {
    color: var(--color-star);
}

.rate-page {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.rate-page__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 0 8px;
    text-align: center;
}

.rate-page__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.rate-page__logo {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    object-fit: cover;
    margin-bottom: 16px;
    background: var(--color-primary-subtle);
}

.rate-page__title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.rate-page__sub {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.rate-page__comment {
    width: 100%;
    min-height: 96px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 12px;
    font-size: 15px;
    resize: vertical;
    margin-bottom: 16px;
}

@container (max-width: 96px) {
    .profile-edit-photo__actions {
        display: none;
    }
}

.profile-edit-photo {
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.profile-hero-page {
    --profile-sheet-h: 40vh;
    position: relative;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    background: #1a1a2e;
}

.profile-hero-page--sheet-minimized {
    --profile-sheet-h: 30vh;
}

.profile-hero-page--sheet-collapsed {
    --profile-sheet-h: 72px;
}

.profile-hero-page--sheet-maximized {
    --profile-sheet-h: 80vh;
}

.profile-hero-page__photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-color: #1a1a2e;
}

.profile-hero-page__photo--empty {
    background-image: none;
}

.profile-hero-page__gallery {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
}

.profile-hero-page__gallery::-webkit-scrollbar {
    display: none;
}

.profile-hero-page__gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: start;
    background-size: cover;
    background-position: center top;
    background-color: #1a1a2e;
}

.profile-hero-page__gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.35) 0%, rgba(26, 26, 46, 0.12) 40%, rgba(26, 26, 46, 0.55) 78%, rgba(26, 26, 46, 0.82) 100%);
    pointer-events: none;
}

.profile-hero-page__top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 12px 16px;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    pointer-events: none;
}

.profile-hero-page__top > * {
    pointer-events: auto;
}

.profile-hero-page__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--profile-sheet-h) + 12px);
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    transition: bottom 0.34s cubic-bezier(0.32, 0.72, 0, 1);
}

.profile-hero-page--sheet-dragging .profile-hero-page__dots {
    transition: none;
}

.profile-hero-page__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 0 0 1px rgba(26, 26, 46, 0.12);
}

.profile-hero-page__dot--active {
    background: #fff;
    transform: scale(1.2);
}

.profile-hero-page__back {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    border: none;
    background: var(--color-surface-glass);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.profile-hero-page__more {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    border: none;
    background: var(--color-surface-glass);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: #fff;
}

.profile-hero-page__info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--profile-sheet-h);
    z-index: 3;
    padding: 0 20px 28px;
    color: #fff;
    pointer-events: none;
    transition: bottom 0.34s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.28s ease-out;
    text-align: left;
}

.profile-hero-page--sheet-maximized .profile-hero-page__info {
    opacity: 0;
    pointer-events: none;
}

.profile-hero-page--sheet-dragging .profile-hero-page__info {
    transition: none;
}

.profile-hero-page__info * {
    pointer-events: none;
}

.profile-hero-page__info a,
.profile-hero-page__info button {
    pointer-events: auto;
}

.profile-hero-page__name {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin: 0 0 6px;
}

.profile-hero-page__meta,
.profile-hero-page__rating {
    font-size: 14px;
    opacity: 0.92;
    margin-bottom: 6px;
}

.profile-hero-page__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    justify-content: flex-start;
}

.profile-hero-page__about {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.45;
    opacity: 0.92;
}

.profile-hero-page__sheet {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    /* Fixed max height; snap points via translateY only (no height transition jank). */
    height: 80vh;
    max-height: 80vh;
    background: var(--color-surface-glass);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: 0 -8px 32px rgba(26, 26, 46, 0.14);
    display: flex;
    flex-direction: column;
    transform: translateY(calc(80vh - var(--profile-sheet-h)));
    transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
    touch-action: none;
    will-change: transform;
}

.profile-hero-page__sheet:not(.profile-hero-page__sheet--dragging) .profile-hero-page__sheet-body {
    touch-action: pan-y;
}

.profile-hero-page--sheet-minimized .profile-hero-page__sheet-body {
    opacity: 1;
    pointer-events: auto;
}

.profile-hero-page--sheet-collapsed .profile-hero-page__sheet-body {
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.profile-hero-page__sheet-peek {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: opacity 0.22s ease, max-height 0.34s cubic-bezier(0.32, 0.72, 0, 1), padding 0.34s cubic-bezier(0.32, 0.72, 0, 1);
}

.profile-hero-page--sheet-collapsed .profile-hero-page__sheet-peek {
    max-height: 48px;
    opacity: 1;
    padding-bottom: 12px;
}

.profile-hero-page__sheet-peek-hint {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.profile-hero-page--sheet-dragging .profile-hero-page__sheet {
    transition: none;
}

.profile-hero-page--sheet-dragging .profile-hero-page__sheet-body {
    opacity: 1;
}

.profile-hero-page__sheet-handle {
    flex-shrink: 0;
    padding: 10px 0 4px;
    touch-action: none;
}

.profile-hero-page__sheet-grab {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(26, 26, 46, 0.15);
    margin: 0 auto;
}

.profile-hero-page__sheet-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 0 16px 16px;
    opacity: 1;
    transition: opacity 0.22s ease;
}

.profile-hero-page__sheet-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 12px;
}

.profile-hero-page__sheet-empty {
    color: var(--color-text-secondary);
    font-size: 14px;
}

.guest-sheet-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(8, 8, 18, 0.55);
    pointer-events: auto;
    animation: guest-backdrop-in 0.22s ease-out;
}

.guest-sheet-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    padding-top: max(16px, env(safe-area-inset-top, 0px));
    padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
    pointer-events: none;
}

.guest-sheet-overlay .guest-sheet {
    pointer-events: auto;
}

.guest-sheet {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: min(100%, 420px);
    max-height: min(72vh, 560px);
    min-height: 0;
    transform: none;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 56px rgba(8, 8, 18, 0.34);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: guest-sheet-center-in 0.32s cubic-bezier(0.32, 0.72, 0, 1) forwards;
}

.guest-sheet__handle {
    display: none;
}

@keyframes guest-sheet-center-in {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

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

@keyframes guest-backdrop-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.meets-avatar {
    display: block;
    object-fit: cover;
    background: linear-gradient(135deg, #f3f4f8 0%, #e8e9f0 100%);
}

.meets-avatar-wrap {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.meets-avatar-wrap .meets-avatar {
    position: relative;
    z-index: 2;
}

.meets-avatar-wrap:not(.meets-avatar-wrap--crop) .meets-avatar {
    width: 100%;
    height: 100%;
}

.meets-avatar-wrap .meets-avatar:not(.meets-avatar--loaded) {
    opacity: 1;
}

.meets-avatar__loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.meets-avatar__spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(224, 122, 95, 0.2);
    border-top-color: var(--color-primary, #e07a5f);
    animation: meets-avatar-spin 0.75s linear infinite;
}

@keyframes meets-avatar-spin {
    to {
        transform: rotate(360deg);
    }
}

.meets-avatar--loaded {
    background: transparent;
}

.meets-avatar--placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-text-secondary);
    background: linear-gradient(135deg, #f3f4f8 0%, #e8e9f0 100%);
}

.guest-sheet__avatar.meets-avatar-wrap,
.guest-sheet__avatar.meets-avatar,
.guest-sheet__avatar.meets-avatar--placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.map-sheet__avatar.meets-avatar-wrap,
.map-sheet__avatar.meets-avatar,
.map-sheet__avatar.meets-avatar--placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-left: -8px;
    border: 2px solid #fff;
}

.map-sheet__avatar.meets-avatar-wrap:first-child,
.map-sheet__avatar.meets-avatar:first-child,
.map-sheet__avatar.meets-avatar--placeholder:first-child {
    margin-left: 0;
}

.map-sheet__organizer-avatar.meets-avatar-wrap,
.map-sheet__organizer-avatar.meets-avatar,
.map-sheet__organizer-avatar.meets-avatar--placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.meets-avatar-wrap--crop {
    display: inline-block;
    overflow: hidden;
    border-radius: 50%;
}

.meets-avatar-wrap--crop .meets-avatar,
.meets-avatar--cropped {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% * var(--crop-z, 1));
    height: calc(100% * var(--crop-z, 1));
    max-width: none;
    object-fit: cover;
    transform: translate(
        calc(-50% + (0.5 - var(--crop-cx, 0.5)) * 100%),
        calc(-50% + (0.5 - var(--crop-cy, 0.5)) * 100%)
    );
}

.guest-sheet__scroll {
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    padding: 4px 12px 16px;
}

.guest-sheet__featured {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: none;
    background: transparent;
    padding: 8px 8px 16px;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.guest-sheet__featured-avatar.meets-avatar-wrap,
.guest-sheet__featured-avatar.meets-avatar,
.guest-sheet__featured-avatar.meets-avatar--placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.guest-sheet__featured-name {
    font-size: 17px;
    font-weight: 700;
}

.guest-sheet__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 8px;
    flex-shrink: 0;
}

.guest-sheet__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.guest-sheet__close {
    border: none;
    background: transparent;
    font-size: 20px;
    line-height: 1;
    color: var(--color-text-secondary);
}

.guest-sheet__list {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: visible;
    flex: 0 0 auto;
    min-height: 0;
}

.guest-sheet__row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 8px;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    text-align: left;
}

.guest-sheet__avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}

.guest-sheet__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-subtle);
    font-weight: 700;
    color: var(--color-primary);
}

.guest-sheet__name {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 16px;
    font-weight: 600;
}

.guest-sheet__chevron {
    color: var(--color-text-tertiary);
    font-size: 22px;
}

.photo-action-backdrop {
    position: fixed;
    inset: 0;
    z-index: 3990;
    background: rgba(8, 8, 18, 0.55);
    pointer-events: auto;
    animation: sheet-backdrop-in 0.32s ease-out;
}

.photo-action-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4000;
    background: var(--color-surface);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    box-shadow: var(--shadow-sheet);
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    animation: sheet-slide-up 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.photo-action-sheet__btn {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.photo-action-sheet__btn--danger {
    color: #c43d5c;
}

.photo-action-sheet__btn--cancel {
    border-bottom: none;
    color: var(--color-text-secondary);
}

@keyframes sheet-backdrop-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes sheet-slide-up {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.moderation-report-sheet__title {
    margin: 0;
    padding: 16px 16px 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-align: center;
}

.moderation-report-sheet__comment-label {
    display: block;
    padding: 8px 16px 4px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

.moderation-report-sheet__comment {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 8px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 10px 12px;
    font: inherit;
    resize: vertical;
    background: var(--color-surface-elevated);
    color: var(--color-text);
}

.moderation-report-sheet__reason--active {
    color: var(--color-accent);
}

.moderation-report-sheet__also-block {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 16px 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(var(--color-primary-rgb), 0.08);
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-text);
    cursor: pointer;
}

.moderation-report-sheet__also-block input {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

.blocked-users-page__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.blocked-users-page__back {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    font-size: 18px;
    line-height: 1;
    color: var(--color-text);
}

.blocked-users-page__title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.blocked-users-page__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blocked-users-page__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.blocked-users-page__identity {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.blocked-users-page__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.blocked-users-page__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-subtle);
    color: var(--color-primary);
    font-weight: 700;
}

.blocked-users-page__name {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
