/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 28 2025 | 17:55:44 */
        .countdown-container {
            background: linear-gradient(135deg,hsl(36, 63%, 64%) 10%, #C0914A 30%, #C0914A 60%, #FFDE00 100%);
            padding: 15px 25px;
            border-radius: 25px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            font-family: 'Ubuntu', sans-serif;
            color: white;
            display: inline-block;
            margin: 0 auto;
        }

        #countdown-widget {
            text-align: center;
        }

        .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;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .countdown-container {
                padding: 12px 20px;
            }
            
            .countdown-display {
                gap: 12px;
            }
            
            .time-number {
                font-size: 24px;
            }
            
            .time-separator {
                font-size: 24px;
            }
            
            .time-label {
                font-size: 10px;
            }
        }

        @media (max-width: 480px) {
            .countdown-display {
                gap: 8px;
            }
            
            .time-number {
                font-size: 20px;
            }
            
            .time-separator {
                font-size: 20px;
            }
            
            .time-label {
                font-size: 9px;
            }
        }