/* Clean Urgency CSS - Simplified & Effective */

/* Verification Info Container */
.verification-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
}

/* Clean Timer */
.clean-timer {
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 60px;
}

.clean-timer.urgent {
    background: #d32f2f;
    color: #fff;
    animation: urgent-pulse 1s infinite;
}

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

.expired {
    color: #999;
    font-size: 14px;
    padding: 10px;
}

/* Competition Display */
.competition-clean {
    background: #e3f2fd;
    color: #1976d2;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.users-icon {
    font-size: 16px;
}

/* Progress Bar */
.progress-bar-container {
    background: #f0f0f0;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    transition: width 0.5s ease;
    border-radius: 10px;
}

/* Sync Status */
#sync-status {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin: 10px 0;
    min-height: 20px;
}

#sync-status span {
    font-weight: 600;
}

/* Clean Message */
.clean-message {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.clean-message > strong {
    color: #ffeb3b;
    font-size: 18px;
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.5);
}

/* Sponsor Requirement Section */
.sponsor-requirement {
    margin: 12px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    line-height: 1.6;
}

.requirement-badge {
    display: inline-block;
    background: #ff5722;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.sponsor-requirement strong {
    color: #ffeb3b;
    font-size: 15px;
}

.requirement-reason {
    display: block;
    font-size: 13px;
    margin-top: 8px;
    text-align: left;
    padding-left: 20px;
    color: #f0f0f0;
    line-height: 1.8;
}

.success-rate {
    margin-top: 10px;
    padding: 8px;
    background: rgba(255, 235, 59, 0.2);
    border-radius: 5px;
    font-size: 14px;
}

.success-rate strong {
    color: #ffeb3b;
    font-size: 20px;
}

.clean-message .auto-text {
    margin-top: 12px;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.clean-message #countdown {
    font-weight: bold;
    color: #ffeb3b;
    font-size: 18px;
    text-shadow: 0 0 5px rgba(255, 235, 59, 0.5);
}

/* Sponsor Text */
.sponsor-text {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 10px;
    font-style: italic;
}

/* Claim Notifications */
.claim-notification {
    position: fixed;
    top: 80px;
    right: -350px;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: right 0.5s ease;
    z-index: 10000;
    font-weight: 600;
    font-size: 14px;
}

.claim-notification.show {
    right: 20px;
}

/* Selected Images */
.selected-images-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.item-popup-image-small {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .verification-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .clean-timer,
    .competition-clean {
        width: 100%;
        justify-content: center;
    }
    
    .selected-images-container {
        gap: 8px;
    }
    
    .item-popup-image-small {
        width: 50px;
        height: 50px;
    }
}