.nt-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease-out;
}

.nt-header-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nt-clock {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: #f4f4f5;
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 255, 255, 0.05);
    margin-bottom: 0px;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nt-clock:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.05));
    text-shadow:
        0 0 25px rgba(0, 0, 0, 0.1),
        0 0 60px rgba(0, 0, 0, 0.05);
}

.nt-greeting {
    font-family: 'Geist', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    transition: opacity 0.5s ease, width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nt-sub-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-bottom: 40px;
}

.nt-weather {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    overflow: hidden;
    white-space: nowrap;
}