/* Modern Proposal Request Styles */

/* Main Header */
.proposal-request-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, #8D3FF2 0%, #7C3AED 50%, #6D28D9 100%);
    border-radius: 20px;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(141, 63, 242, 0.25);
    position: relative;
    overflow: hidden;
}

.proposal-request-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.proposal-request-header .header-content {
    position: relative;
    z-index: 1;
}

.proposal-request-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Modern Alerts */
.modern-alert-success {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 2px solid #6ee7b7;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    animation: slideInDown 0.4s ease-out;
}

.modern-alert-success .alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.modern-alert-success .alert-content {
    flex: 1;
    color: #065f46;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.modern-alert-success .alert-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #059669;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.modern-alert-success .alert-close:hover {
    background: rgba(16, 185, 129, 0.1);
}

.modern-alert-error {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 2px solid #fca5a5;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    animation: slideInDown 0.4s ease-out;
}

.modern-alert-error .alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

.modern-alert-error .alert-content {
    flex: 1;
    color: #991b1b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.modern-alert-error .alert-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #dc2626;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.modern-alert-error .alert-close:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Creator Profile Card */
.modern-creator-profile-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    border: 2px solid #f3f4f6;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-creator-profile-card:hover {
    border-color: #e9d5ff;
    box-shadow: 0 12px 48px rgba(141, 63, 242, 0.15);
}

.creator-profile-section {
    display: flex;
    align-items: center;
    gap: 32px;
}

.creator-profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid #f3f4f6;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modern-creator-profile-card:hover .creator-profile-avatar {
    border-color: #8D3FF2;
    transform: scale(1.05);
}

.creator-profile-info {
    flex: 1;
}

.creator-profile-name {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.creator-profile-username {
    font-size: 18px;
    color: #6b7280;
    margin: 0 0 16px 0;
    font-weight: 500;
}

/* Appropriateness Badge */
.appropriateness-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.appropriateness-badge svg {
    width: 16px;
    height: 16px;
}

.badge-appropriate {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #10b981;
    color: #065f46;
}

.badge-partially {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    color: #92400e;
}

.badge-not-appropriate {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #ef4444;
    color: #991b1b;
}

/* Action Buttons */
.creator-action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.modern-btn i {
    font-size: 16px;
}

.btn-view-portfolio {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #e9d5ff;
    color: #7c3aed;
}

.btn-view-portfolio:hover {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    border-color: #8D3FF2;
    color: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 63, 242, 0.2);
}

.btn-view-progress {
    background: linear-gradient(135deg, #8D3FF2 0%, #7C3AED 100%);
    border-color: #7C3AED;
    color: #ffffff;
}

.btn-view-progress:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border-color: #6D28D9;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 63, 242, 0.4);
}

/* Content Sections */
.modern-content-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    border: 2px solid #f3f4f6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #8D3FF2;
    font-size: 28px;
}

.section-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 24px 0 12px 0;
}

.section-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Video Container */
.modern-video-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    border: 2px solid #f3f4f6;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.video-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-title i {
    color: #8D3FF2;
}

.video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    background: #000000;
    aspect-ratio: 9 / 16;
    max-width: 100%;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-video-state {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 16px;
    border: 2px dashed #d1d5db;
}

.no-video-state img {
    max-width: 200px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-video-state h4 {
    font-size: 18px;
    font-weight: 700;
    color: #6b7280;
    margin: 0;
}

/* Bottom Action Buttons */
.bottom-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #f3f4f6;
}

.btn-accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #059669;
    color: #ffffff;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border-color: #047857;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-reject {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #dc2626;
    color: #ffffff;
}

.btn-reject:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
}

.btn-disabled {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 992px) {
    .modern-video-container {
        position: static;
    }
}

@media (max-width: 768px) {
    .proposal-request-header {
        padding: 24px;
    }

    .proposal-request-header h2 {
        font-size: 24px;
    }

    .creator-profile-section {
        flex-direction: column;
        text-align: center;
    }

    .creator-profile-avatar {
        width: 120px;
        height: 120px;
    }

    .creator-profile-name {
        font-size: 24px;
    }

    .modern-content-section {
        padding: 24px;
    }

    .modern-video-container {
        padding: 20px;
    }

    .creator-action-buttons {
        flex-direction: column;
    }

    .modern-btn {
        width: 100%;
        justify-content: center;
    }

    .bottom-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .proposal-request-header {
        padding: 20px;
    }

    .proposal-request-header h2 {
        font-size: 20px;
    }

    .modern-creator-profile-card {
        padding: 20px;
    }

    .creator-profile-avatar {
        width: 100px;
        height: 100px;
    }

    .modern-content-section {
        padding: 20px;
    }
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-creator-profile-card,
.modern-content-section,
.modern-video-container {
    animation: fadeInUp 0.4s ease-out backwards;
}

.modern-creator-profile-card {
    animation-delay: 0.1s;
}

.modern-content-section {
    animation-delay: 0.2s;
}

.modern-video-container {
    animation-delay: 0.3s;
}
