/**
 * STAGE.HR REVIEW COMPONENT - DARK MODE
 * Modern, interactive, brand-colored
 */

/* ===== CONTAINER ===== */
.stage-review-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 30px;
    max-width: 700px;
    margin: 30px auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ===== VERIFICATION BADGE ===== */
.verification-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.verification-badge.verified {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(46,204,113,0.4);
}

.verification-badge:not(.verified) {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ecf0f1;
}

.verified-icon, .unverified-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.weight-multiplier {
    padding: 4px 10px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.photo-count {
    margin-left: auto;
    opacity: 0.9;
}

.upload-cta {
    margin-left: auto;
    color: #3498db;
    text-decoration: none;
    padding: 6px 14px;
    background: rgba(52,152,219,0.2);
    border-radius: 8px;
    transition: all 0.2s;
}

.upload-cta:hover {
    background: rgba(52,152,219,0.3);
    transform: translateX(3px);
}

/* ===== RATING CATEGORIES ===== */
.rating-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.rating-category {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
}

.rating-category:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.category-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-title .title {
    font-size: 18px;
    font-weight: 700;
    color: #ecf0f1;
}

.category-title .subtitle {
    font-size: 13px;
    color: #95a5a6;
}

.rating-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.rating-value .value {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    transition: all 0.3s;
}

.rating-value .value.pulse {
    animation: pulse 0.3s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.rating-value .max {
    font-size: 18px;
    color: #7f8c8d;
}

/* ===== STARS ===== */
.stars-container {
    display: flex;
    gap: 8px;
}

.star {
    cursor: pointer;
    transition: all 0.2s;
}

.star:hover {
    transform: scale(1.15);
}

.star-svg {
    width: 40px;
    height: 40px;
    fill: rgba(255,255,255,0.15);
    stroke: rgba(255,255,255,0.3);
    stroke-width: 1.5;
    transition: all 0.3s;
}

.star.hover .star-svg {
    fill: rgba(52,152,219,0.6);
    stroke: #3498db;
    filter: drop-shadow(0 0 8px rgba(52,152,219,0.8));
}

.star.active .star-svg {
    fill: #3498db;
    stroke: #2980b9;
    filter: drop-shadow(0 0 12px rgba(52,152,219,0.9));
}

/* ===== REVIEW TEXT ===== */
.review-text-group {
    margin-bottom: 25px;
}

.review-text-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ecf0f1;
    margin-bottom: 10px;
}

.review-text-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.3s;
}

.review-text-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(52,152,219,0.2);
}

.review-text-group textarea::placeholder {
    color: #7f8c8d;
}

/* ===== SUBMIT BUTTON ===== */
.submit-review-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52,152,219,0.4);
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.5);
}

.submit-review-btn:active {
    transform: translateY(0);
}

.submit-review-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-review-btn .btn-icon {
    font-size: 24px;
}

/* ===== MESSAGES ===== */
.review-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    display: none;
}

.review-message.success {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.review-message.error {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .stage-review-dark {
        padding: 20px;
    }
    
    .verification-badge {
        flex-wrap: wrap;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .stars-container {
        gap: 4px;
    }
    
    .star-svg {
        width: 32px;
        height: 32px;
    }
    
    .rating-value .value {
        font-size: 28px;
    }
}
