#ccw-countdown-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    color: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    font-family: 'Arial', sans-serif;
    z-index: 99999;
    width: 300px;
    max-width: 90%;
}

.ccw-content h3 {
    font-size: 16px;
    margin: 0 0 15px;
    text-align: center;
}

.ccw-timer {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    text-align: center;
}

.ccw-timer div {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 0;
    border-radius: 8px;
}

.ccw-timer span {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.ccw-timer label {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
}

.ccw-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.ccw-form {
    margin-top: 15px;
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.ccw-form input[type="email"] {
    padding: 8px 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
}

.ccw-form button {
    padding: 8px 10px;
    background-color: white;
    color: #7b2ff7;
    border: none;
    font-weight: bold;
    border-radius: 6px;
    cursor: not-allowed;
    opacity: 0.6;
    font-size: 14px;
}

.ccw-form button:enabled {
    cursor: pointer;
    opacity: 1;
}