.reportModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.reportModalOverlay.isOpen {
    opacity: 1;
    visibility: visible;
}

.reportModalSheet {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 100%;
    max-width: 640px;
    background: #1a1f2e;
    border-radius: 20px 20px 0 0;
    padding: 24px;
    max-height: 85vh;
    overflow-y: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: none;
}

.reportModalOverlay.isOpen .reportModalSheet {
    transform: translateX(-50%) translateY(0);
}

/* Скроллбар */
.reportModalSheet::-webkit-scrollbar {
    width: 4px;
}
.reportModalSheet::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.modalSwipeHandle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin: 0 auto 20px;
}

/* Шапка */
.reportModalSheet .modalTopHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.reportModalSheet .modalTitle {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.reportModalSheet .modalBackBtn,
.reportModalSheet .modalCloseBtn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.reportModalSheet .modalBackBtn:hover,
.reportModalSheet .modalCloseBtn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Инфо о пользователе */
.reportUserInfo {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.reportUserAvatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.reportUserInfoText h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #fff;
}

.reportUserNick {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Причины жалобы */
.reportReasonSection {
    margin-bottom: 24px;
}

.reportLabel {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reportReasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.reportReasonOption {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    user-select: none;
}

.reportReasonOption:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

.reportReasonOption input[type="radio"] {
    display: none;
}

.reportReasonOption:has(input:checked) {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.12);
}

.reportReasonIcon {
    font-size: 22px;
    margin-bottom: 6px;
    transition: transform 0.2s ease;
}

.reportReasonOption:has(input:checked) .reportReasonIcon {
    transform: scale(1.15);
}

.reportReasonText {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-weight: 500;
}

.reportReasonOption:has(input:checked) .reportReasonText {
    color: #3b82f6;
}

/* Поле комментария */
.reportCommentSection {
    margin-bottom: 20px;
}

.reportCommentInput {
    width: 100%;
    min-height: 100px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.reportCommentInput:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.06);
}

.reportCommentInput::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.reportCommentCounter {
    text-align: right;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

/* Предупреждение */
.reportWarning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    margin-bottom: 24px;
}

.reportWarning svg {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

.reportWarning span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Кнопки */
.reportModalActions {
    display: flex;
    gap: 10px;
}

.reportCancelBtn,
.reportSubmitBtn {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.reportCancelBtn {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.reportCancelBtn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.reportSubmitBtn {
    background: #3b82f6;
    color: #fff;
    opacity: 0.4;
    cursor: not-allowed;
}

.reportSubmitBtn:not(:disabled) {
    opacity: 1;
    cursor: pointer;
}

.reportSubmitBtn:not(:disabled):hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.reportSubmitBtn:not(:disabled):active {
    transform: translateY(0);
}

/* Уведомление */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 20px;
    background: #1a1f2e;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: slideInRight 0.3s ease;
    max-width: 320px;
}

.notification-success {
    border-left: 3px solid #10b981;
}

.notification-error {
    border-left: 3px solid #ef4444;
}

.notificationContent h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
}

.notificationContent p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Адаптивность */
@media (max-width: 640px) {
    .reportModalSheet {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
    }

    .reportReasons {
        grid-template-columns: repeat(2, 1fr);
    }
}