/* Report Modal - Modern Design */

#reportModal .modal-content {
    background: linear-gradient(135deg, #1e1e2e 0%, #2d1b69 100%);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(138, 43, 226, 0.3);
    border: 2px solid rgba(138, 43, 226, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

#reportModal .modal-header {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#reportModal .modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f87171, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#reportModal .modal-header h3::before {
    content: '⚠️';
    font-size: 1.3rem;
    -webkit-text-fill-color: initial;
}

#reportModal .close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#reportModal .close-btn:hover {
    color: #ef4444;
    transform: rotate(90deg);
}

#reportModal .modal-body {
    padding: 2rem;
}

/* Form Groups */
#reportModal .form-group {
    margin-bottom: 1.5rem;
}

#reportModal .form-group label {
    display: block;
    color: #e2e8f0;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Select Dropdown */
#reportReason {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(239, 68, 68, 0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
}

#reportReason:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background-color: rgba(0, 0, 0, 0.4);
}

#reportReason:focus {
    outline: none;
    border-color: rgba(239, 68, 68, 0.7);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

#reportReason option {
    background: #1e1e2e;
    color: #e2e8f0;
    padding: 0.5rem;
}

/* Textarea */
#reportDetails {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: all 0.3s ease;
}

#reportDetails:hover {
    border-color: rgba(138, 43, 226, 0.4);
    background-color: rgba(0, 0, 0, 0.4);
}

#reportDetails:focus {
    outline: none;
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

#reportDetails::placeholder {
    color: rgba(148, 163, 184, 0.5);
    font-style: italic;
}

/* Modal Actions */
#reportModal .modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

#reportModal .btn {
    flex: 1;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#cancelReportBtn {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

#cancelReportBtn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

#submitReportBtn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    position: relative;
    overflow: hidden;
}

#submitReportBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

#submitReportBtn:hover::before {
    left: 100%;
}

#submitReportBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

/* Warning Message */
.report-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.report-warning-icon {
    color: #f87171;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.report-warning-text {
    color: #fca5a5;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Success State */
.report-success {
    text-align: center;
    padding: 2rem;
}

.report-success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.report-success h4 {
    color: #10b981;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.report-success p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 480px) {
    #reportModal .modal-content {
        width: 95%;
    }
    
    #reportModal .modal-actions {
        flex-direction: column;
    }
    
    #reportModal .btn {
        width: 100%;
    }
}