@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(45deg, black, #492352);
    margin: 0;
    font-family: "Orbitron", sans-serif;
    overflow: hidden;
    color: black;
}

.clock-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.clock {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.time-segment{
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    min-width: 100px;
    color: #ff3185;
    font-size: 4rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.time-segment:hover {
    transform: scale(1.2);
}

#date {
    margin-top: 20px;
    color: #ff3185;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

@media (max-width: 600px) {
    .time-segment {
        font-size: 2.5rem;
        padding: 10px;
        min-width: 60px;
    }
    .clock-container {
        padding: 20px;
    }
}