        .hq-countdown {
            display: flex;
			justify-content: center;
            gap: 3rem;
            padding-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .hq-countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s ease;
        }

        .hq-countdown-item:hover {
            transform: translateY(-5px);
        }

        .hq-number {
            font-size: 4rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .hq-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.4rem;
            letter-spacing: 1px;
            font-weight: 400;
        }

        /* Ended state */
        .hq-ended {
            animation: pulse 1.5s infinite;
        }

        .hq-ended .hq-countdown-item {
        }

        .hq-countdown-ended {
            color: white;
            font-size: 1.6rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .hq-number {
            transition: transform 0.3s ease;
        }

        .hq-number-update {
            transform: scale(1.1);
            opacity: 0.8;
        }
        /* Responsive design*/
        @media (max-width: 768px) {
        	.hq-number {
            	font-size: 3rem;
            }
 /*           .hq-countdown {
                flex-direction: column;
                gap: 1rem;
                padding: 1.5rem;
            }
            
            .hq-countdown-item {
                padding: 1rem;
            }
            
            .hq-number {
                font-size: 2.5rem;
            }*/
        } 