/* public/wait-timer.css */
.wait-timer-container {
    background: linear-gradient(145deg, #1a1a1a, #1e1e1e);
    border: 1px solid #333;
    border-radius: 24px;
    padding: 1.5rem;
    margin: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wait-timer-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa, #8b5cf6);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.wait-timer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.wait-timer-timer {
    font-size: 3rem;
    font-weight: 700;
    font-family: monospace;
    color: white;
    margin: 1rem 0;
    letter-spacing: 0.1em;
}

.wait-timer-progress {
    width: 100%;
    height: 6px;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0;
}

.wait-timer-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
    transition: width 0.1s linear;
    border-radius: 10px;
}

.wait-timer-status {
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.wait-timer-status i {
    font-size: 0.8rem;
}

.status-paused {
    color: #f59e0b;
}

.status-active {
    color: #10b981;
}

.wait-timer-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid #8b5cf6;
    border-radius: 30px;
    font-size: 0.75rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.wait-timer-badge i {
    margin-right: 0.25rem;
}

/* CPM Boost Indicator */
.cpm-boost {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid #10b981;
    border-radius: 16px;
    padding: 0.75rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cpm-boost-label {
    color: #aaa;
    font-size: 0.85rem;
}

.cpm-boost-value {
    color: #10b981;
    font-weight: 700;
    font-size: 1.1rem;
}

.cpm-boost-value i {
    margin-right: 0.25rem;
}

/* Timer Selection Modal */
.wait-time-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.wait-time-modal.active {
    display: flex;
}

.wait-time-modal-content {
    background: #1a1a1a;
    border: 1px solid #8b5cf6;
    border-radius: 32px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    animation: slideUp 0.3s ease;
}

.wait-time-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.wait-time-option {
    padding: 1rem;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wait-time-option:hover {
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.wait-time-option.selected {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.wait-time-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.wait-time-boost {
    font-size: 0.75rem;
    color: #10b981;
    margin-top: 0.25rem;
}

.wait-time-cpm {
    font-size: 0.7rem;
    color: #aaa;
    margin-top: 0.25rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}