/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 28 2025 | 17:51:51 */
        .countdown-container {
            position: absolute;
            top: 60px;
            left: 125px;
            background: linear-gradient(135deg,hsl(36, 63%, 64%) 10%, #C0914A 30%, #C0914A 60%, #FFDE00 100%);
            padding: 15px 25px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            font-family: 'Ubuntu', sans-serif;
            color: white;
            z-index: 1000;
            display: inline-block;
        }

        .cta-button-container {
            position: absolute;
            top: 170px;
            left: 125px;
            z-index: 1000;
        }

        .countdown-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .time-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .time-number {
            font-size: 32px;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transition: color 0.3s ease;
            line-height: 1;
        }

        .time-label {
            font-size: 12px;
            margin-top: 5px;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .time-separator {
            font-size: 32px;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-top: -15px;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 20px;
            background: linear-gradient(135deg,hsl(36, 63%, 64%) 10%, #C0914A 30%, #C0914A 60%, #FFDE00 100%);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            color: white;
            font-size: 16px;
            font-weight: bold;
            text-decoration: none;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            font-family: 'Ubuntu', sans-serif;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .cta-button:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .countdown-container {
                top: 20px;
                left: 20px;
                padding: 12px 20px;
            }

            .cta-button-container {
                top: 100px;
                left: 20px;
            }
            
            .countdown-display {
                gap: 12px;
            }
            
            .time-number {
                font-size: 24px;
            }
            
            .time-separator {
                font-size: 24px;
            }
            
            .time-label {
                font-size: 10px;
            }

            .cta-button {
                font-size: 14px;
                padding: 10px 16px;
            }
        }

        @media (max-width: 480px) {
            .cta-button-container {
                top: 90px;
                left: 20px;
            }

            .countdown-display {
                gap: 8px;
            }
            
            .time-number {
                font-size: 20px;
            }
            
            .time-separator {
                font-size: 20px;
            }
            
            .time-label {
                font-size: 9px;
            }

            .cta-button {
                font-size: 13px;
                padding: 8px 12px;
            }
        }