.exclusive-timer-title a {
    color: var(--exclusive-timer-text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.exclusive-timer-title a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.exclusive-timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--exclusive-timer-bg);
    padding: 20px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    position: relative; 
}

.exclusive-timer-container::before {
    content: '';
    position: absolute;
    top: -6px; 
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: var(--exclusive-timer-bg); 
    border-radius: 14px; 
    opacity: 0; 
    z-index: -1; 
    animation: pulse-border-exclusive 2s infinite ease-in-out; 
    filter: blur(3px); 
}

@keyframes pulse-border-exclusive {
    0% {
        transform: scale(1);
        opacity: 0; 
    }
    20% {
        transform: scale(1.01); 
        opacity: 0.4; 
    }
    70% {
        transform: scale(1.02); 
        opacity: 0; 
    }
    100% {
        transform: scale(1);
        opacity: 0; 
    }
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.exclusive-timer-heading {
    font-size: 28px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.exclusive-timer-icon {
    animation: swing 2s infinite;
    color: white;
    display: flex;
    align-items: center;
}

@keyframes swing {
    20% { transform: rotate(8deg); }
    40% { transform: rotate(-8deg); }
    60% { transform: rotate(4deg); }
    80% { transform: rotate(-4deg); }
    100% { transform: rotate(0deg); }
}

.exclusive-timer-content {
    display: flex;
    gap: 15px;
    font-size: 22px;
}

.exclusive-timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--exclusive-timer-box-bg);
    color: var(--exclusive-timer-box-text-color);
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 80px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transform: skew(-5deg);
    transition: all 0.3s ease;
}

.exclusive-timer-box:hover {
    transform: skew(-5deg) scale(1.05);
}

.exclusive-timer-box span {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.exclusive-timer-label {
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
}

.exclusive-timer-message {
    font-size: 18px;
    margin: 15px 0;
    background: var(--exclusive-timer-message-bg);
    color: var(--exclusive-timer-message-text);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 0.5px;
    animation: scaleAnimation 1.5s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flame-icon {
    animation: flameFlicker 1s infinite;
    margin: 0 5px;
}

@keyframes scaleAnimation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes flameFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}


.exclusive-timer-button {
    margin-top: 20px;
    padding: 12px 30px; 
    background: var(--exclusive-timer-button-bg); 
    color: var(--exclusive-timer-button-text);
    font-size: 18px;  
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: buttonPulse 2s infinite;
    letter-spacing: 1px;
}

.exclusive-timer-button:hover {
    background: var(--exclusive-timer-button-hover-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    color: var(--exclusive-timer-button-hover-text);
}

@keyframes buttonPulse {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
    50% { transform: scale(1.03); }  
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
}

.exclusive-timer-expired {
    display: none !important;
}

@media (max-width: 480px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .exclusive-timer-heading {
        font-size: 24px;
    }
    
     .exclusive-timer-content {
        display: flex;
        flex-wrap: nowrap; 
        justify-content: center;
        padding: 11px;
        gap: 5px; 
        overflow: hidden; 
    }

    .exclusive-timer-box {
        min-width: 60px; 
        padding: 10px 12px;
    }

    .exclusive-timer-box span {
        font-size: 24px; 
    }

    .exclusive-timer-label {
        font-size: 10px; 
    }

    .exclusive-timer-message {
        font-size: 16px;
        padding: 8px 15px;
    }

    .exclusive-timer-button {
        padding: 10px 20px;  
        font-size: 16px;  
    }
}
