/* CTA Countdown Gonemo Widget Styles */
.ccg-cta-countdown-widget {
    background: linear-gradient(113.63deg, #0F1729 0%, #172036 100%);
    padding: 60px 40px;
    text-align: center;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
} 

.ccg-cta-countdown-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(1, 115, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ccg-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ccg-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Title Styles */
.ccg-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #FFFFFF;
}

.ccg-title-highlight {
    color: #0173FE;
    font-weight: 700;
}

/* Subtitle Styles */
.ccg-subtitle {
    font-family: Open Sans;
font-weight: 400;
font-style: Regular;
font-size: 20px;
leading-trim: NONE;
line-height: 28px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
    color: #CBD5E1;
    max-width: 600px;
}

/* Countdown Section */
.ccg-countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ccg-countdown-text {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #E2E8F0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ccg-countdown-text i {
    color: #ffffff;
    font-size: 18px;
} 

/* Countdown Timer */
.ccg-countdown-timer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 35px;
    backdrop-filter: blur(10px);
} 

.ccg-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.ccg-countdown-number {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    min-width: 60px;
    display: block;
}

.ccg-countdown-label {
    font-size: 12px;
    font-weight: 500;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ccg-countdown-separator {
    font-size: 36px;
    font-weight: 700;
    color: #64748B;
    line-height: 1;
    margin: 0 5px;
}

/* Buttons */
.ccg-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.ccg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 56px;
    white-space: nowrap;
}

a.ccg-button.ccg-button-primary {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

a.ccg-button-primary:hover {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    color: #FFFFFF;
}

a.ccg-button.ccg-button-secondary {
    background: rgb(255, 255, 255);
    color: #0F1729;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

a.ccg-button.ccg-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #FFFFFF;
}
 
/* Features */
.ccg-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.ccg-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #E2E8F0;
}

.ccg-feature i {
    color: #22C55E;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ccg-cta-countdown-widget {
        padding: 40px 20px;
    }
    
    .ccg-title {
        font-size: 36px;
    }
    
    .ccg-subtitle {
        font-size: 18px;
    }
    
    .ccg-countdown-timer {
        padding: 20px 25px;
        gap: 10px;
    }
    
    .ccg-countdown-number {
        font-size: 28px;
        min-width: 50px;
    }
    
    .ccg-countdown-separator {
        font-size: 28px;
        margin: 0 2px;
    }
    
    .ccg-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .ccg-button {
        width: 100%;
        max-width: 300px;
    }
    
    .ccg-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .ccg-cta-countdown-widget {
        padding: 30px 15px;
    }
    
    .ccg-title {
        font-size: 28px;
    }
    
    .ccg-subtitle {
        font-size: 16px;
    }
    
    .ccg-countdown-timer {
        padding: 15px 20px;
        gap: 8px;
    }
    
    .ccg-countdown-number {
        font-size: 24px;
        min-width: 40px;
    }
    
    .ccg-countdown-separator {
        font-size: 24px;
    }
    
    .ccg-countdown-label {
        font-size: 10px;
    }
}

/* Animation for countdown numbers */
@keyframes countdownPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.ccg-countdown-number.updating {
    animation: countdownPulse 0.3s ease-in-out;
}

/* Loading state */
.ccg-countdown-timer.loading .ccg-countdown-number {
    opacity: 0.5;
}