body {
    background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 320px;
    width: 320px;
    position: relative;
}

.circle {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    height: 100%;
    width: 100%;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 80px rgba(56, 189, 248, 0.3);
    animation: breathe 12s infinite ease-in-out;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#text {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0.9;
}

#timer {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

@keyframes breathe {
    0%, 100% { 
        transform: scale(0.65); 
        opacity: 0.6; 
        box-shadow: 0 0 40px rgba(56, 189, 248, 0.2);
    }
    33% { 
        transform: scale(1.15); 
        opacity: 1; 
        box-shadow: 0 0 100px rgba(56, 189, 248, 0.6); /* Glow mai puternic la Inhale */
    }
    50% { 
        transform: scale(1.15); 
        opacity: 1; 
    }
}
