.coupon-claim-bar-wrapper {
    position: relative;
    width: 100%;
}

.coupon-claim-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: opacity 0.5s ease;
}

.coupon-claim-bar.dimmed {
    opacity: 0.5;
    pointer-events: none;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.green { background-color: #28a745; }
.status-dot.grey { background-color: #6c757d; }

.main-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.claims-counter {
    font-weight: bold;
    font-size: 16px;
}

.claim-button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.claim-button:hover {
    background: #0056b3;
}

.coupon-reveal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coupon-reveal-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.prize-heading {
    margin: 0 0 15px;
    color: #333;
}

.coupon-code-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.coupon-code-display {
    font-size: 32px;
    font-weight: bold;
    color: #e83e8c;
    background: #f8f9fa;
    padding: 15px 30px;
    border-radius: 5px;
    letter-spacing: 2px;
    border: 2px dashed #e83e8c;
}

.copy-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #555;
    transition: color 0.2s;
    padding: 5px;
}

.copy-icon-btn:hover {
    color: #007bff;
}
.copy-icon-btn svg {
    width: 24px;
    height: 24px;
    fill: #555;
    transition: fill 0.2s;
}
.copy-icon-btn:hover svg {
    fill: #007bff;
}

.timer-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

.bounce-in {
    animation: bounceIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}