* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
}

/* --- CLOCK BOX --- */
.clock-box {
    position: relative;
    width: 900px;  
    height: 350px;
    background-color: #000;
    border: 5px solid transparent;
    border-radius: 80px;
    background-image: linear-gradient(#000, #000), 
                      linear-gradient(to right, #f872a1, #fbc472);
    background-origin: border-box;
    background-clip: padding-box, border-box;

    display: flex;
    justify-content: center;
    align-items: center;
}

.time-display {
    display: flex;
    align-items: center;
    justify-content: center;
}

.unit {
    width: 220px; 
    text-align: center;
}

#hours, #minutes, #seconds {
    font-size: 130px;
    font-weight: 700;
    background: linear-gradient(to bottom, #f9a393, #f872a1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums; 
}

/* Colon (:) Styling */
.colon {
    width: 40px; 
    font-size: 100px;
    color: #f872a1;
    font-weight: 700;
    text-align: center;
    margin-top: -15px;
}

/* AM/PM Styling */
.ampm-unit {
    width: 80px;
    margin-left: 10px;
}

#ampm {
    font-size: 30px;
    font-weight: 700;
    color: #f872a1;
    padding-top: 50px; 
    display: block;
}

/* --- BOTTOM LABEL --- */
.bottom-label {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #f872a1;
    padding: 0 20px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 4px;
}

/* Mobile Fix */
@media (max-width: 900px) {
    .clock-box { width: 95%; height: 200px; border-radius: 40px; }
    .unit { width: 70px; }
    #hours, #minutes, #seconds { font-size: 50px; }
    .colon { width: 20px; font-size: 40px; }
    #ampm { font-size: 16px; }
    .bottom-label { font-size: 10px; bottom: -10px; }
}