/* Estilos para o relógio digital */
.digital-clock {
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    color: #00ffff; /* Ciano */
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 8px 15px;
    display: inline-block;
    margin: 15px auto;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.digital-clock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #00ffff, transparent);
}

.clock-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

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

.colon {
    animation: blink 1s infinite;
}
