.report-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.report-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.report-modal {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: #1e2024;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.report-modal-overlay.active .report-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.report-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    z-index: 10;
}

.report-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.report-close-btn svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.5);
}

.report-header {
    padding: 2rem 1.5rem 1.25rem;
    text-align: center;
}

.report-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fbbf24;
}

.report-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.report-header p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.report-options {
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.report-option {
    display: block;
    cursor: pointer;
}

.report-option input {
    display: none;
}

.report-option-box {
    display: block;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.15s ease;
}

.report-option:hover .report-option-box {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.report-option input:checked + .report-option-box {
    background: rgba(217, 154, 30, 0.1);
    border-color: rgba(217, 154, 30, 0.3);
}

.report-option-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.15rem;
}

.report-option-desc {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.report-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-top: 0.5rem;
}

.report-cancel-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.report-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.report-submit-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #d99a1e;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.report-submit-btn:hover:not(:disabled) {
    background: #e5a520;
}

.report-submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .report-modal-overlay {
        padding: 1rem;
    }
    
    .report-header {
        padding: 1.5rem 1.25rem 1rem;
    }
    
    .report-options {
        padding: 0 1.25rem;
    }
    
    .report-footer {
        padding: 1rem 1.25rem;
    }
}
