@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
.time-btn {
    @apply px-4 py-2 rounded-lg font-medium transition-all duration-200;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.time-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.time-btn:active {
    transform: translateY(1px);
}
.control-btn {
    @apply px-6 py-3 rounded-xl font-semibold flex items-center space-x-2 transition-all duration-200;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 100px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.control-btn:active {
    transform: translateY(1px);
}

#startBtn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

#pauseBtn {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
}

#resetBtn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.control-btn:disabled {
    @apply opacity-50 cursor-not-allowed;
}
#timeDisplay {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: white;
    text-stroke: 1px rgba(0,0,0,0.1);
    -webkit-text-stroke: 1px rgba(0,0,0,0.1);
}

.bg-white {
    background-color: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}
/* Animation for timer completion */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.timer-complete {
    animation: pulse 1s infinite;
    color: #ef4444;
}