/* Blank Screen Styles */
/* =================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto Mono', monospace;
    background: #000000;
    overflow: hidden;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.clock-container {
    text-align: center;
    z-index: 10;
    animation: fadeIn 2s ease-in-out;
}

.clock-time {
    font-family: Courier New,  'Roboto Mono', monospace;
    font-size: 20cqw;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: clockGlow 4s ease-in-out infinite;
}

.detik {
	font-size: 1cqw;
}

.clock-date {
    font-size: 2cqw;
    font-family: 'Open Sans', 'Helvetica', 'Roboto Sans';
    font-weight: 500;
    color: #9ca3af;
    opacity: 0.8;
    letter-spacing: 2px;
    margin-top: 2cqh;
    margin-bottom: 0px;
}

.clock-day {
    font-size: 1.8rem;
    font-weight: 400;
    color: #6b7280;
    opacity: 0.6;
    letter-spacing: 1px;
}

.prayer-status {
    position: absolute;
    top:  20cqh;
    left: 48%;
    transform: translateX(-50%);
    font-size: 4cqw;
    font-family: 'Open Sans', 'Helvetica', 'Roboto Sans';
    font-weight: 500;
    color: #4b5563;
    opacity: 0.7;
    z-index: 20;
    text-align: center;
}

.prayer-status .prayer-name {
    color: #FFFFFF;
    font-weight: 900;
    text-transform: capitalize;
}

/* Progress indicator at bottom */
.progress-indicator {
    position: fixed;
    bottom: 3cqh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.progress-dots {
    display: flex;
    gap: 1cqw;
    align-items: center;
}

.progress-dot {
    width: 1.5cqw;
    height: 1.5cqw;
    border-radius: 50%;
    background: #374151;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #6b7280;
    transform: scale(1.2);
}

.progress-text {
    font-size: 2cqw;
    color: #4b5563;
    margin-top: 1cqh;
    text-align: center;
    opacity: 0.6;
}


/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes clockGlow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% { 
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-25px, -25px); }
    50% { transform: translate(-50px, 0); }
    75% { transform: translate(-25px, 25px); }
    100% { transform: translate(0, 0); }
}

/* Special effects for transition periods */
.transition-mode .clock-time {
    animation: transitionPulse 2s ease-in-out infinite;
}

@keyframes transitionPulse {
    0%, 100% { 
        transform: scale(1);
        color: #ffffff;
    }
    50% { 
        transform: scale(1.02);
        color: #f3f4f6;
    }
}

