body {
    background-color: #000; /* Siyah arka plan */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff; /* Varsayılan yazı rengi */
}

.smart-clock {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.date-text {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 300;
}

.time-box {
    /* Tahtadaki neon çerçeve ve kutu görünümü */
    background-color: rgba(0, 0, 0, 0.5); /* Hafif şeffaf arka plan */
    border: 4px solid #00f2ff; /* Neon mavi dış çerçeve */
    box-shadow: 0 0 15px #00f2ff, 0 0 25px #00f2ff inset; /* Neon parıltı efekti */
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 80px; /* Büyük saat yazısı */
    font-weight: 600;
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 0 0 5px #fff, 0 0 10px #00f2ff; /* Beyaz yazıya hafif neon gölge */
}