.home-screen {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, transform 0.7s;
    opacity: 1;
    transform: translateY(0);
}

#dashboard {
    justify-content: flex-start;
}

.dashboard-screen {
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #30363d;
    padding: 15px 40px;
    z-index: 100;
    gap: 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
}

.clock {
    font-family: 'Inter', sans-serif;
    color: #9ca3af;
    letter-spacing: 2px;
}