/* Minimal Reward Code Display Styles */

.privacy-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 13px;
}

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

.privacy-text {
    flex: 1;
    text-align: left;
}

.privacy-text strong {
    display: inline;
    color: #10b981;
    font-size: 13px;
    margin-right: 4px;
}

.privacy-text span {
    color: #9ca3af;
    font-size: 12px;
}

.reward-code-display {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin: 15px 0;
    text-align: center;
}

.code-label {
    color: #6b7280;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.code-value {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    padding: 4px;
}

.code-hint {
    color: #94a3b8;
    font-size: 11px;
    margin-top: 8px;
}

/* Make the reward code responsive */
@media (max-width: 640px) {
    .code-value {
        font-size: 16px;
    }
    
    .privacy-notice {
        padding: 8px;
        font-size: 12px;
    }
    
    .privacy-text strong {
        font-size: 12px;
    }
    
    .privacy-text span {
        font-size: 11px;
    }
}

/* Minimal Modal Styles */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.7) !important;
}

.modal-content-wrapper,
.popup-content {
    max-width: 420px !important;
    width: 90% !important;
    padding: 20px !important;
    background: #1a1f2e !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.popup-header {
    margin-bottom: 15px;
}

.popup-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.verification-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    font-size: 13px;
}

/* Minimal timer */
.clean-timer {
    font-size: 16px;
    font-weight: 600;
    color: #10b981;
    padding: 4px 8px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
}

.clean-timer.urgent {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.competition-clean {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    font-size: 12px;
}

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

.selected-images-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}

.item-popup-image-small {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

#sync-status {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin: 10px 0;
}

.progress-bar-container {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-bar {
    height: 100%;
    background: #6366f1;
    transition: width 0.3s ease;
}

#game-tip {
    font-size: 11px;
    color: #6b7280;
    text-align: center;
    margin-top: 10px;
}