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

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background: linear-gradient(45deg, #1a2d2e, #163d3e);
    margin: 0;
    font-family: 'Orbitron', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.clock-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 600px;
    max-width: 600px;
    height: 300px;
    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;
    transition: all 0.3s ease;
}

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

.time-segment {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 15px;
    width: 150px;
    color: #00ff9f;
    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.05);
}

.segment-label {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    color: #4eb8dd;
    font-size: 0.8rem;
    text-transform: uppercase;
}

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

i {
    color: #f44336;
    font-size: 1.5rem;
    animation: pulse 1.5s infinite;
}

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

    .clock-container {
        padding: 20px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}