 .main-timer {
            background-color: rgba(168, 181, 240, 0.445);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 4px 4px;
             /* box-shadow: 
                0 5px 50px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 100px rgba(102, 126, 234, 0.2); */
            /* box-shadow: 
                0 25px 80px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 100px rgba(102, 126, 234, 0.2); */
            border: 2px solid rgb(106, 134, 255);
            position: relative;
            overflow: hidden;
        }

        .main-timer::before {
            content: '';
            position: absolute;
            top: -6px;
            left: -6px;
            right: -6px;
            bottom: -6px;
            background: conic-gradient(
                from -180deg,
                white,
                rgb(1, 238, 255) var(--progress, 0deg),
                rgba(167, 167, 167, 0.274) var(--progress, 0deg),
                rgba(216, 216, 216, 0.308) 360deg
            );
            border-radius: 38px;
            z-index: -1;
        }

        .time-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: 1px solid rgb(106, 134, 255);
            padding: 25px 25px;
            border-radius: 26px;
            background-color: rgb(110, 123, 182);
            
        }

        .time-segment {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .time-value {
            font-size: 120px;
            font-weight: 900;
            color: #ffffff;
            font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
            text-shadow: 
                0 0 20px rgba(102, 126, 234, 0.6),
                0 0 40px rgba(102, 126, 234, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.3);
            /* text-shadow: 
                0 0 20px rgba(102, 126, 234, 0.6),
                0 0 40px rgba(102, 126, 234, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.3); */
            line-height: 1;
            animation: glow 2s ease-in-out infinite alternate;
            letter-spacing: -4px;
            transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
        }

        @keyframes glow {
            0% { 
                text-shadow: 
                    0 0 20px rgb(154, 231, 255),
                    0 0 40px rgba(102, 126, 234, 0.3),
                    0 4px 8px rgba(0, 0, 0, 0.3);
                /* text-shadow: 
                    0 0 20px rgba(194, 234, 102, 0.6),
                    0 0 40px rgba(102, 126, 234, 0.3),
                    0 4px 8px rgba(0, 0, 0, 0.3); */
            }
            100% { 
                text-shadow: 
                    0 0 30px rgb(10, 198, 255),
                    0 0 60px rgba(102, 126, 234, 0.5),
                    0 4px 8px rgba(0, 0, 0, 0.3);
                /* text-shadow: 
                    0 0 30px rgba(102, 126, 234, 0.8),
                    0 0 60px rgba(102, 126, 234, 0.5),
                    0 4px 8px rgba(0, 0, 0, 0.3); */
            }
        }

        .time-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 8px;
            font-weight: 600;
            font-family: "Roboto", sans-serif;
        }

        .colon {
            font-size: 120px;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.4);
            font-family: 'SF Mono', 'Monaco', 'Cascadia Code', monospace;
            animation: blink 1s ease-in-out infinite;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 120px; /* Add this to match the font size */
            margin-bottom:0; /* Add this to align with numbers */
}

        .colonp {
            margin-top: 0;
            padding-top: 90px;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }

        .fade-out {
            opacity: 0;
            transform: scale(0.95);
        }

        .fade-in {
            opacity: 1;
            transform: scale(1);
        }

@media (max-width: 480px){
    .time-value{
        font-size: 90px;
    }
}