/* Тема Pulse */
.pulse-theme {
    background-color: #000000;
}

.pulse-theme #clock {
    font-family: 'Alteran', monospace;
    color: #aa00ff;
    font-size: 8vw;
    text-align: center;
    letter-spacing: 0.1em;
    user-select: none;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    text-shadow:
        0 0 10px #aa00ff,
        0 0 20px #aa00ff,
        0 0 30px #8800cc,
        0 0 40px #8800cc;
    animation: pulse-throb 1s ease-in-out infinite;
}

@keyframes pulse-throb {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

#pulse-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.pulse-theme #pulse-canvas {
    opacity: 1;
}

@media (max-width: 768px) {
    .pulse-theme #clock {
        font-size: 10vw;
    }
}
